@import url('https://cdn.jsdelivr.net/gh/rastikerdar/iran-sans-x-font@v3.0.0/dist/font-face.css');
 :root {
    --navy: #1a2d5a;
    --navy-dark: #0f1e3d;
    --navy-light: #2a4080;
    --gold: #b8922a;
    --gold-light: #d4aa4a;
    --gold-pale: #f0e0b0;
    --cream: #f5f0e8;
    --white: #ffffff;
    --text-dark: #1a2d5a;
    --text-mid: #4a5a7a;
    --text-light: #8a96aa;
    --shadow: rgba(26, 45, 90, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IRANSansX', 'Vazirmatn', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
    direction: rtl;
}


/* ===== SCROLLBAR ===== */

 ::-webkit-scrollbar {
    width: 6px;
}

 ::-webkit-scrollbar-track {
    background: var(--cream);
}

 ::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}


/* ===== NAVBAR ===== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(26, 45, 90, 0.97);
    backdrop-filter: blur(12px);
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 44px;
    filter: brightness(0) invert(1);
}

.nav-logo-text {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-logo-text span {
    color: var(--gold-light);
}

.nav-links {
    display: flex;
    gap: 8px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 8px;
    transition: all 0.25s;
    position: relative;
}

.nav-links a:hover {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
    color: var(--gold-light);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    padding: 9px 22px !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(184, 146, 42, 0.4);
}


/* ===== HERO ===== */

#home {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 146, 42, 0.12) 0%, transparent 70%);
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: -150px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: 10%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    right: 5%;
    background: radial-gradient(circle, rgba(184, 146, 42, 0.08) 0%, transparent 70%);
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    animation: fadeInRight 1s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 146, 42, 0.15);
    border: 1px solid rgba(184, 146, 42, 0.4);
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}

.hero-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--gold-light);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--gold-light);
    position: relative;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.9;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(184, 146, 42, 0.35);
    font-family: inherit;
    cursor: pointer;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 146, 42, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    font-family: inherit;
    cursor: pointer;
}

.btn-outline:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold-light);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 4px;
    display: block;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInLeft 1s ease forwards;
}

.hero-logo-wrap {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-logo-wrap::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(184, 146, 42, 0.3), transparent, rgba(184, 146, 42, 0.1));
    pointer-events: none;
}

