/* Safexpress Amritsar - Corporate Infographic Style */
:root {
    --primary-green: #1B4D1B;
    --accent-green: #2d6a2d;
    --light-green: #eef7ee;
    --white: #ffffff;
    --dark: #111111;
    --gray-light: #f4f4f4;
    --border-color: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--gray-light);
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    background: var(--white);
    box-shadow: 0 0 50px rgba(0,0,0,0.1);
}

/* Header Section */
.top-header {
    background-color: var(--primary-green);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo-wrapper {
    background: var(--white);
    padding: 5px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-logo {
    height: 60px;
    width: auto;
    display: block;
}

.cover-banner {
    width: 100%;
    height: auto;
    overflow: hidden;
    line-height: 0;
}

.fb-banner {
    width: 100%;
    height: auto;
    display: block;
}

.shield-badge {
    background: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    border: 2px solid var(--primary-green);
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 20px;
    right: 40px;
}

.shield-text {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1.1;
    text-align: right;
}

/* Headline Section */
.hero-section {
    padding: 60px 40px;
    text-align: center;
}

.main-headline {
    font-size: 3.5rem;
    color: var(--accent-green);
    font-weight: 900;
    margin-bottom: 0;
}

.sub-headline {
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: 800;
    margin-bottom: 30px;
}

.pill-shape {
    background: var(--accent-green);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* 4-Step Process */
.process-section {
    padding: 40px;
    background: #f9f9f9;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.process-card {
    background: var(--white);
    padding: 25px 15px;
    text-align: center;
    flex: 1;
    border-top: 5px solid var(--accent-green);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 0 0 8px 8px;
}

.card-num {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--accent-green);
    margin-bottom: 10px;
    display: block;
}

.process-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.process-label {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--dark);
}

.arrow {
    font-size: 1.5rem;
    color: var(--accent-green);
    font-weight: 900;
}

/* Why Choose Section */
.why-section {
    padding: 40px;
}

.section-bar {
    background: var(--primary-green);
    color: var(--white);
    padding: 15px;
    text-align: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    background: var(--light-green);
    color: var(--primary-green);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-title {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-desc {
    color: #666;
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding: 40px;
    background: var(--light-green);
}

.services-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--primary-green);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    font-size: 1.1rem;
}

.check-icon {
    color: var(--primary-green);
    font-weight: 900;
}

/* Posts Section */
.posts-section {
    padding: 40px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.post-card-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.post-card-img:hover {
    transform: translateY(-5px);
}

.post-card-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* SEO Strip */
.seo-strip {
    background: #d4ead4;
    padding: 12px;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-green);
    border-top: 1px solid rgba(27,77,27,0.1);
}

/* Footer Section */
.site-footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left, .footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-icon {
    width: 55px;
    height: 55px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.footer-divider {
    width: 2px;
    height: 80px;
    background: rgba(255,255,255,0.2);
}

.footer-info span {
    display: block;
}

.info-small {
    font-size: 0.8rem;
    opacity: 0.8;
    text-transform: uppercase;
    font-weight: 600;
}

.info-large {
    font-size: 1.8rem;
    font-weight: 900;
}

.info-mid {
    font-size: 1.1rem;
    font-weight: 700;
}

.cta-button {
    display: block;
    width: 100%;
    background: var(--accent-green);
    color: var(--white);
    text-align: center;
    padding: 20px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.4rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #1B4D1B;
}

@media (max-width: 768px) {
    .main-headline { font-size: 2.2rem; }
    .sub-headline { font-size: 1.6rem; }
    .process-grid { flex-direction: column; }
    .arrow { transform: rotate(90deg); margin: 10px 0; }
    .why-grid, .services-grid { grid-template-columns: 1fr; }
    .site-footer { flex-direction: column; gap: 30px; text-align: center; }
    .footer-left, .footer-right { flex-direction: column; }
    .footer-divider { display: none; }
}
