/* ===========================================================
   FlyGoRide — Inner pages & homepage refinements
   (presentational only)
   =========================================================== */

:root {
    --fg-green: #5CB71B;
    --fg-green-dark: #4a9616;
    --fg-blue: #2A7FBF;
    --fg-gold: #F5C518;
    --fg-orange: #E88B1E;
    --fg-dark: #1A1A2E;
    --fg-text: #333;
    --fg-text-light: #666;
    --fg-light-bg: #F4F7FA;
    --fg-gradient: linear-gradient(135deg, #5CB71B, #2A7FBF);
    --fg-gradient-dark: linear-gradient(135deg, #1A1A2E, #16213E);
    --fg-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    --fg-shadow-hover: 0 14px 44px rgba(0, 0, 0, .14);
}

/* Smooth-scroll offset so fixed navbar never hides anchors */
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 96px; }

/* Keep page content clear of the fixed navbar on inner pages */
body.flygoride-theme:not(.flygoride-landing) { padding-top: 72px; }

/* Active nav link highlight */
.flygo-navbar .nav-links a.is-active:not(.btn-login) { color: var(--fg-green); }
.flygo-navbar .nav-links a.is-active:not(.btn-login)::after { width: 100%; }

/* ============ Generic page hero / banner ============ */
.page-hero {
    position: relative;
    background: var(--fg-gradient-dark);
    color: #fff;
    padding: 70px 20px 64px;
    text-align: center;
    overflow: hidden;
}
.page-hero::before,
.page-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: .12;
    pointer-events: none;
}
.page-hero::before {
    width: 360px; height: 360px;
    background: var(--fg-green);
    top: -140px; right: -90px;
}
.page-hero::after {
    width: 240px; height: 240px;
    background: var(--fg-blue);
    bottom: -120px; left: -60px;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .page-tag {
    display: inline-block;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.page-hero h1 {
    font-size: clamp(1.9rem, 4vw, 2.9rem);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.15;
}
.page-hero h1 span {
    background: linear-gradient(135deg, var(--fg-gold), var(--fg-orange));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.page-hero p {
    max-width: 640px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .75);
    font-size: 1.05rem;
}
.page-breadcrumb {
    margin-top: 18px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .7);
}
.page-breadcrumb a { color: #fff; text-decoration: none; opacity: .9; }
.page-breadcrumb a:hover { color: var(--fg-gold); }
.page-breadcrumb span { margin: 0 8px; opacity: .5; }

/* ============ Generic content section ============ */
.fg-section { padding: 64px 20px; }
.fg-section.alt { background: var(--fg-light-bg); }
.fg-section .container { max-width: 1200px; margin: 0 auto; }

.fg-section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.fg-section-head .section-tag {
    display: inline-block;
    background: rgba(92, 183, 27, .1);
    color: var(--fg-green);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .8rem;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.fg-section-head h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--fg-dark);
    margin-bottom: 12px;
}
.fg-section-head h2 span { color: var(--fg-green); }
.fg-section-head p { color: var(--fg-text-light); font-size: 1.02rem; }

/* Two column split */
.fg-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.fg-split .fg-split-media img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--fg-shadow-hover);
    display: block;
}
.fg-split h2 {
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    font-weight: 800;
    color: var(--fg-dark);
    margin-bottom: 16px;
}
.fg-split h2 span { color: var(--fg-green); }
.fg-split p { color: var(--fg-text-light); margin-bottom: 16px; line-height: 1.7; }
.fg-check-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 12px; }
.fg-check-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--fg-text); font-size: .96rem; }
.fg-check-list li i,
.fg-check-list li .tick {
    flex-shrink: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(92, 183, 27, .12);
    color: var(--fg-green);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .8rem;
}

