/* ===== GplanSIM HOME PAGE — matches /fe/ design ===== */

/* ── Feature Cards Section ── */
.feat-section {
    background: #F7F9FC;
    padding: 72px 5%;
}

.feat-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.feat-heading {
    text-align: center;
    margin-bottom: 48px;
}

.feat-heading h3 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0a1f44;
    margin-bottom: 12px;
}

.feat-heading h3 span {
    color: #6c5ce7;
}

.feat-heading p {
    font-size: 1rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feat-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feat-card h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a1f44;
    margin: 0;
}

.feat-card-sub {
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

.feat-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feat-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: #2d3748;
}

.feat-list li i {
    font-size: 16px;
    color: #6c5ce7;
    flex-shrink: 0;
}

/* Plan options in card */
.feat-plans {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.feat-plan {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.88rem;
    color: #0a1f44;
    cursor: pointer;
}

.feat-plan--selected {
    border-color: #6c5ce7;
    background: rgba(29,161,242,0.06);
}

.feat-plan-size {
    font-weight: 600;
}

.feat-plan-dur {
    font-weight: 400;
    color: #64748B;
}

.feat-plan-price {
    font-weight: 700;
    color: #6c5ce7;
}

/* Activation card QR */
.feat-card--activation {
    align-items: flex-start;
}

.feat-qr-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    width: 100%;
}

.feat-qr-placeholder {
    width: 100px;
    height: 100px;
    background: #F7F9FC;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #0a1f44;
}

.feat-scan-label {
    font-size: 0.85rem;
    color: #64748B;
    text-align: center;
    margin: 0;
}

.feat-install-btn {
    display: inline-block;
    border: 1.5px solid #6c5ce7;
    color: #6c5ce7;
    border-radius: 8px;
    padding: 8px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.feat-install-btn:hover {
    background: #6c5ce7;
    color: #fff;
}

@media (max-width: 900px) {
    .feat-grid { grid-template-columns: 1fr; }
}

/* ── Destination Section ── */
.dest-section {
    background: #fff;
    padding: 72px 5%;
}

.dest-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.dest-header {
    text-align: center;
    margin-bottom: 32px;
}

.dest-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0a1f44;
    margin-bottom: 8px;
}

.dest-header p {
    font-size: 1rem;
    color: #64748B;
}

.dest-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.dest-tab {
    background: none;
    border: 1.5px solid #e2e8f0;
    border-radius: 50px;
    padding: 8px 22px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #0a1f44;
    cursor: pointer;
    transition: all 0.2s;
}

.dest-tab:hover {
    border-color: #6c5ce7;
    color: #6c5ce7;
}

.dest-tab.active {
    background: #6c5ce7;
    border-color: #6c5ce7;
    color: #fff;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.dest-card {
    background: #fff;
    border: 1.5px solid #e8f0eb;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    text-decoration: none;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    padding: 20px;
    gap: 12px;
}

.dest-card:hover {
    border-color: #6c5ce7;
    box-shadow: 0 6px 20px rgba(29,161,242,0.12);
    transform: translateY(-2px);
}

.dest-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dest-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.dest-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #F7F9FC;
    border: 2px solid #e2e8f0;
}

.dest-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-card-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0a1f44;
}

.dest-divider {
    border: none;
    border-top: 1px solid #e8f0eb;
    margin: 6px 0;
}

.dest-price-label {
    font-size: 0.78rem;
    color: #64748B;
}

.dest-price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0a1f44;
    margin: 0;
}

.dest-duration {
    font-size: 0.8rem;
    font-weight: 400;
    color: #64748B;
}

.dest-unlimited {
    font-size: 0.78rem;
    color: #6c5ce7;
    font-weight: 600;
    margin: 0;
}

.dest-card-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F7F9FC;
    color: #6c5ce7;
    font-size: 1.1rem;
    flex-shrink: 0;
    align-self: center;
    transition: background 0.2s, color 0.2s;
}

.dest-card:hover .dest-card-arrow {
    background: #6c5ce7;
    color: #fff;
}

.dest-cta {
    text-align: center;
    margin-top: 8px;
}

.dest-cta-btn {
    display: inline-block;
    background: #6c5ce7;
    color: #fff;
    padding: 12px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

.dest-cta-btn:hover {
    background: #1590D8;
    transform: scale(1.02);
    color: #fff;
}

@media (max-width: 600px) {
    .dest-grid { grid-template-columns: 1fr; }
}

/* ── How It Works Section ── */
.how-section {
    background: #F7F9FC;
    padding: 72px 5%;
}

.how-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.how-img-col {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(15,42,90,0.12);
}

.how-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.how-text-col h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #0a1f44;
    margin-bottom: 12px;
}

.how-sub {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 32px;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.how-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.how-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #6c5ce7;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.how-step h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #0a1f44;
    margin: 0 0 4px;
}

.how-step p {
    font-size: 0.88rem;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 800px) {
    .how-inner { grid-template-columns: 1fr; gap: 32px; }
    .how-img { height: 260px; }
}

/* ── FAQ Section ── */
.faq-section {
    background: #fff;
    padding: 72px 5%;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: flex-start;
}

.faq-heading {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.faq-heading-light {
    color: #64748B;
    font-weight: 500;
}

.faq-heading-dark {
    color: #0a1f44;
}

/* Override sticky positioning from flx-style.css */
.faq-info {
    position: static !important;
    top: auto !important;
}

.faq-sub {
    font-size: 0.93rem;
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 32px;
}

.faq-cta-box {
    background: #F7F9FC;
    border-radius: 16px;
    padding: 24px;
}

.faq-cta-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0a1f44;
    margin-bottom: 6px;
}

.faq-cta-text {
    font-size: 0.88rem;
    color: #64748B;
    margin-bottom: 16px;
    line-height: 1.6;
}

.faq-cta-btn {
    display: inline-block;
    background: #6c5ce7;
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.faq-cta-btn:hover {
    background: #1590D8;
    color: #fff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.active {
    border-color: #6c5ce7;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0a1f44;
    text-align: left;
    transition: background 0.15s;
}

.faq-question:hover {
    background: #f8fafb;
}

.faq-question i {
    font-size: 1.2rem;
    color: #64748B;
    transition: transform 0.25s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: #6c5ce7;
}

.faq-answer {
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 16px;
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 800px) {
    .faq-container { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Testimonials Section ── */
.testimonial-section {
    background: #F7F9FC;
    padding: 72px 5%;
}

.testimonial-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonial-header h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #0a1f44;
    margin-bottom: 10px;
}

.testimonial-header p {
    font-size: 0.95rem;
    color: #64748B;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tcard {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tcard-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tcard-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.tcard-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0a1f44;
    margin: 0;
}

.tcard-origin {
    font-size: 0.82rem;
    color: #64748B;
    margin: 2px 0 0;
}

.tcard-quote {
    font-size: 0.9rem;
    color: #2d3748;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.tcard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.tcard-loc {
    font-size: 0.8rem;
    color: #64748B;
}

.tcard-stars {
    display: flex;
    gap: 2px;
    color: #F59E0B;
    font-size: 0.9rem;
}

@media (max-width: 800px) {
    .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .feat-section,
    .dest-section,
    .how-section,
    .faq-section,
    .testimonial-section {
        padding: 48px 4%;
    }
}
