/* ===== Royal Forno – Location Page Component Styles ===== */

.rf-section {
    padding: 60px 0;
}
.rf-tag {
    display: block;
    text-align: center;
    color: #f2613d;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.rf-heading {
    text-align: center;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    font-size: 30px;
    color: #2a2a2a;
    margin-bottom: 10px;
}
.rf-subheading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 40px auto;
    color: #666;
    font-size: 15px;
}

/* ---- Product Range Cards ---- */
.rf-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.rf-product-card {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.rf-product-card img {
    width: 100%;
    height: 190px;
    object-fit: contain;
    margin: 10px 0 15px 0;
}
.rf-product-card h4 {
    font-family: Poppins, sans-serif;
    font-weight: 700;
    font-size: 19px;
    color: #2a2a2a;
    margin-bottom: 10px;
}
.rf-product-card p.rf-desc {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}
.rf-product-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
.rf-product-card ul li {
    font-size: 14px;
    color: #333;
    padding: 4px 0;
}
.rf-product-card ul li i {
    color: #f2613d;
    margin-right: 8px;
}
.rf-btn {
    display: inline-block;
    background: #f2613d;
    color: #fff !important;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.2s ease;
}
.rf-btn:hover {
    background: #d94f2c;
    color: #fff !important;
}

/* ---- Comparison Table ---- */
.rf-compare-wrap {
    overflow-x: auto;
}
table.rf-compare {
    width: 100%;
    border-collapse: collapse;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    min-width: 650px;
}
table.rf-compare thead th {
    background: #2a2a2a;
    color: #fff;
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
}
table.rf-compare thead th:first-child {
    color: #f2613d;
}
table.rf-compare tbody td {
    padding: 13px 16px;
    border-bottom: 1px solid #eee;
    color: #333;
}
table.rf-compare tbody td:first-child {
    font-weight: 600;
    color: #2a2a2a;
}
table.rf-compare tbody tr:nth-child(odd) {
    background: #faf9f7;
}

/* ---- Icon Grid (Applications / generic) ---- */
.rf-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.rf-icon-item {
    text-align: center;
    background: #fff;
    border: 1px solid #f0e9e2;
    border-radius: 10px;
    padding: 25px 10px;
}
.rf-icon-item .rf-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fdeee7;
    color: #f2613d;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
}
.rf-icon-item p {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #2a2a2a;
    margin: 0;
}

/* ---- Two column icon list (Features / Industries) ---- */
.rf-twocol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.rf-twocol-box {
    background: #fff;
    border: 1px solid #f0e9e2;
    border-radius: 10px;
    padding: 25px 25px 10px 25px;
}
.rf-twocol-box h4 {
    font-family: Poppins, sans-serif;
    font-weight: 700;
    color: #f2613d;
    font-size: 17px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    text-align: center;
}
.rf-twocol-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.rf-twocol-list .rf-mini {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}
.rf-twocol-list .rf-mini i {
    color: #f2613d;
    font-size: 18px;
    margin-top: 3px;
}
.rf-twocol-list .rf-mini strong {
    display: block;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    color: #2a2a2a;
}
.rf-twocol-list .rf-mini span {
    font-size: 13px;
    color: #777;
}

/* ---- Trust Strip (Why Choose Royal Forno) ---- */
.rf-trust-strip {
    background: #1e1e1e;
    padding: 50px 0;
}
.rf-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px 20px;
    max-width: 800px;
    margin: 0 auto;
}
.rf-trust-item {
    text-align: center;
    color: #fff;
}
.rf-trust-item .rf-trust-icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(242, 97, 61, 0.15);
    border: 1px solid rgba(242, 97, 61, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px auto;
}
.rf-trust-item i {
    font-size: 30px;
    color: #f2613d;
}
.rf-trust-item p {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    color: #f5f5f5;
}

/* ---- Manufacturing Process Stepper ---- */
.rf-stepper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
}
.rf-step {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 0 8px;
    position: relative;
}
.rf-step .rf-step-num {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fdeee7;
    color: #f2613d;
    font-family: Poppins, sans-serif;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
    border: 2px solid #f2613d;
}
.rf-step h5 {
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 6px;
}
.rf-step p {
    font-size: 12.5px;
    color: #777;
    line-height: 1.4;
}
.rf-step-arrow {
    align-self: center;
    color: #f2613d;
    font-size: 18px;
    margin-top: 15px;
}

/* ---- Location-specific block tag ---- */
.rf-location-specific {
    border-left: 4px solid #f2613d;
    padding-left: 20px;
}

/* ---- Other Locations pill links ---- */
.rf-loc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.rf-loc-pills a {
    background: #fdeee7;
    color: #f2613d;
    font-size: 13px;
    font-family: Poppins, sans-serif;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
}
.rf-loc-pills a:hover {
    background: #f2613d;
    color: #fff;
}

/* ---- Sticky Right-Side Lead Widget (Desktop) ---- */
.rf-sticky-side {
    position: fixed;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.rf-sticky-side a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 13px 18px;
    border-radius: 30px;
    font-family: Poppins, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    white-space: nowrap;
    transition: all 0.2s ease;
}
.rf-sticky-side a.rf-side-quote {
    background: #1e1e1e;
}
.rf-sticky-side a.rf-side-quote:hover {
    background: #000;
    transform: scale(1.04);
}
.rf-sticky-side a.rf-side-whatsapp {
    background: #25D366;
}
.rf-sticky-side a.rf-side-whatsapp:hover {
    background: #1eb857;
    transform: scale(1.04);
}
.rf-sticky-side i {
    font-size: 18px;
}

@media (max-width: 991px) {
    .rf-sticky-side { display: none; }
}

/* ---- Network Page: Region Blocks + City Cards ---- */
.rf-region-block {
    margin-bottom: 45px;
}
.rf-region-heading {
    font-family: Poppins, sans-serif;
    font-weight: 700;
    font-size: 21px;
    color: #2a2a2a;
    border-left: 4px solid #f2613d;
    padding-left: 14px;
    margin-bottom: 22px;
}
.rf-region-count {
    font-weight: 400;
    font-size: 14px;
    color: #999;
}
.rf-city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.rf-city-card {
    display: block;
    background: #fff;
    border: 1px solid #f0e9e2;
    border-radius: 10px;
    padding: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.rf-city-card:hover {
    border-color: #f2613d;
    box-shadow: 0 6px 16px rgba(242,97,61,0.15);
    transform: translateY(-2px);
}
.rf-city-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fdeee7;
    color: #f2613d;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 16px;
}
.rf-city-card h5 {
    font-family: Poppins, sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #2a2a2a;
    margin-bottom: 3px;
}
.rf-city-card span {
    font-size: 12.5px;
    color: #888;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .rf-product-grid { grid-template-columns: 1fr 1fr; }
    .rf-icon-grid { grid-template-columns: repeat(3, 1fr); }
    .rf-trust-grid { grid-template-columns: repeat(3, 1fr); }
    .rf-twocol { grid-template-columns: 1fr; }
    .rf-city-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .rf-product-grid { grid-template-columns: 1fr; }
    .rf-icon-grid { grid-template-columns: repeat(2, 1fr); }
    .rf-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .rf-twocol-list { grid-template-columns: 1fr; }
    .rf-heading { font-size: 24px; }
    .rf-stepper { flex-direction: column; }
    .rf-step-arrow { transform: rotate(90deg); margin: 5px 0; }
    .rf-city-grid { grid-template-columns: 1fr; }
}
