/*
Theme Name: veksano Group
Theme URI: https://veksano.com/
Author: Majid Seyedmiri
Author URI: https://seyedmiri.com/
Description: A professional WordPress theme designed exclusively for veksano Group.
Version: 1.1.9
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: veksano-group
Tags: law, legal-services, attorney, responsive, iran, professional, business, consultation, rtl-language-support, custom-logo
*/

/* 
This is the main stylesheet for the veksano Group theme.
It provides styles for a professional legal services website in Iran.

/* ─── Design tokens (match frontend/tailwind.config.ts) ─── */
:root {
    --color-green: #015434;
    --color-green-hover: #02492f;
    --color-green-10: rgba(1, 84, 52, 0.1);
    --color-green-15: rgba(1, 84, 52, 0.15);
    --color-green-25: rgba(1, 84, 52, 0.25);
    --color-gold: #cfb997;
    --color-gold-hover: #c6ad85;
    --color-ink: #08231a;
    --color-ink-45: rgba(8, 35, 26, 0.45);
    --color-ink-55: rgba(8, 35, 26, 0.55);
    --color-ink-58: rgba(8, 35, 26, 0.58);
    --color-ink-65: rgba(8, 35, 26, 0.65);
    --color-mist: #eef6f1;
    --color-white: #ffffff;
    --shadow-soft: 0 12px 35px rgba(8, 35, 26, 0.08);
    --shadow-premium: 0 24px 70px rgba(1, 84, 52, 0.13);
    --radius-card: 1.35rem;
    --radius-pill: 9999px;
    --container: min(1180px, calc(100% - 32px));
    --font: "Pinar-VF", "Geeza Pro", "Noto Naskh Arabic", Tahoma, Arial, sans-serif;
    --header-height: 5rem;
    /* Main Next.js site — change for production */
    --site-home: https://veksano.com;
  }
  
  /* ─── Reset & base ─── */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
  }
  
  body {
    margin: 0;
    max-width: 100%;
    overflow-x: clip;
    font-family: var(--font);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-ink);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background:
      radial-gradient(circle at 12% 4%, rgba(207, 185, 151, 0.18), transparent 28rem),
      linear-gradient(180deg, #ffffff 0%, #f8fbf8 52%, #ffffff 100%);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  ::selection {
    background: rgba(207, 185, 151, 0.55);
    color: var(--color-ink);
  }
  
  /* ─── Layout ─── */
  .container {
    width: var(--container);
    margin-inline: auto;
  }
  
  .page-main {
    min-height: calc(100vh - var(--header-height) - 200px);
  }
  
  /* ─── Header ─── */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(18px);
  }
  
  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: var(--header-height);
  }
  
  .site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }
  
  .site-logo img {
    width: 70px;
    height: 70px;
  }
  
  .site-nav {
    display: none;
    align-items: center;
    gap: 1.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-ink-65);
  }
  
  .site-nav a:hover {
    color: var(--color-green);
  }
  
  .site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  @media (min-width: 1024px) {
    .site-nav {
      display: flex;
    }
  }
  
  /* ─── Buttons ─── */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  }
  
  .btn--primary {
    height: 2.5rem;
    padding: 0 1rem;
    font-size: 0.875rem;
    background: var(--color-green);
    color: var(--color-white);
    box-shadow: var(--shadow-soft);
  }
  
  .btn--primary:hover {
    background: var(--color-green-hover);
  }
  
  .btn--outline {
    height: 3rem;
    padding: 0 1.5rem;
    font-size: 0.875rem;
    background: var(--color-white);
    color: var(--color-green);
    border: 1px solid rgba(207, 185, 151, 0.7);
  }
  
  .btn--outline:hover {
    background: var(--color-mist);
  }
  
  .btn--lg {
    height: 3.5rem;
    padding: 0 2rem;
    font-size: 1rem;
  }
  
  .btn--ghost {
    height: 2.5rem;
    padding: 0 1rem;
    font-size: 0.875rem;
    background: transparent;
    color: var(--color-green);
  }
  
  .btn--ghost:hover {
    background: var(--color-mist);
  }
  
  /* ─── Card ─── */
  .card {
    border-radius: var(--radius-card);
    border: 1px solid var(--color-green-10);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
  }
  
  /* ─── Footer ─── */
  .site-footer {
    background: var(--color-ink);
    color: var(--color-white);
    margin-top: 4rem;
  }
  
  .site-footer__inner {
    padding: 3rem 0 2rem;
  }
  
  .site-footer__brand {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
  }
  
  .site-footer__brand-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .site-footer__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
  }
  
  .site-footer__logo-wrap img {
    width: 42px;
    height: 42px;
    filter: brightness(0) invert(1);
  }
  
  .site-footer__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 900;
  }
  
  .site-footer__tagline {
    margin: 0.25rem 0 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
  }
  
  .site-footer__desc {
    margin: 1.25rem 0 0;
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.65);
  }
  
  .site-footer__links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  
  .site-footer__pill {
    display: inline-flex;
    padding: 0.625rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    font-weight: 600;
    transition: border-color 0.2s, color 0.2s;
  }
  
  .site-footer__pill:hover {
    border-color: rgba(207, 185, 151, 0.4);
    color: var(--color-gold);
  }
  
  .site-footer__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    margin-top: 2rem;
  }
  
  .site-footer__grid h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold);
  }
  
  .site-footer__grid ul {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
  }
  
  .site-footer__grid a:hover {
    color: var(--color-gold);
  }
  
  .site-footer__contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .site-footer__contact h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-gold);
  }
  
  .site-footer__contact-list {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
  }
  
  .site-footer__copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
  }
  
  @media (min-width: 1024px) {
    .site-footer__grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  /* ─── Badge / label ─── */
  .label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-green);
  }
  
  /* ─── Visually hidden (a11y) ─── */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
  