/* Media placeholder (gradient illustration block) */
.fg-illustration {
    background: var(--fg-gradient);
    border-radius: 22px;
    padding: 4px;
    box-shadow: var(--fg-shadow-hover);
}
.fg-illustration-inner {
    background: #fff;
    border-radius: 18px;
    padding: 44px 30px;
    text-align: center;
}
.fg-illustration-inner .big-emoji { font-size: 4.5rem; line-height: 1; margin-bottom: 14px; }
.fg-illustration-inner h3 { font-size: 1.3rem; font-weight: 700; color: var(--fg-dark); margin-bottom: 6px; }
.fg-illustration-inner p { color: var(--fg-text-light); font-size: .9rem; margin: 0; }
.fg-illustration-stats { display: flex; justify-content: center; gap: 22px; margin-top: 22px; flex-wrap: wrap; }
.fg-illustration-stats .stat { background: var(--fg-light-bg); border-radius: 12px; padding: 12px 16px; min-width: 84px; }
.fg-illustration-stats .stat h4 { font-size: 1.2rem; font-weight: 800; color: var(--fg-green); margin: 0; }
.fg-illustration-stats .stat p { font-size: .72rem; color: var(--fg-text-light); margin: 0; }

/* Card grid (services, values, etc.) */
.fg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
}
.fg-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    padding: 30px 26px;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    position: relative;
    overflow: hidden;
}
.fg-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--fg-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.fg-card:hover { transform: translateY(-8px); box-shadow: var(--fg-shadow-hover); border-color: transparent; }
.fg-card:hover::before { transform: scaleX(1); }
.fg-card .fg-icon {
    width: 64px; height: 64px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 18px;
    transition: transform .3s ease;
}
.fg-card:hover .fg-icon { transform: scale(1.08) rotate(4deg); }
.fg-icon.green { background: rgba(92, 183, 27, .1); }
.fg-icon.blue { background: rgba(42, 127, 191, .1); }
.fg-icon.gold { background: rgba(245, 197, 24, .12); }
.fg-icon.orange { background: rgba(232, 139, 30, .12); }
.fg-card h4 { font-size: 1.12rem; font-weight: 700; color: var(--fg-dark); margin-bottom: 10px; }
.fg-card p { font-size: .92rem; color: var(--fg-text-light); line-height: 1.65; margin: 0; }
.fg-card .fg-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--fg-green); font-weight: 600; font-size: .88rem; text-decoration: none; }
.fg-card .fg-card-link:hover { gap: 10px; }

/* Numbered process steps */
.fg-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }
.fg-step {
    background: #fff; border: 1px solid #eee; border-radius: 18px; padding: 32px 26px;
    transition: transform .35s ease, box-shadow .35s ease;
}
.fg-step:hover { transform: translateY(-6px); box-shadow: var(--fg-shadow-hover); }
.fg-step .num {
    width: 46px; height: 46px; border-radius: 14px; background: var(--fg-gradient);
    color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.fg-step .emoji { font-size: 1.9rem; margin-bottom: 10px; }
.fg-step h4 { font-size: 1.05rem; font-weight: 700; color: var(--fg-dark); margin-bottom: 8px; }
.fg-step p { font-size: .9rem; color: var(--fg-text-light); margin: 0; }

/* ============ Pricing ============ */
.fg-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 26px;
    max-width: 1040px;
    margin: 0 auto;
}
.price-card {
    background: #fff; border: 1px solid #eee; border-radius: 22px; padding: 36px 30px;
    text-align: center; position: relative; transition: transform .35s ease, box-shadow .35s ease;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--fg-shadow-hover); }
