:root {
    --primary: #ea580c;
    --primary-dark: #c2410c;
    --primary-light: #ffedd5;
    --accent: #f97316;
    --dark: #1c1917;
    --dark-warm: #292524;
    --text: #44403c;
    --text-muted: #78716c;
    --bg: #faf8f6;
    --surface: #ffffff;
    --border: #e7e5e4;
    --shadow-sm: 0 2px 8px rgba(28, 25, 23, 0.06);
    --shadow-md: 0 8px 24px rgba(28, 25, 23, 0.08);
    --shadow-lg: 0 16px 48px rgba(28, 25, 23, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(234, 88, 12, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(234, 88, 12, 0.05) 0%, transparent 50%),
        var(--bg);
}

.container {
    max-width: 960px;
    width: 100%;
    background: var(--surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

/* Hero */
.hero {
    background:
        linear-gradient(145deg, rgba(28, 25, 23, 0.82) 0%, rgba(67, 20, 7, 0.78) 55%, rgba(194, 65, 12, 0.72) 100%),
        url("../images/Monarch CEO visit Mazra.jpeg") center center / cover no-repeat;
    color: white;
    text-align: center;
    padding: 56px 32px 48px;
    position: relative;
    overflow: hidden;
}

.hero > * {
    position: relative;
    z-index: 1;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    z-index: 2;
}

.profile-img-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
}

.profile-img {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.9);
    object-fit: cover;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.profile-img-wrap::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    opacity: 0.6;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.hero-caption {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent));
    padding: 12px 32px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 4px 24px rgba(249, 115, 22, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    position: relative;
}

.hero-caption::before,
.hero-caption::after {
    content: "✦";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.65rem;
    color: var(--primary-light);
    opacity: 0.9;
}

.hero-caption::before {
    left: 14px;
}

.hero-caption::after {
    right: 14px;
}

.hero .tagline {
    font-size: 1.05rem;
    font-weight: 400;
    opacity: 0.88;
    max-width: 480px;
    margin: 0 auto;
}

/* Content */
.content {
    padding: 48px 40px 40px;
}

.section {
    margin-bottom: 48px;
}

.section:last-child {
    margin-bottom: 0;
}

.section-header {
    margin-bottom: 24px;
}

.section-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 6px;
}

.section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 12px;
}

.section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section p,
.section .lead {
    color: var(--text-muted);
    font-size: 1rem;
}

.section .lead {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Company cards */
.company {
    background: var(--surface);
    padding: 24px 28px;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s;
}

.company:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.company:last-child {
    margin-bottom: 0;
}

.company-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.company-logo-wrap {
    width: 88px;
    height: 88px;
    background: linear-gradient(145deg, #ffffff, var(--primary-light));
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s;
}

.company:hover .company-logo-wrap {
    box-shadow: 0 4px 16px rgba(234, 88, 12, 0.15);
    transform: scale(1.03);
}

.company-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.company-title {
    flex: 1;
    min-width: 0;
}

.company-title h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
    line-height: 1.3;
    position: relative;
    padding-left: 14px;
}

.company-title h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.company .website-link {
    margin-bottom: 16px;
}

.company .website-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.25s, gap 0.25s;
}

.company .website-link a:hover {
    color: var(--primary);
    gap: 10px;
}

.company .website-link a i {
    font-size: 0.9rem;
}

.company .social {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.company .social .social-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    padding: 8px 14px;
    background: var(--dark);
    color: white;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    transition: transform 0.25s, background 0.25s, box-shadow 0.25s;
}

.company .social .social-link i {
    font-size: 1rem;
}

.company .social .social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.company .social .social-link.facebook:hover { background: #1877f2; }
.company .social .social-link.instagram:hover { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.company .social .social-link.linkedin:hover { background: #0a66c2; }
.company .social .social-link.youtube:hover { background: #ff0000; }

/* Contact — Get in Touch */
.contact-panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 28px;
    transition: background 0.25s;
}

.contact-row:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.contact-row:hover {
    background: var(--bg);
}

.contact-row-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-row-body {
    flex: 1;
    min-width: 0;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 6px;
    line-height: 1.2;
}

.contact-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin: 0;
    line-height: 1.4;
}

.contact-line a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.25s;
    white-space: nowrap;
}

.contact-line a:hover {
    color: var(--primary);
}

.contact-line-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.contact-sep {
    color: var(--text-muted);
    font-weight: 400;
    user-select: none;
}

.contact-line-emails,
.contact-line-phones {
    gap: 10px;
}

.contact-email-group,
.contact-phone-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.25s;
}

.contact-email-group:hover,
.contact-phone-group:hover {
    color: var(--primary);
}

.contact-inline-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    font-size: 14px;
    line-height: 1;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-inline-icon-wa {
    color: #25d366;
    font-size: 14px;
}

.contact-wa-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--dark);
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.25s;
}

.contact-wa-group:hover {
    color: #128c7e;
}

.contact-wa-group:hover .contact-inline-icon-wa {
    color: #128c7e;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px 32px;
    background: var(--dark);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 16px;
    }

    .hero {
        padding: 40px 20px 36px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-caption {
        font-size: 0.85rem;
        letter-spacing: 0.08em;
        padding: 10px 28px;
    }

    .hero-caption::before {
        left: 10px;
    }

    .hero-caption::after {
        right: 10px;
    }

    .content {
        padding: 32px 24px 28px;
    }

    .company-header {
        gap: 16px;
    }

    .company-logo-wrap {
        width: 72px;
        height: 72px;
        padding: 8px;
    }

    .company-title h3 {
        font-size: 1.1rem;
    }

    .company {
        padding: 20px;
    }

    .company .social .social-link span {
        display: none;
    }

    .company .social .social-link {
        padding: 10px 12px;
    }

    .contact-row {
        padding: 18px 20px;
        gap: 16px;
        align-items: flex-start;
    }

    .contact-row-body {
        text-align: left;
        width: 100%;
    }

    .contact-label {
        text-align: left;
    }

    .contact-line {
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .contact-line .contact-sep {
        display: none;
    }

    .contact-row-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .contact-line a {
        font-size: 0.88rem;
        white-space: normal;
        text-align: left;
    }

    .contact-email-group,
    .contact-phone-group,
    .contact-wa-group {
        white-space: normal;
        justify-content: flex-start;
        width: 100%;
        text-align: left;
    }

    .contact-line-text {
        font-size: 0.88rem;
        text-align: left;
    }
}
