/* ==========================================================
   Naz Essentials Ltd - Website Stylesheet
   ========================================================== */

:root {
    --coral: #E88B8B;
    --coral-light: #F5A8A8;
    --coral-dark: #C96A6A;
    --navy: #1A2B3C;
    --navy-light: #2C3E50;
    --grey-bg: #F7F8FA;
    --grey-line: #E5E7EB;
    --text: #2D3748;
    --text-muted: #6B7280;
    --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.65;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--coral-dark); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--navy); }

img { max-width: 100%; height: auto; display: block; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Header / Navigation ===== */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--grey-line);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1180px;
    margin: 0 auto;
}

.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 50px; }

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--navy);
    font-weight: 500;
    font-size: 15px;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--coral-dark);
    border-bottom-color: var(--coral);
}

.nav-cta {
    background: var(--coral);
    color: var(--white) !important;
    padding: 9px 20px !important;
    border-radius: 6px;
    border: none !important;
    font-weight: 600;
}
.nav-cta:hover { background: var(--coral-dark); color: var(--white) !important; }

/* ===== Hero Sections ===== */
.hero {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFEBEB 100%);
    padding: 90px 0 100px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -50px; right: -50px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(232,139,139,0.18) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}
.hero h1 span { color: var(--coral-dark); }

.hero p.lead {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.hero-stats .stat-num {
    font-size: 28px;
    color: var(--coral-dark);
    font-weight: 700;
    display: block;
}
.hero-stats .stat-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-visual {
    background: var(--white);
    border-radius: 14px;
    padding: 36px;
    box-shadow: 0 20px 50px rgba(26,43,60,0.12);
    position: relative;
}
.hero-visual h3 {
    color: var(--navy);
    font-size: 18px;
    margin-bottom: 18px;
}
.hero-visual ul { list-style: none; }
.hero-visual ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--grey-line);
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}
.hero-visual ul li:last-child { border-bottom: none; }
.hero-visual ul li::before {
    content: "✓";
    color: var(--coral-dark);
    font-weight: 700;
    font-size: 18px;
}

/* Page header (smaller hero for inner pages) */
.page-header {
    background: linear-gradient(135deg, #FFF5F5 0%, #FFEBEB 100%);
    padding: 70px 0 60px;
    text-align: center;
}
.page-header h1 {
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 700;
}
.page-header p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 640px;
    margin: 0 auto;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 13px 26px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}
.btn-primary {
    background: var(--coral);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--coral-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(232,139,139,0.4);
}
.btn-outline {
    border: 2px solid var(--navy);
    color: var(--navy);
    background: transparent;
    padding: 11px 24px;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Section ===== */
section { padding: 80px 0; }
section.alt { background: var(--grey-bg); }

.section-head {
    text-align: center;
    margin-bottom: 56px;
}
.section-head .eyebrow {
    color: var(--coral-dark);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}
.section-head h2 {
    font-size: 36px;
    color: var(--navy);
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: -0.3px;
}
.section-head p {
    color: var(--text-muted);
    font-size: 17px;
    max-width: 660px;
    margin: 0 auto;
}

/* ===== Grids ===== */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ===== Cards ===== */
.card {
    background: var(--white);
    border: 1px solid var(--grey-line);
    border-radius: 10px;
    padding: 32px 28px;
    transition: all 0.25s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(26,43,60,0.1);
    border-color: var(--coral-light);
}
.card .icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-light) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}
.card h3 {
    color: var(--navy);
    font-size: 19px;
    margin-bottom: 10px;
    font-weight: 600;
}
.card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* ===== Process timeline ===== */
.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 26px;
    padding: 30px 0;
    border-bottom: 1px solid var(--grey-line);
    align-items: start;
}
.process-step:last-child { border-bottom: none; }
.process-step .num {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}
.process-step h3 {
    color: var(--navy);
    font-size: 22px;
    margin-bottom: 10px;
}
.process-step p { color: var(--text-muted); }

/* ===== About / two column ===== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.two-col h2 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 18px;
    font-weight: 700;
}
.two-col p { color: var(--text-muted); margin-bottom: 14px; font-size: 16px; }
.two-col ul { padding-left: 20px; color: var(--text-muted); margin-top: 14px; }
.two-col ul li { margin-bottom: 8px; }

.image-block {
    background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
    border-radius: 14px;
    padding: 50px 36px;
    color: var(--white);
    box-shadow: 0 18px 40px rgba(232,139,139,0.3);
}
.image-block h3 { font-size: 24px; margin-bottom: 12px; }
.image-block .quote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.55;
    margin-bottom: 20px;
    opacity: 0.95;
}
.image-block .signature { font-weight: 600; opacity: 0.9; }

/* ===== Contact ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}
.contact-info-card {
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    padding: 38px;
}
.contact-info-card h3 {
    margin-bottom: 22px;
    font-size: 22px;
}
.contact-info-card .info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start;
}
.contact-info-card .info-item .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
    margin-bottom: 4px;
}
.contact-info-card .info-item .value { font-size: 15px; line-height: 1.5; }
.contact-info-card .info-item a { color: var(--coral-light); }
.contact-info-card .info-item a:hover { color: var(--white); }
.contact-info-card .icon-circle {
    width: 38px; height: 38px;
    background: rgba(232,139,139,0.2);
    border: 1px solid var(--coral-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--coral-light);
    font-weight: 700;
}

.contact-form {
    background: var(--grey-bg);
    border-radius: 12px;
    padding: 38px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--grey-line);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(232,139,139,0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ===== CTA strip ===== */
.cta-strip {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}
.cta-strip h2 {
    font-size: 32px;
    margin-bottom: 14px;
    font-weight: 700;
}
.cta-strip p {
    font-size: 17px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 28px;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    padding: 56px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-grid h4 {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-grid ul { list-style: none; }
.footer-grid ul li { margin-bottom: 10px; font-size: 14px; }
.footer-grid ul li a { color: rgba(255,255,255,0.75); }
.footer-grid ul li a:hover { color: var(--coral-light); }
.footer-brand img {
    height: 56px;
    background: var(--white);
    border-radius: 8px;
    padding: 6px 10px;
    margin-bottom: 14px;
}
.footer-brand p { font-size: 14px; line-height: 1.6; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}

/* ===== Stats band ===== */
.stats-band {
    background: var(--navy);
    color: var(--white);
    padding: 50px 0;
}
.stats-band .grid-4 .stat {
    text-align: center;
}
.stats-band .stat-num {
    font-size: 38px;
    font-weight: 700;
    color: var(--coral-light);
    display: block;
}
.stats-band .stat-label {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .hero-grid, .grid-3, .grid-2, .grid-4, .two-col, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero { padding: 60px 0; }
    .hero h1 { font-size: 36px; }
    .nav-links { display: none; }
    .section-head h2 { font-size: 28px; }
    section { padding: 56px 0; }
    .page-header h1 { font-size: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 500px) {
    .hero h1 { font-size: 30px; }
    .hero-stats { grid-template-columns: 1fr; gap: 14px; }
    .hero-visual { padding: 24px; }
    .image-block { padding: 32px 24px; }
}
