/* =========================================================
   GetWay Rightway — Interior Pages CSS
   All inner page components: hero banner, cards, forms, grids
   ========================================================= */

/* ===== PAGE HERO BANNER ===== */
.page-hero {
    position: relative;
    min-height: 22rem;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(35,67,97,0.92) 0%, rgba(5,11,22,0.85) 100%);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    width: 100%;
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.page-hero-breadcrumb a { color: rgba(255,255,255,0.55); }
.page-hero-breadcrumb a:hover { color: var(--getway-red); }
.page-hero-breadcrumb .sep { color: rgba(255,255,255,0.3); }

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.page-hero-title .accent { color: var(--getway-red); }

.page-hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    max-width: 40rem;
    line-height: 1.7;
}

/* ===== SECTION WRAPPERS ===== */
.gw-section {
    padding: 5rem 0;
    position: relative;
}

.bg-light  { background-color: #f8fafc; }
.bg-white  { background-color: #ffffff; }
.bg-navy   { background-color: var(--getway-navy); }

.dark-mode .bg-light  { background-color: var(--getway-dark-bg); }
.dark-mode .bg-white  { background-color: #0A192F; }
.dark-mode .bg-navy   { background-color: #0a1628; }

/* ===== TYPOGRAPHY ===== */
.section-label {
    display: block;
    color: var(--getway-red);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.section-heading {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: var(--getway-navy);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.dark-mode .section-heading { color: #ffffff; }
.section-heading .accent { color: var(--getway-red); }

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.dark-mode .section-title { color: #ffffff; }

.section-divider {
    width: 4rem;
    height: 0.3rem;
    background: var(--getway-red);
    border-radius: 9999px;
    margin-top: 0.75rem;
}

.section-header.text-center .section-divider { margin: 0.75rem auto 0; }

.section-desc {
    font-size: 1.0625rem;
    color: #475569;
    max-width: 40rem;
    margin: 1.25rem auto 0;
    line-height: 1.75;
}

.dark-mode .section-desc { color: #94a3b8; }

.body-text {
    font-size: 1rem;
    color: #475569;
    line-height: 1.8;
}

.dark-mode .body-text { color: #94a3b8; }

/* ===== TWO-COL GRID ===== */
.two-col-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .two-col-grid { flex-direction: row; }
    .two-col-grid.reverse { flex-direction: row-reverse; }
}

.img-frame-col { flex: 1; position: relative; width: 100%; }

.img-frame {
    position: relative;
    background: #f1f5f9;
    padding: 0.75rem;
    border-radius: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15);
}

.dark-mode .img-frame {
    background: #1e293b;
    border-color: rgba(255,255,255,0.1);
}

.img-frame img {
    border-radius: 1.5rem;
    width: 100%;
    height: 22rem;
    object-fit: cover;
}

.img-badge-corner {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--getway-red);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(196,57,57,0.4);
    display: none;
}

@media (min-width: 768px) { .img-badge-corner { display: block; } }
.img-badge-corner .small { font-size: 9px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; }
.img-badge-corner .big   { font-size: 1.5rem; font-weight: 900; line-height: 1.2; }

.text-col { flex: 1; display: flex; flex-direction: column; gap: 1.25rem; }

/* Checklist */
.check-list, .service-detail-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }

.check-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
}

.dark-mode .check-item { color: #cbd5e1; }
.check-item svg { color: var(--getway-red); flex-shrink: 0; }

/* ===== CARDS GRID ===== */
.cards-grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 640px)  { .cards-grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .cards-grid-3 { grid-template-columns: repeat(3,1fr); } }

.gw-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 24px rgba(148,163,184,0.15);
}

.dark-mode .gw-card {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.08);
    box-shadow: none;
}

.gw-card:hover {
    border-color: var(--getway-red);
    transform: translateY(-0.375rem);
    box-shadow: 0 20px 40px rgba(196,57,57,0.1);
}

.card-icon-wrap {
    width: 3rem;
    height: 3rem;
    background: rgba(196,57,57,0.1);
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: background 0.4s;
}

.gw-card:hover .card-icon-wrap { background: var(--getway-red); }
.card-icon-wrap svg { width: 1.5rem; height: 1.5rem; color: var(--getway-red); transition: color 0.4s; }
.gw-card:hover .card-icon-wrap svg { color: #ffffff; }

.gw-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.625rem;
}

.dark-mode .gw-card h3 { color: #ffffff; }

.gw-card p {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.dark-mode .gw-card p { color: #94a3b8; }

.card-link {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--getway-red);
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: gap 0.2s;
}

.card-link:hover { gap: 0.375rem; color: var(--getway-red); }

/* ===== STATS GRID ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }

.stat-card {
    padding: 2rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1.5rem;
}

.stat-num {
    font-size: 3rem;
    font-weight: 900;
    color: var(--getway-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== TIMELINE ===== */
.timeline {
    position: relative;
    max-width: 48rem;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--getway-red), transparent);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    width: 50%;
    position: relative;
}

.timeline-item.left  { align-self: flex-start; padding-right: 2.5rem; justify-content: flex-end; }
.timeline-item.right { align-self: flex-end;   padding-left: 2.5rem;  margin-left: auto; }

.timeline-dot {
    position: absolute;
    width: 0.875rem;
    height: 0.875rem;
    background: var(--getway-red);
    border-radius: 50%;
    border: 3px solid #f8fafc;
    right: -0.4375rem;
    top: 1.25rem;
    z-index: 1;
}

.dark-mode .timeline-dot { border-color: var(--getway-dark-bg); }

.timeline-item.right .timeline-dot {
    right: auto;
    left: -0.4375rem;
}

.timeline-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 16px rgba(148,163,184,0.12);
    max-width: 18rem;
}

.dark-mode .timeline-card {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
}

.timeline-year {
    display: inline-block;
    font-size: 10px;
    font-weight: 900;
    color: var(--getway-red);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: rgba(196,57,57,0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    margin-bottom: 0.625rem;
}

.timeline-card p {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
}

.dark-mode .timeline-card p { color: #94a3b8; }

@media (max-width: 640px) {
    .timeline::before { left: 0.5rem; }
    .timeline-item { width: 100%; padding-left: 2.5rem; padding-right: 0; align-self: auto; margin-left: 0; }
    .timeline-dot { right: auto; left: -0.25rem; }
    .timeline-card { max-width: 100%; }
}

/* ===== AMC SECTION ===== */
.amc-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: flex-start;
}

@media (min-width: 1024px) { .amc-section { flex-direction: row; align-items: center; } }

.amc-features { display: flex; flex-direction: column; gap: 0.625rem; margin-top: 1.25rem; }

.amc-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.amc-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: var(--getway-red);
    border-radius: 50%;
    flex-shrink: 0;
}

.amc-cta-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 1.5rem;
    padding: 2.5rem;
    text-align: center;
    min-width: 16rem;
    flex-shrink: 0;
}

.amc-price-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.amc-price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0;
}