.price-card.popular { border-color: var(--fg-green); box-shadow: 0 14px 44px rgba(92, 183, 27, .18); }
.price-card .badge-popular {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--fg-gradient); color: #fff; font-size: .72rem; font-weight: 700;
    padding: 6px 16px; border-radius: 50px; letter-spacing: .5px;
}
.price-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--fg-dark); margin-bottom: 6px; }
.price-card .price { font-size: 2.4rem; font-weight: 800; color: var(--fg-green); margin: 12px 0 4px; }
.price-card .price small { font-size: .85rem; font-weight: 500; color: var(--fg-text-light); }
.price-card .price-note { color: var(--fg-text-light); font-size: .85rem; margin-bottom: 22px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; text-align: left; }
.price-card ul li { display: flex; gap: 10px; align-items: center; font-size: .92rem; color: var(--fg-text); }
.price-card ul li .tick { color: var(--fg-green); font-weight: 700; }
.price-card ul li.muted { color: #b5b5b5; }
.price-card ul li.muted .tick { color: #d0d0d0; }

/* ============ Contact page ============ */
.fg-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 36px; }
.fg-contact-cards { display: grid; gap: 16px; }
.fg-contact-card {
    display: flex; gap: 16px; align-items: center; padding: 20px;
    border-radius: 16px; background: var(--fg-light-bg); transition: transform .3s ease, background .3s ease;
}
.fg-contact-card:hover { background: #e8f5e9; transform: translateX(6px); }
.fg-contact-card .ic {
    min-width: 50px; height: 50px; border-radius: 14px; background: rgba(92, 183, 27, .12);
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.fg-contact-card h4 { font-size: .95rem; font-weight: 700; color: var(--fg-dark); margin: 0 0 2px; }
.fg-contact-card p { font-size: .9rem; color: var(--fg-text-light); margin: 0; }
.fg-form {
    background: #fff; border: 1px solid #eee; border-radius: 20px; padding: 30px;
    box-shadow: var(--fg-shadow);
}
.fg-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg-form input, .fg-form textarea, .fg-form select {
    width: 100%; padding: 13px 16px; border: 1px solid #e2e2e2; border-radius: 12px;
    font-family: inherit; font-size: .92rem; margin-bottom: 16px; background: #fafafa;
    transition: border-color .25s ease, box-shadow .25s ease;
}
.fg-form input:focus, .fg-form textarea:focus, .fg-form select:focus {
    outline: none; border-color: var(--fg-green); box-shadow: 0 0 0 3px rgba(92, 183, 27, .12); background: #fff;
}
.fg-form textarea { min-height: 140px; resize: vertical; }
.fg-map { border-radius: 20px; overflow: hidden; margin-top: 36px; box-shadow: var(--fg-shadow); border: 1px solid #eee; }
.fg-map iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ============ FAQ page ============ */
.fg-faq { max-width: 860px; margin: 0 auto; display: grid; gap: 14px; }
.fg-faq details {
    background: #fff; border: 1px solid #eee; border-radius: 14px; padding: 0; overflow: hidden;
    transition: box-shadow .3s ease;
}
.fg-faq details[open] { box-shadow: var(--fg-shadow); }
.fg-faq summary {
    cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 600; color: var(--fg-dark);
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.fg-faq summary::-webkit-details-marker { display: none; }
.fg-faq summary::after { content: "+"; font-size: 1.4rem; color: var(--fg-green); transition: transform .3s ease; }
.fg-faq details[open] summary::after { transform: rotate(45deg); }
.fg-faq details p { padding: 0 22px 20px; color: var(--fg-text-light); margin: 0; line-height: 1.7; }

/* ============ Legal / long-form text ============ */
.fg-legal { max-width: 860px; margin: 0 auto; }
.fg-legal h2 { font-size: 1.35rem; font-weight: 700; color: var(--fg-dark); margin: 32px 0 12px; }
.fg-legal h3 { font-size: 1.08rem; font-weight: 700; color: var(--fg-dark); margin: 22px 0 10px; }
.fg-legal p, .fg-legal li { color: var(--fg-text-light); line-height: 1.8; font-size: .96rem; }
.fg-legal ul { padding-left: 20px; margin-bottom: 16px; display: grid; gap: 8px; }
.fg-legal .updated { color: var(--fg-text-light); font-size: .88rem; margin-bottom: 8px; }

/* ============ CTA band ============ */
.fg-cta {
    background: var(--fg-gradient);
    text-align: center;
    padding: 56px 20px;
    position: relative;
    overflow: hidden;
}
.fg-cta::before, .fg-cta::after {
    content: ""; position: absolute; border-radius: 50%; background: rgba(255, 255, 255, .07);
}
.fg-cta::before { width: 220px; height: 220px; top: -60px; right: -50px; }
.fg-cta::after { width: 160px; height: 160px; bottom: -40px; left: -30px; }
.fg-cta .container { position: relative; z-index: 1; }
.fg-cta h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 800; margin-bottom: 12px; }
.fg-cta p { color: rgba(255, 255, 255, .9); max-width: 560px; margin: 0 auto 26px; }
.fg-cta .btn-white {
    background: #fff; color: var(--fg-green); padding: 14px 34px; border-radius: 50px;
    font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .18); transition: transform .3s ease, box-shadow .3s ease;
}
.fg-cta .btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0, 0, 0, .25); }

/* ============ Unified button polish (front pages) ============ */
.flygoride-theme .btn-primary,
.flygoride-theme .btn-outline {
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
.fg-btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
@media (max-width: 991px) { .fg-btn-row { justify-content: center; } }

/* ============ Scroll reveal ============ */
.fg-reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.fg-reveal.in { opacity: 1; transform: none; }

/* ============ Footer (comprehensive) ============ */
.flygoride-theme .footer {
    background: var(--fg-gradient-dark);
    color: rgba(255, 255, 255, .75);
    padding: 64px 20px 0;
}
.flygoride-theme .footer .footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
}
.flygoride-theme .footer .footer-brand img { height: 52px; width: auto; margin-bottom: 16px; }
.flygoride-theme .footer .footer-brand p { font-size: .92rem; line-height: 1.7; margin-bottom: 18px; max-width: 320px; }
.flygoride-theme .footer .footer-contact { display: grid; gap: 10px; margin-top: 8px; }
.flygoride-theme .footer .footer-contact li { display: flex; gap: 10px; align-items: center; font-size: .9rem; list-style: none; }
.flygoride-theme .footer .footer-contact i { color: var(--fg-green); }
.flygoride-theme .footer h4 { color: #fff; font-size: 1.02rem; font-weight: 700; margin-bottom: 18px; }
.flygoride-theme .footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.flygoride-theme .footer ul li a {
    color: rgba(255, 255, 255, .72); text-decoration: none; font-size: .9rem; transition: color .25s ease, padding-left .25s ease;
}
.flygoride-theme .footer ul li a:hover { color: var(--fg-green); padding-left: 5px; }
.flygoride-theme .footer .footer-social { display: flex; gap: 10px; margin-top: 18px; }
.flygoride-theme .footer .footer-social a {
    width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .08); color: #fff; font-size: 1.05rem; transition: background .3s ease, transform .3s ease;
    text-decoration: none;
}
.flygoride-theme .footer .footer-social a:hover { background: var(--fg-gradient); transform: translateY(-3px); }
.flygoride-theme .footer .footer-newsletter { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; max-width: 360px; }
.flygoride-theme .footer .footer-bottom {
    max-width: 1200px; margin: 40px auto 0; padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.flygoride-theme .footer .footer-bottom p { margin: 0; font-size: .86rem; }
.flygoride-theme .footer .footer-bottom .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }
.flygoride-theme .footer .footer-bottom .legal-links a { color: rgba(255, 255, 255, .72); text-decoration: none; font-size: .86rem; }
.flygoride-theme .footer .footer-bottom .legal-links a:hover { color: var(--fg-green); }

/* ============ Homepage: Why Choose ============ */
.flygoride-theme .why-choose { padding: 80px 20px; }
.flygoride-theme .why-choose .container { max-width: 1200px; margin: 0 auto; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-visual { position: relative; display: flex; justify-content: center; }
.why-phone {
    background: var(--fg-gradient); border-radius: 28px; padding: 6px;
    box-shadow: var(--fg-shadow-hover); width: 100%; max-width: 360px;
}
.why-phone-inner { background: #fff; border-radius: 24px; padding: 30px 26px; }
.wpi-header { text-align: center; margin-bottom: 22px; }
.wpi-header h4 { font-size: 1.3rem; font-weight: 800; color: var(--fg-dark); margin: 0 0 4px; }
.wpi-header p { font-size: .85rem; color: var(--fg-text-light); margin: 0; }
.wpi-stats { display: flex; justify-content: space-around; gap: 10px; margin-bottom: 22px; }
.wpi-stat { text-align: center; background: var(--fg-light-bg); border-radius: 12px; padding: 12px; flex: 1; }
.wpi-stat h5 { font-size: 1.25rem; font-weight: 800; color: var(--fg-green); margin: 0; }
.wpi-stat p { font-size: .72rem; color: var(--fg-text-light); margin: 0; }
.wpi-list { display: grid; gap: 12px; }
.wpi-item { display: flex; align-items: center; gap: 12px; font-size: .92rem; color: var(--fg-text); }
.wpi-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(92,183,27,.12); color: var(--fg-green); display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; flex-shrink: 0; }
.why-floating { position: absolute; background: #fff; border-radius: 14px; padding: 12px 16px; box-shadow: var(--fg-shadow-hover); z-index: 2; }
.why-floating-1 { top: 12%; left: -6%; animation: fg-float 4s ease-in-out infinite; }
.why-floating-2 { bottom: 14%; right: -6%; animation: fg-float 4s ease-in-out infinite 1.5s; }
@keyframes fg-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.why-list { display: grid; gap: 22px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-number { flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; background: var(--fg-gradient); color: #fff; font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
.why-item h4 { font-size: 1.1rem; font-weight: 700; color: var(--fg-dark); margin: 0 0 6px; }
.why-item p { font-size: .92rem; color: var(--fg-text-light); margin: 0; line-height: 1.65; }

/* ============ Homepage: About ============ */
.flygoride-theme .about { padding: 80px 20px; }
.flygoride-theme .about .container { max-width: 1200px; margin: 0 auto; }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.about-visual { display: flex; justify-content: center; }
.about-img-container { background: var(--fg-gradient); border-radius: 28px; padding: 6px; box-shadow: var(--fg-shadow-hover); width: 100%; max-width: 380px; }
.about-img-inner { background: #fff; border-radius: 24px; padding: 40px 30px; text-align: center; }
.company-icon { font-size: 4rem; margin-bottom: 12px; }
.about-img-inner h3 { font-size: 1.4rem; font-weight: 800; color: var(--fg-dark); margin: 0 0 2px; }
.about-img-inner > p { color: var(--fg-text-light); margin: 0 0 22px; }
.about-stats-row { display: flex; justify-content: space-around; gap: 10px; }
.about-stat { text-align: center; }
.about-stat h4 { font-size: 1.4rem; font-weight: 800; color: var(--fg-green); margin: 0; }
.about-stat p { font-size: .72rem; color: var(--fg-text-light); margin: 0; }
.about-content h3 { font-size: clamp(1.5rem,2.4vw,2rem); font-weight: 800; color: var(--fg-dark); margin: 0 0 16px; }
.about-content p { color: var(--fg-text-light); line-height: 1.75; margin-bottom: 14px; }
.about-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.about-badge { background: var(--fg-light-bg); border: 1px solid #e8e8e8; border-radius: 50px; padding: 8px 16px; font-size: .82rem; font-weight: 600; color: var(--fg-dark); }

/* ============ Homepage: Contact ============ */
.flygoride-theme .contact-section { padding: 80px 20px; background: var(--fg-light-bg); }
.flygoride-theme .contact-section .container { max-width: 1200px; margin: 0 auto; }

@media (max-width: 991px) {
    .why-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .why-floating-1 { left: 2%; }
    .why-floating-2 { right: 2%; }
}

/* ============ Back to top ============ */
.back-to-top {
    position: fixed; bottom: 26px; right: 26px; width: 46px; height: 46px; border-radius: 50%;
    border: none; background: var(--fg-gradient); color: #fff; font-size: 1.2rem; cursor: pointer;
    opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .35s ease; z-index: 999;
    box-shadow: 0 6px 20px rgba(92, 183, 27, .4);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { transform: translateY(-3px); }

/* ============ Responsive ============ */
@media (max-width: 991px) {
    .fg-split { grid-template-columns: 1fr; gap: 32px; }
    .fg-split.reverse .fg-split-media { order: -1; }
    .fg-contact-grid { grid-template-columns: 1fr; }
    .flygoride-theme .footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 575px) {
    .fg-form .row2 { grid-template-columns: 1fr; }
    .flygoride-theme .footer .footer-grid { grid-template-columns: 1fr; }
    .flygoride-theme .footer .footer-bottom { flex-direction: column; text-align: center; }
    .page-hero { padding: 54px 20px 48px; }
}
