/* ============================================================
   KASYS — Modern One-Page Design
   Colors: Navy (primary) + Orange (accent)
   ============================================================ */

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

:root {
    --navy: #0a1e3d;
    --navy-2: #12305c;
    --navy-3: #1b3f74;
    --orange: #f58220;
    --orange-2: #ff9a3c;
    --orange-dark: #d96d10;
    --text: #2b2b2b;
    --text-light: #6b7a90;
    --bg: #ffffff;
    --bg-alt: #f6f8fc;
    --border: #e4ebf5;
    --white: #ffffff;
    --shadow-sm: 0 2px 12px rgba(10, 30, 61, 0.06);
    --shadow-md: 0 8px 30px rgba(10, 30, 61, 0.10);
    --shadow-lg: 0 20px 50px rgba(10, 30, 61, 0.18);
    --radius: 14px;
    --radius-lg: 22px;
    --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

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

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 30, 61, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.35s, box-shadow 0.35s;
}
.header.scrolled {
    background: rgba(10, 30, 61, 0.98);
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform 0.3s;
}
.logo:hover { transform: translateY(-1px); }
.logo img {
    height: 46px;
    width: auto;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text strong {
    color: var(--white);
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: 3.5px;
}
.logo-text small {
    color: #9db2d0;
    font-size: 0.68rem;
    letter-spacing: 0.6px;
    margin-top: 3px;
    font-weight: 400;
}

.nav ul { display: flex; gap: 34px; }
.nav a {
    color: #d0dcee;
    font-size: 0.94rem;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: width 0.35s var(--transition);
}
.nav a:hover { color: var(--white); }
.nav a:hover::after { width: 100%; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.25s;
}
.menu-toggle:hover { background: rgba(255,255,255,0.08); }

/* Header Socials */
.header-socials {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 24px;
    padding-left: 24px;
    border-left: 1px solid rgba(255,255,255,0.12);
}
.header-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    color: #c7d4e8;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.05);
    transition: all 0.3s var(--transition);
}
.header-socials a:hover {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 130, 32, 0.4);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #061428 0%, var(--navy) 45%, var(--navy-2) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(245, 130, 32, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(27, 63, 116, 0.55) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(18, 48, 92, 0.35) 0%, transparent 70%);
    animation: heroPulse 12s ease-in-out infinite alternate;
}
@keyframes heroPulse {
    0% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.08); }
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeUp 1s var(--transition) both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 600;
    padding: 8px 20px;
    border: 1px solid rgba(245, 130, 32, 0.35);
    border-radius: 50px;
    margin-bottom: 24px;
    background: rgba(245, 130, 32, 0.06);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    letter-spacing: 10px;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #b8c9e3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.05;
}

.hero-slogan-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.slogan-line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.hero-slogan {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-style: italic;
    font-weight: 300;
    color: #dbe6f7;
    letter-spacing: 0.5px;
}

.hero-sub {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: #9db2d0;
    margin-bottom: 32px;
    letter-spacing: 0.3px;
}

/* Hero MSIcert Badge */
.hero-msicert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(245, 130, 32, 0.3);
    border-radius: 50px;
    transition: all 0.35s var(--transition);
    flex-wrap: wrap;
    justify-content: center;
}
.hero-msicert:hover {
    background: rgba(245, 130, 32, 0.1);
    border-color: var(--orange);
    transform: translateY(-2px);
}
.hero-msicert img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s;
}
.hero-msicert:hover img {
    opacity: 1;
}
.hero-msicert-text {
    font-size: 0.78rem;
    color: #9db2d0;
    letter-spacing: 0.4px;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    padding: 15px 38px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.3px;
    transition: transform 0.3s var(--transition), box-shadow 0.3s var(--transition);
    box-shadow: 0 10px 28px rgba(245, 130, 32, 0.35);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(245, 130, 32, 0.5);
}
.btn-full { width: 100%; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 38px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.25);
    transition: all 0.3s var(--transition);
    background: rgba(255,255,255,0.04);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-3px);
}

.scroll-down {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.5);
    font-size: 1.2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceDown 2.2s ease-in-out infinite;
    transition: all 0.3s;
    z-index: 3;
}
.scroll-down:hover {
    color: var(--orange);
    border-color: var(--orange);
    background: rgba(245, 130, 32, 0.1);
}
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 110px 0; position: relative; }
.section-alt { background: var(--bg-alt); }

.section-head { text-align: center; margin-bottom: 64px; }

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
    padding: 6px 16px;
    background: rgba(245, 130, 32, 0.08);
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    color: var(--navy);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-sub {
    color: var(--text-light);
    font-size: 1.02rem;
    max-width: 640px;
    margin: 0 auto;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.45s var(--transition), box-shadow 0.45s var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}
