/* ===== CSS Variables ===== */
:root {
    --primary-color: #918c4b;
    --primary-dark: #7a7a2a;
    --bg-dark: #0d0d0d;
    --bg-darker: #000000;
    --bg-card: #1a1a1a;
    --bg-card-hover: #252525;
    --text-white: #ffffff;
    --text-gray: #999999;
    --text-light: #cccccc;
    --border-color: #333333;
    --font-heading: 'Audiowide', cursive;
    --font-body: 'Poppins', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Section ===== */
.section {
    padding: 80px 0;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--bg-dark);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn-outline:hover {
    background-color: var(--text-white);
    color: var(--bg-dark);
}

.btn-outline-sm {
    padding: 8px 20px;
    font-size: 12px;
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid var(--border-color);
}

.btn-outline-sm:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-light {
    background-color: var(--text-white);
    color: var(--bg-dark);
    border: 2px solid var(--text-white);
}

.btn-light:hover {
    background-color: transparent;
    color: var(--text-white);
}

/* ===== Section Headers ===== */
.section-badge {
    width: 30px;
    height: 15px;
    background-color: var(--primary-color);
    margin-bottom: 15px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title.centered {
    text-align: center;
}

.section-title.centered::before,
.section-title.centered::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 15px;
    background-color: var(--primary-color);
    vertical-align: middle;
    margin: 0 15px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.section-title.centered::after {
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 14px;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-item a {
    color: var(--text-white);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 0;
    position: relative;
}

.nav-item a:hover {
    color: var(--primary-color);
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-item a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-btn {
    color: var(--text-white);
    padding: 8px;
    transition: color 0.3s ease;
}

.icon-btn:hover {
    color: var(--primary-color);
}

.cart-btn {
    position: relative;
    color: var(--text-white);
    cursor: pointer;
}

.cart-btn:hover {
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: var(--bg-dark);
    font-size: 10px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-slide {
    flex: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 120px 0 200px;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
    padding: 0 50px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}

.hero-text {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 14px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-products {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.hero-product-item {
    padding: 20px;
    border-right: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.hero-product-item:last-child {
    border-right: none;
}

.hero-product-item:hover {
    background-color: rgba(145, 140, 75, 0.2);
}

.hero-product-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 4px;
}

.hero-product-item h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 5px;
}

.hero-product-item .price {
    color: var(--primary-color);
    font-size: 14px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--text-white);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* ===== Who We Are Section ===== */
.who-we-are {
    background-color: var(--bg-darker);
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-text {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.quote {
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    font-style: italic;
    color: var(--primary-color);
    margin: 30px 0;
    font-size: 14px;
}

.who-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-left: 2px solid var(--border-color);
    padding-left: 30px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.service-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--border-color);
}

.service-item:hover {
    border-color: var(--primary-color);
    background-color: var(--bg-card-hover);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px;
}

.read-more {
    color: var(--primary-color);
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: var(--text-white);
}

/* ===== Featured Product Section ===== */
.featured-product {
    background-color: var(--bg-dark);
}

.featured-product-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-showcase {
    position: relative;
}

.product-showcase .product-image {
    width: 100%;
    max-width: 500px;
}

.hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

.product-info {
    text-align: left;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
}

.product-pricing {
    margin-bottom: 30px;
}

.old-price {
    color: var(--text-gray);
    text-decoration: line-through;
    font-size: 20px;
    margin-right: 15px;
}

.current-price {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 600;
}

/* ===== Events Section ===== */
.events {
    background-color: var(--bg-darker);
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.event-item {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.event-header:hover {
    background-color: var(--bg-card-hover);
}

.event-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 10px;
}

.event-meta {
    display: flex;
    gap: 25px;
    color: var(--text-gray);
    font-size: 13px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-number {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--primary-color);
    opacity: 0.5;
}

.event-body {
    padding: 0 30px 30px;
    color: var(--text-gray);
    font-size: 14px;
}

.event-images {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.event-images img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    border-radius: 4px;
}

.event-item.collapsed .event-body {
    /*display: none;*/
}

/* ===== Coming Soon Section ===== */
.coming-soon {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.coming-soon-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.watermark {
    font-family: var(--font-heading);
    font-size: 150px;
    color: rgba(145, 140, 75, 0.1);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    text-transform: uppercase;
}

.watermark:first-of-type {
    top: 50px;
}

.watermark.second {
    top: 200px;
}

.play-btn {
    width: 80px;
    height: 80px;
    border: 2px solid var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 24px;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
}

/* ===== Products Section ===== */
.products {
    background-color: var(--bg-darker);
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 50px;
}

.category-item {
    padding: 30px 20px;
    text-align: center;
    background-color: var(--bg-card);
    border-right: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.category-item:last-child {
    border-right: none;
}

.category-item:hover,
.category-item.active {
    background-color: var(--primary-color);
}

.category-item:hover h4,
.category-item.active h4 {
    color: var(--bg-dark);
}

.category-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.category-item:hover .category-icon img,
.category-item.active .category-icon img {
    filter: brightness(0);
}

.category-item h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.product-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--primary-color);
}

.product-card .product-image {
    height: 180px;
    overflow: hidden;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-details {
    padding: 20px;
    text-align: center;
}

.product-details h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
}

.product-details .price {
    color: var(--primary-color);
    font-size: 16px;
    display: block;
    margin-bottom: 15px;
}

.products-cta {
    text-align: center;
}

/* ===== Gallery Section ===== */
.gallery {
    background-color: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item.large {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 12px;
    color: var(--text-gray);
}

/* ===== Training Section ===== */
.training {
    background-color: var(--bg-card);
    background-image: url('https://ext.same-assets.com/1450908548/3988170639.jpeg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.training-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-gray);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.training-info {
    color: var(--text-white);
}

.training-info p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 14px;
}

.phone-number {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.training-features {
    margin-top: 20px;
}

.training-features li {
    padding: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== Pricing Section ===== */
.pricing {
    background-color: var(--bg-darker);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%, 0 10%);
    transition: all 0.3s ease;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
}

.pricing-card:hover,
.pricing-card.featured {
    border-color: var(--primary-color);
    transform: translateY(-10px);
}

.pricing-stars {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 20px;
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 30px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    flex-direction: column;
}

.plan-price .currency {
    font-size: 16px;
    color: var(--text-gray);
}

.plan-price .amount {
    font-size: 48px;
    font-weight: 600;
}

.plan-price .period {
    font-size: 12px;
    color: var(--text-gray);
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.plan-features li:last-child {
    border-bottom: none;
}

/* ===== Threat Management Section ===== */
.threat-management {
    background-color: var(--bg-dark);
}

.threat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.threat-image img {
    width: 100%;
    border-radius: 4px;
}

.threat-content p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 14px;
}

/* ===== News Section ===== */
.news {
    background-color: var(--bg-card);
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.news-card {
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    border-color: var(--primary-color);
}

.news-card.featured .news-image {
    position: relative;
    height: 250px;
}

.news-card.featured .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-tags {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 15px;
    font-size: 11px;
    color: var(--text-gray);
    position: absolute;
    top: 15px;
    left: 15px;
}

.news-card:not(.featured) .news-tags {
    position: static;
    display: inline-block;
    margin-bottom: 10px;
}

.news-card:not(.featured) {
    padding: 25px;
}

.news-content {
    padding: 20px;
}

.news-date {
    color: var(--text-gray);
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}

.news-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}

.news-card p {
    color: var(--text-gray);
    font-size: 13px;
    margin-bottom: 15px;
}

/* ===== Partners Section ===== */
.partners {
    background-color: var(--text-gray);
}

.partners .section-title {
    color: var(--bg-dark);
}

.partners .section-subtitle {
    color: var(--bg-card);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding: 30px;
    background-color: var(--text-white);
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo img {
    max-height: 40px;
    width: auto;
}

/* ===== Newsletter Section ===== */
.newsletter {
    background-color: var(--primary-color);
    padding: 40px 0;
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-icon {
    font-size: 48px;
    color: var(--bg-dark);
}

.newsletter-content {
    flex: 1;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    color: var(--bg-dark);
}

.newsletter-content p {
    color: var(--bg-card);
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    flex: 1;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--bg-dark);
    color: var(--bg-dark);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: var(--bg-card);
}

.newsletter-form input:focus {
    outline: none;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--bg-darker);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 12px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--bg-dark);
}

.footer-news h3,
.footer-products h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
}

.footer-news-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-news-item img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
}

.footer-news-item h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.footer-news-item h4 a:hover {
    color: var(--primary-color);
}

.footer-news-item p {
    color: var(--text-gray);
    font-size: 12px;
    margin-bottom: 5px;
}

.footer-news-item .date {
    color: var(--primary-color);
    font-size: 12px;
}

.footer-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.footer-products-grid a img {
    width: 100%;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.footer-products-grid a:hover img {
    opacity: 0.7;
}

.footer-products p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

/* ===== Copyright ===== */
.copyright {
    background-color: var(--bg-dark);
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
}

.copyright-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: var(--text-gray);
    font-size: 14px;
}

.copyright a {
    color: var(--text-white);
}

.copyright a:hover {
    color: var(--primary-color);
}

.copyright-links {
    display: flex;
    gap: 30px;
}

.copyright-links a {
    color: var(--text-gray);
    font-size: 14px;
}

.copyright-links a:hover {
    color: var(--primary-color);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .nav-list {
        gap: 20px;
    }

    .hero-products {
        grid-template-columns: repeat(2, 1fr);
    }

    .who-we-are-grid,
    .featured-product-grid,
    .training-grid,
    .threat-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-categories,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .header-actions .btn {
        display: none;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-products {
        display: none;
    }

    .section-title {
        font-size: 24px;
    }

    .section-title.centered::before,
    .section-title.centered::after {
        display: none;
    }

    .product-categories,
    .products-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-row: auto;
    }

    .newsletter-inner {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        max-width: none;
        flex-direction: column;
    }

    .copyright-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .watermark {
        font-size: 60px;
    }

    .event-meta {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .who-buttons {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .plan-price {
        width: 100px;
        height: 100px;
    }

    .plan-price .amount {
        font-size: 36px;
    }
}