.hero-logo-wrap img {
    width: 220px;
    border-radius: 15px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.fc-1 {
    bottom: -20px;
    right: -30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fc-1 .fc-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.fc-1 .fc-text span:first-child {
    font-size: 0.7rem;
    color: var(--text-light);
    display: block;
}

.fc-1 .fc-text span:last-child {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.fc-2 {
    top: -15px;
    left: -25px;
}

.fc-2 .fc-title {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-bottom: 6px;
}

.fc-2 .fc-badges {
    display: flex;
    gap: 5px;
}

.fc-2 .badge {
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 600;
}

.badge-navy {
    background: var(--navy);
    color: white;
}

.badge-gold {
    background: var(--gold);
    color: white;
}

.badge-light {
    background: var(--cream);
    color: var(--navy);
    border: 1px solid var(--gold-pale);
}


/* ===== SECTIONS COMMON ===== */

.section {
    padding: 100px 5%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-tag::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 560px;
}


/* ===== PRODUCTS ===== */

#products {
    background: var(--white);
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 30px;
    flex-wrap: wrap;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid transparent;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-pale);
    box-shadow: 0 20px 50px rgba(26, 45, 90, 0.12);
}

.product-card-top {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.product-card-top::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.08;
}

.pc-navy .product-card-top {
    background: var(--navy);
}

.pc-gold .product-card-top {
    background: linear-gradient(135deg, #8a6a1a, var(--gold));
}

.pc-mix .product-card-top {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.pc-light .product-card-top {
    background: linear-gradient(135deg, var(--gold-pale), #e8d8a8);
}

.pc-dark .product-card-top {
    background: linear-gradient(135deg, var(--navy-dark), #2a3a6a);
}

.pc-warm .product-card-top {
    background: linear-gradient(135deg, #c4a050, #a07828);
}

.product-card-body {
    padding: 22px 24px 26px;
}

.product-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.product-card-desc {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 16px;
}

.product-card-link {
    font-size: 0.82rem;
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.2s;
}

.product-card-link:hover {
    gap: 10px;
}


/* ===== WHY US ===== */

#why {
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-visual {
    position: relative;
}

.why-main-box {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 28px;
    padding: 50px 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.why-main-box::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(184, 146, 42, 0.2), transparent 70%);
}

.why-main-box::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
}

.why-number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--gold-light);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.why-number-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 8px;
    margin-bottom: 20px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.why-number-desc {
    font-size: 0.9rem;
    opacity: 0.65;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.why-mini-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

.why-mini-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(26, 45, 90, 0.07);
    transition: all 0.25s;
}

.why-mini-card:hover {
    border-color: var(--gold-pale);
    box-shadow: 0 8px 25px var(--shadow);
    transform: translateY(-3px);
}

.wmc-icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.wmc-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.wmc-desc {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.5;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.25s;
}

.feature-row:hover {
    border-color: var(--gold-pale);
    box-shadow: 0 8px 25px var(--shadow);
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 5px;
}

.feature-desc {
    font-size: 0.83rem;
    color: var(--text-mid);
    line-height: 1.6;
}


/* ===== ABOUT ===== */

#about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

.about-image-stack {
    position: relative;
    height: 440px;
}

.about-box-main {
    position: absolute;
    width: 75%;
    height: 340px;
    background: linear-gradient(145deg, var(--navy), var(--navy-light));
    border-radius: 24px;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    box-shadow: 0 20px 50px rgba(26, 45, 90, 0.25);
    overflow: hidden;
}

.about-box-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-box-accent {
    position: absolute;
    width: 55%;
    height: 200px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 20px;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(184, 146, 42, 0.3);
}

.about-box-accent .acc-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.about-box-accent .acc-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin-top: 6px;
}

.about-content {}

.about-text {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 36px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--cream);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--navy);
}

.value-item::before {
    content: '✓';
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
}


/* ===== CONTACT ===== */

#contact {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info {}

.contact-info .section-title {
    color: white;
}

.contact-info .section-desc {
    color: rgba(255, 255, 255, 0.65);
}

.contact-items {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.25s;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(184, 146, 42, 0.4);
}

.ci-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.ci-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 3px;
}

.ci-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.contact-form-wrap {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 13px 16px;
    color: white;
    font-size: 0.9rem;
    font-family: inherit;
    direction: rtl;
    transition: border-color 0.25s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--navy);
    color: white;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
    padding: 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(184, 146, 42, 0.35);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 146, 42, 0.5);
}

.form-success {
    display: none;
    text-align: center;
    padding: 20px;
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 600;
}


/* ===== FOOTER ===== */

footer {
    background: var(--navy-dark);
    padding: 50px 5% 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    margin-bottom: 30px;
}

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer-logo-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
}

.footer-logo-name span {
    color: var(--gold-light);
}

.footer-bio {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    max-width: 300px;
}

.footer-col-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: white;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    text-decoration: none;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-copy span {
    color: var(--gold-light);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.25s;
    text-decoration: none;
    cursor: pointer;
}

.social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}


/* ===== ANIMATIONS ===== */

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ===== MOBILE MENU ===== */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--navy-dark);
        flex-direction: column;
        padding: 20px;
        gap: 6px;
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.3s;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
    }
    .nav-links a {
        padding: 12px 20px;
        width: 100%;
    }
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 5%;
    }
    .hero-visual {
        order: -1;
    }
    .hero-logo-wrap {
        width: 220px;
        height: 220px;
    }
    .hero-logo-wrap img {
        width: 150px;
    }
    .fc-1,
    .fc-2 {
        display: none;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .section-desc {
        max-width: 100%;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-image-stack {
        height: 260px;
        margin-bottom: 20px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .why-mini-cards {
        grid-template-columns: 1fr;
    }
    .about-values {
        grid-template-columns: 1fr;
    }
}