/* ============================================================
   ASIF & ASSOCIATES — LARAVEL STYLESHEET
   Theme: Professional Minimalist (White + #f4af1a)
   ============================================================ */
:root {
    --primary: #f4af1a;
    --primary-dk: #d49a00;
    --primary-lt: #ffc942;
    --primary-faint: #fffbf2;
    --dark: #1a1a2e;
    --dark-mid: #2d2d44;
    --bg: #ffffff;
    --bg-alt: #f9fafb;
    --ink: #111827;
    --muted: #4b5563;
    --muted-lt: #9ca3af;
    --border: #e5e7eb;
    --border-dk: #d1d5db;
    --radius: 8px;
    --radius-sm: 4px;
    --radius-lg: 12px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-gold: 0 4px 14px rgba(244, 175, 26, 0.2);
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .2s ease
}

button {
    font-family: var(--font-sans);
    cursor: pointer;
    border: none;
    outline: none;
    background: none
}

img {
    max-width: 100%;
    display: block;
    height: auto
}

ul,
ol {
    list-style: none
}

table {
    border-collapse: collapse;
    width: 100%
}

/* ============================================================
   LAYOUT & UTILS
   ============================================================ */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%
}

.wrap-sm {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%
}

section {
    padding: 80px 0
}

.bg-alt {
    background: var(--bg-alt)
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .7rem;
    font-weight: 600;
    color: var(--primary-dk);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px
}

.eyebrow::before {
    content: '';
    width: 16px;
    height: 2px;
    background: var(--primary)
}

.sec-h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.2
}

.sec-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 40px
}

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: var(--dark);
    font-weight: 600;
    font-size: .9rem;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: all .2s ease;
    text-decoration: none
}

.btn-primary:hover {
    background: var(--primary-dk);
    color: #fff
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--dark);
    color: #fff;
    font-weight: 600;
    font-size: .9rem;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: all .2s ease;
    text-decoration: none
}

.btn-dark:hover {
    background: var(--dark-mid)
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1px solid #d1d5db;
    color: var(--ink);
    font-weight: 500;
    font-size: .9rem;
    padding: 11px 23px;
    border-radius: var(--radius-sm);
    transition: all .2s ease;
    text-decoration: none
}

.btn-outline:hover {
    border-color: var(--dark);
    color: var(--dark);
    background: #f9fafb
}

/* ============================================================
   NAVIGATION (DESKTOP)
   ============================================================ */
.desktop-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: box-shadow .3s ease
}

.desktop-nav.scrolled {
    box-shadow: var(--shadow-sm)
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px
}

.nav-logo img {
    height: 40px;
    width: auto
}

.nav-brand {
    line-height: 1.2
}

.nav-brand strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ink)
}

.nav-brand span {
    display: block;
    font-size: .65rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px
}

.nav-menu a {
    font-size: .9rem;
    font-weight: 500;
    color: var(--muted);
    position: relative
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--ink)
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary)
}

/* ============================================================
   MOBILE BOTTOM NAVIGATION
   ============================================================ */
.mobile-topbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #fff;
    border-bottom: 1px solid var(--border);
    z-index: 900;
    align-items: center;
    padding: 0 5%
}

.mobile-topbar img {
    height: 32px
}

.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65px;
    background: #fff;
    border-top: 1px solid var(--border);
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    padding-bottom: env(safe-area-inset-bottom)
}

.bottom-nav-inner {
    display: flex;
    justify-content: space-around;
    height: 100%;
    align-items: center
}

.bn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    height: 100%;
    color: var(--muted-lt);
    transition: all .2s
}

.bn-item svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.bn-item span {
    font-size: .65rem;
    font-weight: 500;
    display: block
}

.bn-item.active {
    color: var(--primary-dk)
}

.bn-item.active svg {
    stroke: currentColor;
    fill: rgba(244, 175, 26, 0.1)
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    padding: 160px 0 100px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border)
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 24px
}

.hero-p {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.hero-img-box {
    position: relative;
    width: 100%;
    padding-bottom: 100%
}

.hero-img-box img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg)
}

/* ============================================================
   GRID CARDS (Services, Portfolio, Team)
   ============================================================ */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

/* Corporate Card Style (No glassmorphism) */
.corp-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden
}