.amc-price span { font-size: 1rem; color: rgba(255,255,255,0.5); }

/* ===== SOLUTIONS CARDS ===== */
.solutions-category { margin-bottom: 2rem; }

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid rgba(196,57,57,0.15);
}

.cat-icon-wrap {
    width: 3rem;
    height: 3rem;
    background: var(--getway-red);
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cat-icon-wrap svg { width: 1.5rem; height: 1.5rem; color: #ffffff; }
.cat-title { font-size: 1.375rem; font-weight: 900; color: var(--getway-navy); margin-bottom: 0.25rem; }
.dark-mode .cat-title { color: #ffffff; }
.cat-desc  { font-size: 0.875rem; color: #64748b; }

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
    gap: 1.5rem;
}

.solution-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 2px 12px rgba(148,163,184,0.1);
}

.dark-mode .solution-card {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.08);
}

.solution-card:hover {
    border-color: var(--getway-red);
    box-shadow: 0 12px 32px rgba(196,57,57,0.12);
    transform: translateY(-4px);
}

.sol-img-wrap { height: 11rem; overflow: hidden; }
.sol-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.solution-card:hover .sol-img-wrap img { transform: scale(1.08); }

.sol-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a5f, #0f2035);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sol-img-placeholder svg { color: rgba(196,57,57,0.5); }

.sol-body { padding: 1.25rem; }

.sol-icon {
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(196,57,57,0.1);
    border-radius: 0.625rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.875rem;
}

.sol-icon svg { color: var(--getway-red); }

.solution-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--getway-navy);
    margin-bottom: 0.5rem;
}

