﻿body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f6f8;
    color: #333;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #c4161c, #7a0f12);
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

    .hero h1 {
        margin: 0;
        font-size: 34px;
    }

    .hero p {
        margin-top: 12px;
        font-size: 17px;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }

/* Back Button */
.back-wrap {
    max-width: 95%;
    margin: 20px auto 0;
    padding: 0 20px;
}

.back-btn {
    display: inline-block;
    text-decoration: none;
    background: #c4161c;
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Container */
.container {
    max-width: 95%;
    margin: auto;
    padding: 40px 20px;
}

h2 {
    color: #c4161c;
    margin-bottom: 20px;
    text-align: center;
}

/* Card */
.card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

/* Services Grid */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
}

.service-item {
    background: #f9f9f9;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.step {
    background: #fff;
    border-left: 5px solid #c4161c;
    padding: 18px;
    border-radius: 8px;
}

/* Trust */
.trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

    .trust div {
        background: #f1f5f9;
        padding: 18px;
        border-radius: 8px;
        font-weight: 600;
    }

/* Payment */
.payment {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

    .payment div {
        background: #f9f9f9;
        padding: 14px;
        border-radius: 8px;
        font-weight: 600;
    }

/* QR */
.qr-box {
    text-align: center;
    margin-top: 20px;
}

    .qr-box img {
        max-width: 220px;
        border: 1px solid #ddd;
        border-radius: 12px;
        padding: 10px;
        background: #fff;
    }

/* CTA */
.cta {
    background: #fff;
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

    .cta a {
        display: inline-block;
        margin: 10px;
        padding: 14px 28px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
        color: #fff;
    }

.call-btn {
    background: #c4161c;
}

.whatsapp-btn {
    background: #25D366;
}

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: #fff;
    margin-top: 40px;
}
/* Utility Navigation Bar */
.utility-nav {
    position: sticky;
    top: 0;
    z-index: 3000;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    font-size: 14px;
}

    .utility-nav a {
        text-decoration: none;
        color: #c4161c;
        font-weight: bold;
        white-space: nowrap;
    }

@media (max-width: 768px) {
    .utility-nav {
        font-size: 12px;
    }
}

.cta-mini {
    background: #f1f5f9;
    padding: 14px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
}

    .cta-mini a {
        color: #c4161c;
        text-decoration: none;
    }
.form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.full-width {
    grid-column: span 2;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 5px;
    color: #222;
}

/* INPUT BOX */
.form-control {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.2s;
}

/* FOCUS EFFECT */
.form-control:focus {
    border-color: #2e7d32; /* match your green tone */
    outline: none;
    box-shadow: 0 0 5px rgba(46,125,50,0.2);
}

/* TEXTAREA */
textarea.form-control {
    resize: none;
}

/* BUTTON (reuse call-btn but improve spacing) */
.form-section .call-btn {
    padding: 12px 25px;
    font-size: 15px;
    background: #c4161c;
}

/* VALIDATION MESSAGE */
span[style*="color:Red"] {
    font-size: 12px;
    margin-top: 3px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
    .form-section {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }
}

/* SAMPLE DESIGN GRID */
.sample-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.sample-item {
    text-align: center;
    transition: transform 0.3s ease;
}

    .sample-item:hover {
        transform: translateY(-5px);
    }

    .sample-item img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        border-radius: 10px;
        border: 1px solid #ddd;
        background: #fff;
    }

    .sample-item p {
        margin-top: 8px;
        font-size: 14px;
        font-weight: 500;
    }

/* SMALL IMPROVEMENTS */
.card h3 {
    margin-top: 10px;
    font-size: 18px;
}

.card hr {
    margin: 15px 0;
    border: 0;
    border-top: 1px solid #eee;
}
/* INTRO SIDE BY SIDE */
.intro-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    align-items: center;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== PAGE TITLE (Same Red Gradient Style) ===== */
.seo-content {
    max-width: 95%;
    margin: 10px auto;
    padding: 10px 10px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

    /* Headings */
    .seo-content h1 {
        font-size: 28px;
        color: #1f2937;
        margin-bottom: 15px;
        border-left: 5px solid #2563eb; /* Blue accent */
        padding-left: 12px;
    }

    .seo-content h2 {
        font-size: 22px;
        color: #111827;
        margin-top: 10px;
        margin-bottom: 12px;
    }

    /* Paragraph text */
    .seo-content p {
        font-size: 16px;
        line-height: 1.75;
        color: #374151;
        margin-bottom: 14px;
    }

/* Highlight keywords */
.seo-highlight {
    color: #2563eb;
    font-weight: 600;
}