.corp-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--border-dk);
    transform: translateY(-2px)
}

.corp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border);
    transition: background .3s ease
}

.corp-card:hover::before {
    background: var(--primary)
}

.cc-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-dk)
}

.cc-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5
}

.cc-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ink)
}

.cc-desc {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1
}

.cc-link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto
}

.cc-link:hover {
    color: var(--primary-dk)
}

.cc-link svg {
    width: 16px;
    height: 16px
}

/* Simple Portfolio List */
.port-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px
}

.port-card-icon {
    color: var(--muted-lt)
}

.port-card-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5
}

.port-card-title {
    font-weight: 500;
    font-size: 1rem;
    color: var(--ink)
}

/* Internal Page Hero */
.page-hero {
    background: var(--dark);
    padding: 140px 0 80px;
    text-align: center;
    color: #fff
}

.page-hero .eyebrow {
    color: var(--primary);
    margin-bottom: 16px
}

.page-hero .eyebrow::before {
    background: var(--primary)
}

.page-hero .sec-h2 {
    color: #fff
}

.page-hero .sec-sub {
    color: #9ca3af;
    margin: 0 auto
}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.sd-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    padding: 60px 0
}

.sd-content h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    margin: 32px 0 16px
}

.sd-content p {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px
}

.sd-content ul {
    margin-bottom: 24px
}

.sd-content li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: .95rem;
    color: var(--muted)
}

.sd-content li::before {
    content: '✓';
    color: var(--primary-dk);
    font-weight: 700
}

.sd-sidebar {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    align-self: start
}

.sd-sidebar h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px
}

.sd-sidebar-links a {
    display: block;
    padding: 10px 0;
    font-size: .9rem;
    color: var(--muted);
    border-bottom: 1px solid #e5e7eb
}

.sd-sidebar-links a:hover {
    color: var(--primary-dk);
    padding-left: 8px
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start
}

.contact-info {
    background: var(--dark);
    color: #fff;
    padding: 40px;
    border-radius: var(--radius)
}

.ci-item {
    margin-bottom: 32px
}

.ci-label {
    font-size: .75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px
}

.ci-val {
    font-size: 1.05rem;
    line-height: 1.5;
    color: #e5e7eb
}

.ci-val a {
    color: #e5e7eb
}

.ci-val a:hover {
    color: var(--primary)
}

.form-group {
    margin-bottom: 20px
}

.form-label {
    display: block;
    font-size: .85rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px
}

.form-input {
    width: 100%;
    background: #fff;
    border: 1px solid var(--border-dk);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--ink);
    transition: border .2s
}

.form-input:focus {
    outline: none;
    border-color: var(--dark);
    box-shadow: 0 0 0 1px var(--dark)
}

.form-error {
    font-size: .8rem;
    color: #dc2626;
    margin-top: 6px;
    display: block
}

textarea.form-input {
    min-height: 120px;
    resize: vertical
}

.form-success {
    background: #ecfdf5;
    border: 1px solid #10b981;
    color: #065f46;
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 500
}

.form-error-box {
    background: #fef2f2;
    border: 1px solid #ef4444;
    color: #991b1b;
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 500
}

.honeypot {
    display: none
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    color: #9ca3af;
    padding: 80px 0 40px;
    margin-top: auto
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px
}

.footer-brand strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 16px
}

.footer-h4 {
    font-size: .8rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px
}

.footer-links li {
    margin-bottom: 12px
}

.footer-links a {
    color: #9ca3af
}

.footer-links a:hover {
    color: var(--primary)
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media(max-width:1024px) {

    .grid-3,
    .grid-4 {
        grid-template-columns: repeat(2, 1fr)
    }

    .sd-layout {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

@media(max-width:768px) {
    body {
        padding-bottom: 65px;
        padding-top: 60px
    }

    /* Space for top/bottom nav */
    .desktop-nav {
        display: none
    }

    .mobile-topbar,
    .bottom-nav {
        display: flex
    }

    .hero {
        padding: 60px 0
    }

    .hero-inner {
        grid-template-columns: 1fr
    }

    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center
    }

    section {
        padding: 50px 0
    }

    .page-hero {
        padding: 80px 0 50px
    }
}