.dark-mode .solution-card h3 { color: #ffffff; }

.solution-card p {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 0.875rem;
}

/* ===== PORTFOLIO ===== */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 2px solid #e2e8f0;
    background: #ffffff;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Inter', sans-serif;
}

.dark-mode .filter-btn { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.1); color: #94a3b8; }

.filter-btn:hover, .filter-btn.active {
    background: var(--getway-red);
    border-color: var(--getway-red);
    color: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 640px) { .portfolio-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .portfolio-grid { grid-template-columns: repeat(3,1fr); } }

.portfolio-card {
    background: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(148,163,184,0.12);
}

.dark-mode .portfolio-card {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.08);
}

.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(196,57,57,0.12);
    border-color: var(--getway-red);
}

.portfolio-img-wrap {
    position: relative;
    height: 14rem;
    overflow: hidden;
}

.portfolio-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.portfolio-card:hover .portfolio-img-wrap img { transform: scale(1.06); }

.portfolio-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1e3a5f, #0f2035);
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--getway-red);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.portfolio-body { padding: 1.5rem; }

.portfolio-client {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--getway-red);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.portfolio-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--getway-navy);
    margin-bottom: 0.625rem;
    line-height: 1.35;
}

.dark-mode .portfolio-title { color: #ffffff; }

.portfolio-desc {
    font-size: 0.8125rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.portfolio-outcome {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #22c55e;
    background: rgba(34,197,94,0.08);
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    width: fit-content;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-top: 2rem;
}

@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }

.testimonial-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1.5rem;
    padding: 2rem;
}

.quote-icon {
    font-size: 4rem;
    font-weight: 900;
    color: var(--getway-red);
    line-height: 0.5;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.quote-text {
    font-size: 0.9375rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.author-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--getway-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}

.quote-author strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.quote-author span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ===== INDUSTRIES ===== */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.industry-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--getway-navy);
    transition: all 0.2s;
}

.dark-mode .industry-pill {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    color: #cbd5e1;
}

.industry-pill:hover {
    background: var(--getway-red);
    border-color: var(--getway-red);
    color: #fff;
}

.industry-pill svg { color: var(--getway-red); }
.industry-pill:hover svg { color: #fff; }

/* ===== QUOTE / CONTACT FORMS ===== */
.quote-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .quote-layout { flex-direction: row; align-items: flex-start; }
    .quote-form-col { flex: 3; }
    .quote-info-col { flex: 2; }
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-layout { flex-direction: row; }
    .contact-info-col { flex: 2; }
    .contact-form-col { flex: 3; }
}

.quote-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.75rem;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(148,163,184,0.12);
}

.dark-mode .quote-form-card {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--getway-navy);
    margin-bottom: 0.375rem;
}

.dark-mode .form-title { color: #ffffff; }
.form-title .accent { color: var(--getway-red); }

.form-subtitle {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.quote-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 640px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.375rem; }

.form-group label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dark-mode .form-group label { color: #94a3b8; }

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    color: #0f172a;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
}

.dark-mode .form-group input,
.dark-mode .form-group select,
.dark-mode .form-group textarea {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--getway-red);
    box-shadow: 0 0 0 3px rgba(196,57,57,0.12);
}

.form-group textarea { resize: vertical; min-height: 7rem; }

.form-check {
    flex-direction: row !important;
    align-items: center;
}

.form-check input { width: auto; margin-right: 0.5rem; }
.form-check label { text-transform: none; font-size: 0.875rem; letter-spacing: 0; }

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--getway-red);
    color: #ffffff;
    border: none;
    border-radius: 0.875rem;
    padding: 0.9375rem 2rem;
    font-size: 0.9375rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05em;
}

