* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    overflow-x: hidden;
    color: #1d1d1f;
    background-color: #f5f5f7;
}

.nav {
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: saturate(180%) blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    height: 44px;
}

.nav-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 22px;
}

.nav-logo {
    color: #f5f5f7;
    font-size: 22px;
    font-weight: 300;
}

.nav-items {
    display: flex;
}

.nav-item {
    color: #f5f5f7;
    font-size: 14px;
    margin-left: 30px;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-item:hover {
    opacity: 1;
}


.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background-color: #f5f5f7;
    margin: 4px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}


.nav-toggle.open .nav-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #000;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('media/general/bg1.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.7;
    transition: transform 0.5s ease-out;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
    color: white;
}

.hero h1 {
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 980px;
    padding: 12px 22px;
    font-size: 17px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 20px;
}

.section-content {
    max-width: 1200px;
    width: 100%;
    z-index: 2;
}

.section h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    text-align: center;
}

.section p {
    font-size: 21px;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.light {
    background-color: #fff;
    color: #1d1d1f;
}

.dark {
    background: linear-gradient(135deg, #1d1d1f, #000000);
    color: #f5f5f7;
    background: url('media/general/FUF04769.jpg') no-repeat center center;
}

.gradient {
    background: linear-gradient(135deg, #1d1d1f, #333);
    color: white;
}


.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    aspect-ratio: 3/2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.gallery-item p {
    font-size: 14px;
    margin: 0;
    text-align: left;
}


.fullscreen-gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.fullscreen-image {
    max-width: 90%;
    max-height: 90vh;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.close-gallery {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 1001;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.prev-image {
    left: 30px;
}

.next-image {
    right: 30px;
}


.category-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-tab {
    background: none;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s;
    color: #1d1d1f;
}

.category-tab.active {
    background-color: #1d1d1f;
    color: white;
}

.category-tab:hover:not(.active) {
    background-color: rgba(0, 0, 0, 0.05);
}


.about-container {
    display: flex;
    align-items: stretch;  
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.about-image img {
    width: 100%;
    height: 100%;          
    object-fit: cover;     
    display: block;
}

.about-text {
    flex: 1;
    min-width: 300px;

    background-color: rgba(27, 64, 74, 0.382);
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    padding: 12px 22px;
    font-size: 17px;
    font-weight: 400;

    transition: all 0.3s;
    backdrop-filter: blur(10px);

    display: flex;              
    flex-direction: column;     
}

.about-text p {
    text-align: left;
    font-size: 18px;
    line-height: 1.4;
}


.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #1d1d1f;
    outline: none;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background-color: #1d1d1f;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: block;
    width: 100%;
}

.submit-btn:hover {
    background-color: #333;
}


footer {
    background-color: #1d1d1f;
    color: #f5f5f7;
    padding: 60px 20px;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin: 0 10px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

footer p {
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.category-logos {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.category-logo {
    background: none;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-size: 24px;
    border-radius: 30px;
    transition: all 0.3s;
    color: #1d1d1f;
}


@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 20px;
    }

    .section h2 {
        font-size: 36px;
    }

    .section p {
        font-size: 18px;
    }

    .gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .about-container {
        flex-direction: column;
    }


    .nav-container {
        padding: 0 16px;
    }


    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-left: auto;
    }


    .nav-items {
        position: absolute;
        top: 44px; 
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.95);
        display: none;
        flex-direction: column;
        padding: 12px 16px 16px;
        gap: 12px;
    }

    .nav-items.open {
        display: flex;
    }

    .nav-item {
        font-size: 16px;
        padding: 8px 0;
        margin-left: 0;
        border-bottom: 1px solid rgba(245, 245, 247, 0.12);
    }

    .nav-item:last-child {
        border-bottom: none;
    }
}



.service-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.65); 
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1500; 
    padding: 20px;
}

.service-modal-overlay.open {
    display: flex;
}


.service-modal {
    background: rgba(15, 15, 17, 0.95);
    color: #f5f5f7;
    border-radius: 18px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
    max-width: 820px;
    width: 100%;
    padding: 22px 26px 24px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(24px);
}


.service-modal-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: #f5f5f7;
    font-size: 26px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}


.service-modal-content {
    display: flex;
    gap: 22px;
    align-items: stretch;
    margin-top: 12px;
}


.service-modal-text {
    flex: 1.4;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-modal-text h3 {
    font-size: 22px;
    margin-bottom: 4px;
}

.service-modal-text p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
    text-align: left;
}


.service-modal .submit-btn {
    margin-top: 6px;
    width: auto;
    align-self: flex-start;
    padding-inline: 24px;
}


.service-modal-image-wrapper {
    flex: 1;
    max-width: 260px;
    aspect-ratio: 2 / 3;          
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
    background-color: #000;
}

.service-modal-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;           
    object-position: center;
}