.service-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--transition);
}
.service-card:hover .service-img img { transform: scale(1.1); }

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,30,61,0) 40%, rgba(10,30,61,0.7) 100%);
}

.service-icon {
    position: absolute;
    bottom: -28px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 10px 24px rgba(245, 130, 32, 0.4);
    transition: transform 0.4s var(--transition);
}
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-6deg);
}

.service-body { padding: 44px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.service-body h3 {
    color: var(--navy);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
}
.service-body p {
    color: var(--text-light);
    font-size: 0.94rem;
    line-height: 1.8;
}

/* ============================================================
   CUSTOMERS MARQUEE
   ============================================================ */
.customers-marquee {
    overflow: hidden;
    position: relative;
    padding: 30px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}
.customers-track {
    display: flex;
    gap: 36px;
    width: max-content;
    align-items: center;
    animation: scrollLeft 17.5s linear infinite;
}
.customers-track:hover { animation-play-state: paused; }
.customers-track img {
    height: 108px;
    width: auto;
    max-width: 255px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.55);
    transition: filter 0.35s, opacity 0.35s, transform 0.35s;
}
.customers-track img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}
.customers-track .empty-msg {
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 20px;
}
@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   REPUTATION MARQUEE
   ============================================================ */
.reputation-marquee {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.reputation-track {
    display: flex;
    gap: 28px;
    width: max-content;
    align-items: flex-start;
    animation: scrollLeftRep 40s linear infinite;
}
.reputation-track:hover { animation-play-state: paused; }

.reputation-card {
    position: relative;
    width: 260px;
    flex-shrink: 0;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    background: var(--navy);
    border: 1px solid var(--border);
    transition: transform 0.45s var(--transition), box-shadow 0.45s var(--transition);
}
.reputation-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.reputation-card img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    background: var(--navy);
    padding: 10px;
    transition: transform 0.7s var(--transition), opacity 0.4s;
}
.reputation-card:hover img { transform: scale(1.06); opacity: 0.55; }

.reputation-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 50px 16px 18px;
    background: linear-gradient(to top, rgba(10,30,61,0.97) 0%, rgba(10,30,61,0.7) 60%, transparent 100%);
    color: var(--white);
    font-size: 0.88rem;
    text-align: center;
    font-weight: 500;
    line-height: 1.5;
}

.reputation-card::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 14px; right: 14px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.35s, transform 0.35s var(--transition);
}
.reputation-card:hover::after {
    opacity: 1;
    transform: scale(1);
}