.btn-submit:hover {
    background: #b91c1c;
    box-shadow: 0 0 20px rgba(196,57,57,0.4);
    transform: translateY(-1px);
}

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: 0.875rem;
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: 1.5rem;
}

/* Quote Info Sidebar */
.quote-info-card {
    background: var(--getway-navy);
    border-radius: 1.75rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.quote-info-card h3 {
    font-size: 1.125rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.usp-list { display: flex; flex-direction: column; gap: 1.25rem; }

.usp-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.usp-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.usp-icon svg { color: var(--getway-red); }

.usp-item strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.usp-item p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.contact-direct-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1.75rem;
    padding: 2rem;
}

.dark-mode .contact-direct-card {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
}

.contact-direct-card h3 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--getway-navy);
    margin-bottom: 1.25rem;
}

.dark-mode .contact-direct-card h3 { color: #ffffff; }

.whatsapp-btn, .email-btn {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.5rem;
    border-radius: 0.875rem;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.25s;
    width: 100%;
    justify-content: center;
    margin-bottom: 0.875rem;
    text-decoration: none;
}

.whatsapp-btn { background: #25d366; color: #fff; }
.whatsapp-btn:hover { background: #1da851; color: #fff; }

.email-btn {
    background: #f1f5f9;
    color: var(--getway-navy);
    border: 1.5px solid #e2e8f0;
}

.dark-mode .email-btn {
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    border-color: rgba(255,255,255,0.1);
}

.email-btn:hover { background: var(--getway-navy); color: #fff; }

.office-hours {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.dark-mode .office-hours { border-color: rgba(255,255,255,0.08); }

.hours-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 0.375rem;
}

.office-hours p { font-size: 0.8125rem; color: #64748b; margin-bottom: 0.25rem; }
.dark-mode .office-hours p { color: #94a3b8; }

/* Contact info blocks */
.contact-info-blocks { display: flex; flex-direction: column; gap: 1.25rem; margin: 2rem 0; }

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.25rem;
}

.dark-mode .contact-info-item {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.08);
}

.contact-info-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(196,57,57,0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg { color: var(--getway-red); width: 1.25rem; height: 1.25rem; }
.contact-info-label { font-size: 0.7rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.15em; color: #94a3b8; margin-bottom: 0.25rem; }
.contact-info-value { font-size: 0.9rem; font-weight: 600; color: var(--getway-navy); }
.dark-mode .contact-info-value { color: #cbd5e1; }
.contact-info-value:hover { color: var(--getway-red); }

.map-placeholder {
    border-radius: 1.5rem;
    background: linear-gradient(135deg, #1e3a5f, #0f2035);
    height: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.08);
}

.map-inner { text-align: center; }

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    background: linear-gradient(135deg, var(--getway-navy) 0%, #0a1628 100%);
    padding: 5rem 0;
    overflow: hidden;
}

.cta-blob-1 {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 30rem;
    height: 30rem;
    background: rgba(196,57,57,0.12);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.cta-blob-2 {
    position: absolute;
    bottom: -50%;
    left: -5%;
    width: 20rem;
    height: 20rem;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .cta-inner { flex-direction: row; text-align: left; }
    .cta-text { flex: 1; }
}

.cta-text h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.625rem;
    line-height: 1.2;
}

.cta-text h2 .accent { color: var(--getway-red); }
.cta-text p { font-size: 1rem; color: rgba(255,255,255,0.65); }

.cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 1024px) { .cta-btns { justify-content: flex-start; } }

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: var(--getway-red);
    color: #fff;
    border-radius: 0.875rem;
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.25s;
    text-decoration: none;
}

.btn-cta-primary:hover {
    background: #b91c1c;
    box-shadow: 0 0 24px rgba(196,57,57,0.5);
    color: #fff;
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.2);
    color: #fff;
    border-radius: 0.875rem;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.25s;
    text-decoration: none;
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.18);
    color: #fff;
}

/* Primary button (reused on pages) */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.875rem 1.75rem;
    background: var(--getway-red);
    color: #fff;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 0.875rem;
    transition: all 0.25s;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: #b91c1c;
    box-shadow: 0 8px 20px rgba(196,57,57,0.35);
    color: #fff;
}