@media (max-width: 768px) {
    .service-modal {
        padding: 18px 16px 20px;
    }

    .service-modal-content {
        flex-direction: column-reverse; 
        align-items: center;
    }

    .service-modal-image-wrapper {
        max-width: 220px;
        width: 100%;
    }

    .service-modal-text h3 {
        text-align: center;
    }

    .service-modal-text p {
        text-align: left;
    }

    .service-modal .submit-btn {
        align-self: center;
    }
}

.service-card .overlay {
    opacity: 1;
}


.service-card:hover .overlay {
    opacity: 1;
}




#my-gear {
    background-color: #f5f5f7; 
    color: #1d1d1f;
}

.gear-subtitle {
    font-size: 15px;
    max-width: 620px;
    margin: 0 auto;
    margin-top: -10px;
    margin-bottom: 26px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.65);
}


.gear-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px 20px;
    max-width: 1000px; 
    margin: 0 auto;
}


.gear-item {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}


.gear-icon {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;

    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.82),
        rgba(25, 25, 30, 0.95)
    );
    color: #f5f5f7;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.gear-icon svg,
.gear-icon img {
    width: 18px;
    height: 18px;
    color: #f5f5f7;
}

.gear-icon i {
    font-size: 18px;
}


.gear-main {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gear-name {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
}


.gear-meta {
    display: flex;
    align-items: center;
    gap: 6px;
}

.gear-status {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 999px;
    padding: 3px 9px;
    border: 1px solid transparent;
}


.gear-status-active {
    background-color: rgba(9, 123, 88, 0.12);
    color: #0b5f46;
    border-color: rgba(9, 123, 88, 0.3);
}


.gear-status-inactive {
    background-color: rgba(0, 0, 0, 0.04);
    color: rgba(0, 0, 0, 0.55);
    border-color: rgba(0, 0, 0, 0.08);
}


@media (max-width: 768px) {
    .gear-grid {
        max-width: 100%;
    }

    .gear-item {
        border-radius: 16px;
    }
}

.footer-item {
    color: #f5f5f7;
    font-size: 14px;
    margin: 10px;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}



/* ===========================
   BLOG PAGE
=========================== */

.blog-section {
    padding-top: 120px;
}

.blog-intro {
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.65);
    text-align: center;
}

/* Blog List */
.blog-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Blog Item */
.blog-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 24px;
    align-items: center;

    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Thumbnail */
.blog-thumb {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.blog-content {
    text-align: left;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}

.blog-date {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
}

.blog-excerpt {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.75);
    margin: 0;
}

.blog-content p {
    text-align: left;
}

/* Action */
.blog-action {
    margin-left: 10px;
}

.blog-readmore {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 14px;
    text-decoration: none;
    color: #1d1d1f;
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
}

.blog-readmore:hover {
    background-color: #1d1d1f;
    color: #ffffff;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
    .blog-item {
        grid-template-columns: 80px 1fr auto;
        gap: 14px;
        padding: 14px;
    }

    .blog-thumb {
        width: 80px;
        height: 80px;
        border-radius: 10px;
    }

    .blog-title {
        font-size: 17px;
    }

    .blog-excerpt {
        font-size: 14px;
        line-height: 1.4;
    }

    .blog-readmore {
        padding: 8px 14px;
        font-size: 13px;
    }
}


/* ===========================
   BLOG POST
=========================== */

.blog-post-section {
    padding-top: 120px;
}

.blog-post {
    max-width: 820px;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 60px 60px 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Header */
.blog-post-header {
    margin-bottom: 40px;
    text-align: left;
}

.blog-post-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
}

.blog-post-date {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
}

/* Content */
.blog-post-content {
    text-align: left;
}

.blog-post-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 22px;
    color: rgba(0, 0, 0, 0.85);
}

/* Image block (modular) */
.blog-post-image {
    margin: 40px 0;
    border-radius: 16px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* ===========================
   RELATED POSTS
=========================== */

.blog-post-related {
    margin-top: 70px;
}

.blog-related-title {
    font-size: 26px;
    margin-bottom: 24px;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-related-item {
    text-decoration: none;
    background-color: #f5f5f7;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-related-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.blog-related-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.blog-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-related-content {
    padding: 14px 16px 18px;
    text-align: left;
}

.blog-related-name {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
}

.blog-related-date {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.5);
}

.blog-post-content {
    text-align: left;
}

.blog-post-content p {
    text-align: left;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
    .blog-post {
        padding: 36px 24px 40px;
    }

    .blog-post-title {
        font-size: 30px;
    }

    .blog-post-content p {
        font-size: 16px;
    }

    .blog-related-grid {
        grid-template-columns: 1fr;
    }
}

.nav-item-blog {
    font-weight: 700;
    color: #c7c68b; 
    opacity: 1;
}

.nav-item-blog:hover {
    opacity: 1;
    color: #d1d1b7
}