@keyframes scrollLeftRep {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-wrap { max-width: 1050px; margin: 0 auto; }

.about-intro {
    text-align: center;
    margin-bottom: 60px;
}
.about-lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--navy);
    line-height: 1.8;
    margin-bottom: 22px;
    font-weight: 400;
}
.about-mission {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--orange-dark);
    font-weight: 600;
    padding: 12px 26px;
    background: rgba(245, 130, 32, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(245, 130, 32, 0.2);
}
.about-mission i { color: var(--orange); }

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.about-card {
    background: var(--white);
    padding: 36px 26px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--transition), box-shadow 0.4s var(--transition), border-color 0.4s;
    text-align: center;
}
.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(245, 130, 32, 0.3);
}
.about-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(10,30,61,0.06), rgba(10,30,61,0.12));
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: background 0.4s, color 0.4s;
}
.about-card:hover .about-card-icon {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
}
.about-card h4 {
    color: var(--navy);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.about-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* About Card as Link */
a.about-card {
    text-decoration: none;
    color: inherit;
    display: block;
}
a.about-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(245, 130, 32, 0.4);
}
a.about-card:hover .about-card-icon {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-form {
    max-width: 780px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px 44px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
    letter-spacing: 0.2px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    background: #fbfcfe;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a8b6c9; }
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.contact-form .btn-primary { margin-top: 6px; }

.form-status {
    margin-top: 18px;
    text-align: center;
    font-weight: 600;
    min-height: 24px;
    font-size: 0.94rem;
}
.form-status.success { color: #1a8f4a; }
.form-status.error { color: #c0392b; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: linear-gradient(180deg, var(--navy) 0%, #061428 100%);
    color: #c7d4e8;
    padding: 70px 0 0;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.4fr 1.6fr;
    gap: 36px;
    padding-bottom: 50px;
}
.footer-logo { height: 56px; margin-bottom: 16px; }
.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    letter-spacing: 3px;
    font-weight: 800;
    margin-bottom: 6px;
}
.footer-company {
    color: #a8b8cf;
    font-size: 0.85rem;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}
.footer-slogan {
    color: var(--orange);
    font-style: italic;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 16px;
}

/* Footer MSIcert */
.footer-msicert {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    padding: 8px 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: all 0.3s var(--transition);
}
.footer-msicert:hover {
    background: rgba(245, 130, 32, 0.12);
    border-color: rgba(245, 130, 32, 0.4);
    transform: translateY(-2px);
}
.footer-msicert img {
    height: 22px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}
.footer-msicert span {
    font-size: 0.78rem;
    color: #a8b8cf;
    letter-spacing: 0.3px;
    font-weight: 500;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.02rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 36px; height: 2px;
    background: var(--orange);
    border-radius: 2px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a {
    color: #c7d4e8;
    font-size: 0.94rem;
    transition: color 0.25s, padding-left 0.25s;
    display: inline-block;
}
.footer-col ul a:hover { color: var(--orange); padding-left: 8px; }
.footer-col p {
    margin-bottom: 12px;
    font-size: 0.94rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-col i {
    color: var(--orange);
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
}

.footer-address {
    display: block !important;
    line-height: 1.8;
    color: #c7d4e8;
    font-size: 0.9rem;
}

.footer-col ul a,
.footer-col p a {
    color: #c7d4e8;
    transition: color 0.25s;
}
.footer-col ul a:hover,
.footer-col p a:hover {
    color: var(--orange);
}

/* Footer Socials */
.footer-socials {
    margin-top: 22px;
}
.footer-socials h4 {
    color: var(--white);
    margin-bottom: 14px;
    font-size: 1rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 0.5px;
}
.footer-socials h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 36px; height: 2px;
    background: var(--orange);
    border-radius: 2px;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    color: #c7d4e8;
    font-size: 1.05rem;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s var(--transition);
}
.social-links a:hover {
    background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(245, 130, 32, 0.4);
}

.footer-map {
    padding-bottom: 50px;
}
.footer-map iframe {
    width: 100%;
    height: 260px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
    filter: grayscale(20%) contrast(1.05);
    transition: filter 0.3s;
}
.footer-map iframe:hover { filter: grayscale(0%) contrast(1); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 22px 0;
    text-align: center;
    font-size: 0.86rem;
    color: #8fa3c0;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6, 20, 40, 0.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    padding: 40px 20px;
    align-items: center;
    justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: zoomIn 0.4s var(--transition);
}
@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 20px; right: 30px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.25s, transform 0.25s;
    z-index: 2001;
}
.lightbox-close:hover { color: var(--orange); transform: rotate(90deg); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom:

/* ============================================================
   FORCE MOBILE FIX
   ============================================================ */
@media screen and (max-width: 900px) {

    /* 1. نمایش دکمه همبرگری */
    .menu-toggle {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: #ffffff !important;
        font-size: 1.5rem !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        z-index: 1100 !important;
        position: relative !important;
    }

    /* 2. مخفی کردن سوشال‌های هدر */
    .header-socials {
        display: none !important;
    }

    /* 3. منو به صورت کشویی از راست */
    .nav {
        position: fixed !important;
        top: 82px !important;
        right: -100% !important;
        left: auto !important;
        width: 280px !important;
        max-width: 85vw !important;
        height: calc(100vh - 82px) !important;
        background: #12305c !important;
        transition: right 0.4s ease !important;
        padding: 30px 24px !important;
        box-shadow: -8px 0 30px rgba(0,0,0,0.35) !important;
        overflow-y: auto !important;
        z-index: 999 !important;
        display: block !important;
    }

    .nav.open {
        right: 0 !important;
    }

    .nav ul {
        display: flex !important;
        flex-direction: column !important;
        gap: 22px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .nav a {
        font-size: 1.05rem !important;
        color: #d0dcee !important;
        display: block !important;
    }

    /* 4. مخفی کردن منوی افقی در موبایل */
    .header-inner {
        flex-wrap: nowrap !important;
        gap: 10px !important;
    }

    /* 5. کوچک کردن لوگو و متن در موبایل */
    .logo img {
        height: 36px !important;
    }
    .logo-text strong {
        font-size: 1.1rem !important;
        letter-spacing: 1.5px !important;
        line-height: 1 !important;
    }
    .logo-text small {
        font-size: 0.55rem !important;
        line-height: 1.2 !important;
        white-space: nowrap !important;
    }
}

@media screen and (max-width: 480px) {
    .logo-text small {
        display: none !important;
    }
}