/*
Theme Name: Crostars theme
Author: Crostars admin
Version: 1.0
*/

* {
    padding: 0; 
    margin: 0;   
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;  
}

header {
    background-color: black;  
    height: 80px;       
    position: fixed;       
    top: 0;         
    left: 0;          
    width: 100%;       
    z-index: 999;       
}


.logo {
    position: absolute;       
    left: 5vw;                
    top: 50%;                 
    transform: translateY(-50%);  
    height: 50px;    
}


.menu-toggle {
    display: none; 
}


.menu-icon {
    display: none;             
    flex-direction: column;    
    cursor: pointer;           
    position: absolute;
    right: 5vw;               
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;           
}

.menu-icon span {
    width: 25px;              
    height: 3px;             
    background-color: white;  
    margin: 3px 0;          
    transition: 0.3s;      
}

header nav {
    position: absolute;
    right: 5vw;               
    line-height: 80px;         
}

nav ul li a {
    font-size: 16px;
    font-weight: 600;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 10, 30, 0.95);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 160px;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.dropdown-menu a:hover {
    color: #c084fc;
    background: rgba(168, 85, 247, 0.1);
}

nav ul li:last-child a {
    background: linear-gradient(to bottom left, #a855f7, #7c3aed, #6d28d9);
    padding: 8px 20px;
    border-radius: 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.2;
}

nav ul li:last-child a:hover {
    background: linear-gradient(to bottom left, #9333ea, #7c3aed, #6d28d9);
}

nav ul li:last-child a::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 30px;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.1) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    z-index: 2;
    animation: meteor 2s ease-in-out infinite;
}

nav ul li:last-child a:hover::after {
    animation: none;
    opacity: 0;
}

nav ul li:last-child {
    overflow: hidden;
    border-radius: 30px;
}

header ul {
    list-style: none;
}

header li {
    display: inline;     
    margin-left: 4vw;  
}

header a {
    color: white;            
    text-decoration: none;   
    font-size: 14px;
}

header a:hover {
    text-decoration: underline;
}

.banner {
    margin-top: 80px;          
    background-color: #000;
    width: 100%;
    position: relative;     
    margin-bottom:0;   
    padding-bottom:0;
}

.banner img {
    width: 100%;              
    height: auto;             
    display: block;          
}

.banner h1 {
    position: absolute;       
    left: 5vw;               
    bottom: 40px;           
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);  
}

.banner-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 80px;
}

.banner-track {
    display: flex;
    transition: transform 0.6s ease;
}

.banner-track img {
    width: 100%;
    flex-shrink: 0;
    display: block;
}

.banner-track video {
    width: 100%;
    flex-shrink: 0;
    display: block;
    object-fit: cover;
}

.banner-carousel h1 {
    position: absolute;
    bottom: 15%;
    left: 5%;
    transform: none;
    color: #fff;
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    z-index: 5;
    text-align: left;
}

.banner-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 3rem;
    cursor: pointer;
    z-index: 10;
    padding: 20px;
    transition: color 0.3s ease;
    opacity: 1;
}

.banner-btn:hover {
    color: #fff;
    animation: none;
    opacity: 1;
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.b-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.b-dot.active {
    background: #a855f7;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
}

.b-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

main {
    padding: 0 5vw 10px 5vw;  
    background:linear-gradient(to bottom, 
        #000000,
        #1a0a3e,
        #000000
    );
}

main section {
    margin-bottom: 40px;
}

main h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

main p {
    font-size: 16px;
    line-height: 1.6;   
    margin-bottom: 15px;
}

.Crostars,
.C5Drones,
.contact-section {
    background-color:transparent; 
}

.Crostars,
.C5Drones {
    display: flex;     
    align-items: stretch; 
    margin-bottom: 30px;
}

.Crostars {
    padding-top: 60px;
}

.Crostars-image,
.C5Drones-image {
    flex: 1;  
}

.Crostars-image img,
.C5Drones-image img {
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15), 0 0 40px rgba(168, 85, 247, 0.05);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.Crostars-image img:hover,
.C5Drones-image img:hover {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.25), 0 0 50px rgba(168, 85, 247, 0.1);
}

.Crostars-content,
.C5Drones-content {
    flex: 1;               
    color: white;
    padding: 40px 50px;     
    display: flex;
    flex-direction: column;   
    justify-content: center;   
}

.Crostars-content h2,
.C5Drones-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: bold;
}

.Crostars-content p,
.C5Drones-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.more-btn-1,
.more-btn-2 {
    display: inline-block;     
    padding: 12px 35px;
    border: 2px solid white;   
    color: white;
    background: transparent; 
    text-decoration: none;     
    font-size: 16px;
    font-weight: bold;
    align-self: flex-start;    
    border-radius: 20px;      
    transition: background 3s ease, border-color 3s ease, color 2s ease;
}

.more-btn-1:hover,
.more-btn-2:hover {    
    background: linear-gradient(to bottom left, #a855f7, #7c3aed, #6d28d9);
    border-color: #a855f7;
    color: #fff;
    transition: background 0.4s ease, border-color 0.4s ease, color 0.3s ease;
}

.ClientsWall {
    background-image: url(http://47.253.50.149/wp-content/uploads/2026/03/home-page-3.webp); 
    background-size: contain;       
    background-position: center bottom; 
    background-repeat: no-repeat;  
    background-color: transparent; 
    height: 800px;      
    min-height: 400px;        
}

.ClientsWall-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}

.contact-section {
    display: flex;     
    gap: 0;            
    padding: 10px 5vw 10px 5vw;
    background-color: transparent;
    color: white;
}

.form-container {
    flex: 1;               
    padding-right: 60px;  
}

.contact-logo {
    height: 60px;
    margin-bottom: 40px;
}

.form-container p {
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 16px;
    color: #ccc; 
}

.message-btn {
    display: inline-block;
    padding: 12px 36px;
    border: 1px solid #a855f7;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    background: linear-gradient(to bottom left, #a855f7, #7c3aed, #6d28d9);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.message-btn:hover {
    border-color: #7c3aed;
    background: linear-gradient(to bottom left, #9333ea, #7c3aed, #6d28d9);
}

.message-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30px;
    height: 200%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 30%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.1) 70%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(25deg);
    z-index: 2;
    animation: meteor 2s ease-in-out infinite;
}

.message-btn:hover::after {
    animation: none;
    opacity: 0;
}

@keyframes meteor {
    0% {
        left: -60%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}

.site-footer {
    background: linear-gradient(to bottom, #0a0a14, #050508);
    border-top: 1px solid rgba(168, 85, 247, 0.15);
    padding: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5% 40px;
}

.footer-about {
    padding-right: 20px;
    text-align: left;
}

.footer-logo {
    height: 40px;
    margin-bottom: 16px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-about .message-btn {
    font-size: 0.85rem;
    padding: 10px 28px;
}

.footer-col {
    text-align: left;
}

.footer-col h4 {
    color: #c084fc;
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #c084fc;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.4;
    text-align: left;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #c084fc;
}

.footer-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-social a svg {
    width: 16px;
    height: 16px;
}

.footer-social a:hover {
    color: #1CE9FF;
    border-color: #1CE9FF;
    background: linear-gradient(135deg, rgba(28, 233, 255, 0.1), rgba(179, 79, 255, 0.1));
    box-shadow: 0 0 12px rgba(28, 233, 255, 0.3), 0 0 12px rgba(179, 79, 255, 0.15);
    transform: scale(1.15);
}

.footer-authorities {
    text-align: center;
    padding: 30px 5%;
    border-top: 1px solid rgba(168, 85, 247, 0.08);
}

.footer-authorities p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.footer-authorities .authority-logos img {
    max-width: 700px;
    width: 100%;
    opacity: 0.6;
}

.footer-bottom {
    text-align: center;
    padding: 20px 5%;
    border-top: 1px solid rgba(168, 85, 247, 0.08);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.8rem;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media screen and (max-width: 480px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.cookie-bar {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 420px;
    background: rgba(20, 15, 40, 0.95);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 12px;
    padding: 20px 40px 20px 20px;
    z-index: 9998;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-bar.active {
    opacity: 1;
    transform: translateY(0);
}

.cookie-bar.closing {
    opacity: 0;
    transform: translateY(20px);
}

.cookie-bar p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-bar a {
    color: #c084fc;
    text-decoration: none;
}

.cookie-bar a:hover {
    color: #a855f7;
    text-decoration: underline;
}

.cookie-close {
    position: absolute;
    top: 10px;
    right: 14px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cookie-close:hover {
    color: #a855f7;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.cookie-btn {
    padding: 7px 20px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border: none;
}

.cookie-btn-accept,
.cookie-btn-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-accept:hover,
.cookie-btn-reject:hover {
    background: #fff;
    color: #1a1a2e;
    border-color: #fff;
}

@media screen and (max-width: 480px) {   
    .cookie-bar {
        left: 16px;
        right: 16px;
        max-width: none;
        bottom: 16px;
    }
}

@media(max-width: 768px) {
    .menu-icon {
        display: flex;
    }

.Crostars-image img,
    .C5Drones-image img {
        width: 100%;
        height: auto;
    }

    .banner-carousel h1 {
        font-size: 32px;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        background: transparent;
        border: none;
        padding: 0;
        display: none;
        backdrop-filter: none;
        min-width: auto;
    }

    .dropdown:hover .dropdown-menu,
    .dropdown:active .dropdown-menu,
    .dropdown:focus-within .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 12px 30px 12px 50px;
        border-bottom: 1px solid #333;
    }

    header nav {
        position: fixed;           
        top: 80px;              
        right: -100%;         
        width: 250px;           
        height: calc(100vh - 80px);  
        background-color: #1a1a1a;  
        transition: right 0.3s;    
        padding: 20px 0;
        overflow-y: auto;
    }
    
    .menu-toggle:checked ~ nav {
        right: 0;
    }
    
    header ul {
        display: flex;
        flex-direction: column; 
    }
    
    header li {
        display: block;       
        margin: 0;
        padding: 15px 30px;
        border-bottom: 1px solid #333; 
    }
    
    header a {
        font-size: 16px;
    }
    
    .Crostars,
    .C5Drones {
        flex-direction: column; 
    }
    
    .Crostars-content,
    .C5Drones-content {
        padding: 30px 20px;
    }
    
    .Crostars-content h2,
    .C5Drones-content h2 {
        font-size: 28px;
    }
    
    .Crostars-content p,
    .C5Drones-content p {
        font-size: 16px;
    }
    
    .ClientsWall {
        height: 300px;
    }
    
    .ClientsWall-title {
        font-size: 28px;
    }
    
    .contact-section {
        flex-direction: column;  
        padding: 60px 5vw 40px 5vw;
    }
    
    .form-container,
    .contact-info {
        padding-left: 0;
        padding-right: 0;
    }

    .message-btn {
        max-width: 100%;
    }
    
}

@media (max-width: 480px) {
    .logo {
        height: 40px;
    }

    .banner-carousel h1 {
        font-size: 24px;
        bottom: 10%;
    }

    .banner-btn {
        font-size: 2rem;
        padding: 10px;
    }

    .banner-dots {
        bottom: 8px;
    }
    
    .banner h1 {
        font-size: 24px;
        bottom: 15px;
        left: 3vw;
    }
    
    main {
        padding: 40px 3vw;
    }
    
    .Crostars-content,
    .C5Drones-content {
        padding: 20px 15px;
    }
    
    .Crostars-content h2,
    .C5Drones-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .Crostars-content p,
    .C5Drones-content p {
        font-size: 14px;
    }
    
    .more-btn-1,
    .more-btn-2 {
        padding: 10px 25px;
        font-size: 14px;
    }
    
    .ClientsWall {
        height: 200px;
    }
    
    .ClientsWall-title {
        font-size: 24px;
    }
    
    .contact-section {
        padding: 40px 3vw 30px 3vw;
    }
    
    .contact-logo {
        height: 50px;
        margin-bottom: 30px;
    }
    
    .form-container p {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .site-footer {
        padding: 10px 20px;
        margin-top: 0;
        font-size: 12px;
    }

    .footer-about {
        text-align: center;
    }

    .footer-about .message-btn {
        display: inline-block;
    }

    .footer-social {
        justify-content: center;
    }
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
}

.banner-text h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 10px;
}

.banner-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.about-intro {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 5%;
}

.about-intro h2 {
    color: #c084fc;
    font-size: 2rem;
    margin-bottom: 24px;
    text-align: center;
}

.about-intro > p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 50px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #c084fc, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.about-video {
    max-width: 900px;
    margin: 0 auto 0;
    padding: 0 5% 60px;

}

.about-video .video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.about-video .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.timeline-section {
    padding-top: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-section h2 {
    text-align: center;
    color: #c084fc;
    font-size: 2rem;
    margin-bottom: 40px;
}

.timeline-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.timeline-btn {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(168, 85, 247, 0.3);
    background: rgba(30, 20, 60, 0.6);
    color: #c084fc;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-btn:hover {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
    border-color: #a855f7;
}

.timeline-track {
    flex: 1;
    overflow: hidden;
}

.timeline-slider {
    display: flex;
    gap: 28px;
    transition: transform 0.5s ease;
}

.timeline-card {
    flex-shrink: 0;
    width: calc((100% - 56px) / 3);
    background: rgba(30, 20, 60, 0.6);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 12px;
    padding: 28px 24px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.4);
}

.timeline-card .timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 16px;
    margin-bottom: 14px;
}

.timeline-card h3 {
    color: #c084fc;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.timeline-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    line-height: 1.6;
}

.timeline-axis {
    position: relative;
    margin-top: 36px;
    padding: 0 62px;
}

.timeline-line {
    position: absolute;
    top: 10px;
    left: 62px;
    right: 62px;
    height: 2px;
    background: linear-gradient(to right, transparent, #a855f7, #7c3aed, transparent);
}

.timeline-dots {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.timeline-dots .dot {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0;
    position: relative;
    transition: color 0.3s ease;
}

.timeline-dots .dot::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.3);
    margin: 0 auto 6px;
    transition: all 0.3s ease;
}

.timeline-dots .dot.active {
    color: #c084fc;
}

.timeline-dots .dot.active::before {
    background: #a855f7;
    box-shadow: 0 0 8px rgba(168, 85, 247, 0.5);
}

.timeline-dots .dot:hover {
    color: #c084fc;
}

.founder-section {
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 40px;
}

.founder-image {
    flex: 0 0 360px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border: none;
    outline: none;
}

.founder-content {
    flex: 1;
}

.founder-content h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 6px;
}

.founder-title {
    color: #c084fc;
    font-size: 1rem;
    margin-bottom: 24px;
}

.founder-achievements {
    list-style: none;
    padding: 0;
}

.founder-achievements li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid rgba(168, 85, 247, 0.08);
}

.founder-achievements li::before {
    content: '▸';
    color: #a855f7;
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.map-section {
    padding-top: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.map-section h2 {
    text-align: center;
    color: #c084fc;
    font-size: 2rem;
    margin-bottom: 40px;
}

.map-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.map-bg {
    width: 100%;
    display: block;
}

.map-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #a855f7;
    box-shadow: 0 0 6px #a855f7, 0 0 12px rgba(168, 85, 247, 0.4);
    animation: dotPulse 2s ease-in-out infinite;
}

.map-dot.delay1 {
    animation-delay: 0.7s;
}

.map-dot.delay2 {
    animation-delay: 1.4s;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
        box-shadow: 0 0 6px #a855f7, 0 0 12px rgba(168, 85, 247, 0.4);
    }
    50% {
        transform: scale(1.8);
        opacity: 1;
        box-shadow: 0 0 12px #c084fc, 0 0 24px rgba(168, 85, 247, 0.6);
    }
}

.map-scan {
    position: absolute;
    top: 0;
    left: -30%;
    width: 30%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(168, 85, 247, 0.03) 30%,
        rgba(168, 85, 247, 0.08) 50%,
        rgba(168, 85, 247, 0.03) 70%,
        transparent 100%
    );
    animation: mapScan 6s ease-in-out infinite;
}

@keyframes mapScan {
    0% {
        left: -30%;
    }
    100% {
        left: 100%;
    }
}

.awards-section {
    padding-top: 40px;
    overflow: hidden;
}

.awards-section h2 {
    text-align: center;
    color: #c084fc;
    font-size: 2rem;
    margin-bottom: 40px;
}

.awards-track {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.awards-slider {
    display: flex;
    gap: 24px;
    animation: scrollAwards 20s linear infinite;
    width: max-content;
}

.awards-slider img {
    flex-shrink: 0;
    height: 140px;
    width: auto;
    border-radius: 10px;
    border: 1px solid rgba(168, 85, 247, 0.15);
    background: rgba(30, 20, 60, 0.4);
    padding: 10px;
    object-fit: contain;
}

.award-item .media-placeholder {
    height: 100%;
    margin: 0;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-item .media-placeholder p {
    color: rgba(168, 85, 247, 0.5);
    font-size: 0.85rem;
}

@keyframes scrollAwards {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.awards-track:hover .awards-slider {
    animation-play-state: paused;
}

@media screen and (max-width: 768px) {
    .banner-text h1 {
        font-size: 2rem;
    }

    .banner-text p {
        font-size: 1rem;
    }

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .timeline-card {
        width: calc((100% - 28px) / 2);
    }

    .timeline-axis {
        padding: 0 46px;
    }

    .timeline-dots .dot {
        font-size: 0.7rem;
    }

    .founder-section {
        flex-direction: column;
    }

    .founder-image {
        flex: none;
        width: 100%;
        max-width: 360px;
    }
}

@media screen and (max-width: 480px) {
    .about-intro h2,
    .timeline-section h2,
    .awards-section h2 {
        font-size: 1.5rem;
    }

    .timeline-card {
        width: 100%;
    }

    .timeline-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

html {
    scroll-behavior: smooth;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;    
    height: 0;
    border-radius: 12px;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-thumb {
    position: relative;
    width: 100%;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    margin-top: auto;
    outline: none;
}

.video-thumb:focus {
    outline: none;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb:hover {
    opacity: 0.85;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 0, 0.7);
    border-radius: 50%;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.play-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent #fff;
    margin-left: 3px;
}

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
    animation: fadeInBg 0.4s ease forwards;
}

.video-modal.closing {
    animation: fadeOutBg 0.3s ease forwards;
}

.video-modal-content {
    position: relative;
    width: 70%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
}

.video-modal.active .video-modal-content {
    animation: popIn 0.4s ease forwards;
}

.video-modal.closing .video-modal-content {
    animation: popOut 0.3s ease forwards;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes popOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.5);
    }
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.video-modal-close {
    position: absolute;
    top: -45px;
    right: -10px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10000;
    width: 40px;
    height: 40px;
    background: rgba(168, 85, 247, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.video-modal-close:hover {
    background: #a855f7;
}

.side-nav {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(20, 15, 40, 0.9);
    padding: 20px 14px;
    border-radius: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.side-nav a {
    text-decoration: none;
    color: #c084fc;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.side-nav a:hover {
    background: linear-gradient(to bottom left, #a855f7, #7c3aed);
    color: #fff;
    transform: translateX(-5px);
}

.side-nav a.active {
    background: linear-gradient(to bottom left, #a855f7, #7c3aed);
    color: #fff;
}

.side-nav.collapsed {
    padding: 24px 8px;
    right: 8px;
    background: transparent;
    box-shadow: none;
}

.side-nav.collapsed a {
    display: none;
}

.collapse-indicator {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 10px 0;
}

.side-nav.collapsed .collapse-indicator {
    display: flex;
}

.arrow-hint {
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 15px 10px 0;
    border-color: transparent #a855f7 transparent transparent;
    animation: arrowPulse 1.5s ease-in-out infinite;
}

.arrow-hint:nth-child(2) {
    animation-delay: 0.3s;
}

.arrow-hint:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-4px);
    }
}

.side-nav.collapsed:hover {
    padding: 20px 14px;
    right: 20px;
}

.side-nav.collapsed:hover .collapse-indicator {
    display: none;
}

.side-nav.collapsed:hover a {
    display: flex;
}

@media screen and (max-width: 768px) {
    .side-nav {
        position: fixed;
        top: auto;
        bottom: 0;
        right: 0;
        left: 0;
        transform: none;
        flex-direction: row;
        justify-content: space-around;
        border-radius: 0;
        padding: 8px;
        gap: 4px;
    }

    .side-nav a {
        font-size: 10px;
        padding: 8px 6px;
    }

    .collapse-indicator {
        display: none !important;
    }

    .side-nav.collapsed {
        padding: 8px;
        right: 0;
    }

    .side-nav.collapsed a {
        display: flex;
    }
}

.system-section {
    padding: 20px 20px;
    scroll-margin-top: 120px; 
}

.section-alt {
    background-color: rgba(20, 15, 40, 0.6);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.system-section h1 {
    color: #fff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.system-section h2 {
    color: #a855f7;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

.section-intro {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 20px;
}

.system-section h3 {
    color: #c084fc;
    font-size: 1.6rem;
    margin-top: 30px;
    margin-bottom: 40px;
}

.system-section h4 {
    color: #d8b4fe;
    font-size: 1.2rem;
    margin-top: 20px;
    margin-bottom: 40px;
}

.system-section p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 30px;
}

.system-section ul {
    color: #ccc;
    line-height: 2;
    padding-left: 20px;
    margin-bottom: 20px;
}

.system-section li {
    margin-bottom: 4px;
}

.media-placeholder {
    width: 100%;
    height: 400px;
    border: 2px dashed #7c3aed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(124, 58, 237, 0.05);
    margin: 15px 0;
}

.media-placeholder p {
    color: #a855f7;
    font-size: 1rem;
    text-align: center;
}

.media-placeholder-small {
    height: 200px;
    margin: 0 0 20px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-card {
    background-color: rgba(30, 20, 60, 0.6);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
}

.tech-card h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.tech-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.specs-table {
    width: 100%;
    margin: 20px 0 40px;
    border-radius: 10px;
    overflow: hidden;
    border-collapse: collapse;
}

.specs-table thead th {
    background-color: #7c3aed;
    color: #fff;
    padding: 14px 20px;
    text-align: left;
    font-size: 0.95rem;
}

.specs-table tbody td {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    color: #ccc;
    font-size: 0.95rem;
}

.specs-table tbody tr:nth-child(even) {
    background-color: rgba(30, 20, 60, 0.4);
}

.specs-table tbody tr:hover {
    background-color: rgba(168, 85, 247, 0.1);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.pricing-card {
    background-color: rgba(30, 20, 60, 0.6);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.15);
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card .tech-card-img {
    margin-top: auto;
}

.pricing-card:hover {
    transform: scale(1.03);
}

.pricing-card h4 {
    color: #c084fc;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 20px;
}

.pricing-card ul {
    text-align: left;
}

.download-area {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
    padding: 14px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.3);
}

.download-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background-color: rgba(30, 20, 60, 0.6);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(168, 85, 247, 0.15);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card .media-placeholder-small {
    border: none;
    border-radius: 0;
    margin: 0;
    background-color: rgba(124, 58, 237, 0.08);
}

.service-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
}

.service-content {
    padding: 24px;
}

.service-content h4 {
    margin-top: 0;
}

.rental-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.benefit-card {
    background-color: rgba(30, 20, 60, 0.6);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.15);
    text-align: center;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h4 {
    margin-top: 0;
    font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
    .system-section {
        padding: 50px 16px;
    }

    .system-section h2 {
        font-size: 1.8rem;
    }

    .system-section h3 {
        font-size: 1.3rem;
    }

    .page-nav {
        gap: 6px;
    }

    .page-nav a {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .rental-benefits {
        grid-template-columns: 1fr 1fr;
    }

    .media-placeholder {
        height: 250px;
    }

    .specs-table thead th,
    .specs-table tbody td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}


    .banner-subtitle {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.5rem;
            position: absolute;
            top: 80%;
            left: 5%;
            z-index: 2;
    }

@media screen and (max-width: 480px) {
    .system-section h2 {
        font-size: 1.5rem;
    }

    .page-nav {
        top: 50px;
        gap: 4px;
    }

    .page-nav a {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .tech-grid,
    .pricing-cards,
    .services-grid,
    .rental-benefits {
        grid-template-columns: 1fr;
    }

    .media-placeholder {
        height: 180px;
    }

    .media-placeholder-small {
        height: 150px;
    }
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(30, 20, 60, 0.6);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-card h3 {
    color: #c084fc;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-card a {
    color: #c084fc;
    text-decoration: none;
}

.contact-card a:hover {
    color: #a855f7;
    text-decoration: underline;
}

.form-overlay,
.success-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.form-overlay.active,
.success-overlay.active {
    display: flex;
    animation: fadeInBg 0.4s ease forwards;
}

.form-overlay.closing,
.success-overlay.closing {
    animation: fadeOutBg 0.3s ease forwards;
}

@keyframes fadeInBg {
    from { background: rgba(0, 0, 0, 0); }
    to { background: rgba(0, 0, 0, 0.8); }
}

@keyframes fadeOutBg {
    from { background: rgba(0, 0, 0, 0.8); }
    to { background: rgba(0, 0, 0, 0); }
}

.form-modal {
    background: linear-gradient(135deg, #1a1035, #0d0a1a);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 16px;
    padding: 40px;
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
}

.form-overlay.active .form-modal,
.success-overlay.active .success-modal {
    animation: popIn 0.4s ease forwards;
}

.form-overlay.closing .form-modal,
.success-overlay.closing .success-modal {
    animation: popOut 0.3s ease forwards;
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes popOut {
    from { opacity: 1; transform: scale(1) translateY(0); }
    to { opacity: 0; transform: scale(0.8) translateY(20px); }
}

.form-close {
    position: absolute;
    top: 16px;
    right: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10;
}

.form-close:hover {
    color: #a855f7;
}

.form-modal h2 {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 20px;
}

.form-group label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 8px;
    padding: 10px 14px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #a855f7;
}

.form-group textarea {
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 1px;
    transition: opacity 0.3s ease, transform 0.2s ease;
}

.form-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.success-modal {
    background: linear-gradient(135deg, #1a1035, #0d0a1a);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: 16px;
    padding: 50px 40px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
}

.success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #fff;
}

.success-modal h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.success-modal p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.5;
}

.success-modal .form-submit {
    max-width: 200px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-modal {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 480px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

.breadcrumb {
    padding: 30px 5% 20px 1%;
    max-width: 900px;
    margin: 0 auto;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: #c084fc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #a855f7;
}

.archive-breadcrumb {
    padding: 30px 5% 20px 1%;
    max-width: 1200px;
}

.faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5% 60px;
}

.faq-category {
    color: #c084fc;
    font-size: 1.3rem;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.faq-category:first-child {
    margin-top: 10px;
}

.faq-item {
    border: 1px solid rgba(168, 85, 247, 0.12);
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    background: rgba(30, 20, 60, 0.4);
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(168, 85, 247, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(168, 85, 247, 0.06);
}

.faq-question span:first-child {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
    flex: 1;
    padding-right: 16px;
}

.faq-toggle {
    color: #a855f7;
    font-size: 1.5rem;
    font-weight: 300;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(168, 85, 247, 0.3);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.open .faq-toggle {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
    border-color: #a855f7;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 24px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer a {
    color: #c084fc;
    text-decoration: none;
}

.faq-answer a:hover {
    color: #a855f7;
    text-decoration: underline;
}

@media screen and (max-width: 480px) {
    .faq-question {
        padding: 14px 16px;
    }

    .faq-question span:first-child {
        font-size: 0.9rem;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.open .faq-answer {
        padding: 0 16px 16px;
    }
}

.articles-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.articles-page {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.articles-page.active {
    display: grid;
}

.article-card a {
    text-decoration: none;
    display: block;
    background: rgba(30, 20, 60, 0.6);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.article-card a:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.4);
}

.article-thumb {
    height: 180px;
    margin: 0;
    border: none;
    border-radius: 0;
    background: rgba(124, 58, 237, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-thumb p {
    color: rgba(168, 85, 247, 0.5);
}

.article-body {
    padding: 20px;
}

.article-date {
    color: #a855f7;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.article-body h3 {
    color: #fff;
    font-size: 1.05rem;
    margin: 8px 0 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-body p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .articles-page {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .articles-page {
        grid-template-columns: 1fr;
    }
}

.insights-intro {
    text-align: center;
    padding: 40px 5% 20px;
    max-width: 800px;
    margin: 0 auto;
}

.insights-intro p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    line-height: 1.6;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 20px 5% 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.insights-card {
    background: rgba(30, 20, 60, 0.6);
    border: 1px solid rgba(168, 85, 247, 0.15);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.insights-card:hover {
    transform: translateY(-8px);
    border-color: rgba(168, 85, 247, 0.4);
}

.card-thumbnail img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-body h2 {
    color: #c084fc;
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card-body p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.card-link {
    color: #a855f7;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 16px;
    transition: color 0.3s ease;
}

.insights-card:hover .card-link {
    color: #c084fc;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 40px 0 60px;
}

.nav-links a.page-numbers,
.nav-links span.page-numbers {
    color: #fff;
    font-size: 1.2rem;
    padding: 8px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-links a.page-numbers:hover {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
}

.nav-links span.page-numbers.current {
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    color: #fff;
    border-radius: 10px;
}

.nav-links a.prev.page-numbers,
.nav-links a.next.page-numbers {
    color: #fff;
    font-size: 1.2rem;
}

.single-post {
    color: rgba(255, 255, 255, 0.75);
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 5%;
}

.single-post h1 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.single-post .post-date {
    color: #a855f7;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 20px;
}

.single-post .post-content {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.8;
}

.single-post .post-content a {
    color: #c084fc;
    text-decoration: underline;
}

.single-post .post-content a {
    text-decoration-color: currentColor;
}

.single-post .post-content a:hover {
    color: #a855f7;
}

.single-post .post-content p {
    margin-bottom: 20px;
}

.single-post .post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

@media screen and (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.show-intro {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5px 20px 20px;
    text-align: center;
}

.show-intro p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.8;
}

.show-tabs {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.tab-radio {
    display: none;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 30px 0;
    flex-wrap: wrap;         
}

.tab-btn {
    padding: 12px 28px;
    font-size: 1rem;
    color: #999;
    cursor: pointer;              
    border: 1px solid #444;
    border-radius: 30px;         
    transition: all 0.3s ease;  
    user-select: none;           
}

.tab-btn:hover {
    color: #a855f7;
    border-color: #c084fc;
}

#tab-brand:checked ~ .tab-buttons label[for="tab-brand"],
#tab-festival:checked ~ .tab-buttons label[for="tab-festival"],
#tab-personal:checked ~ .tab-buttons label[for="tab-personal"],
#tab-tourist:checked ~ .tab-buttons label[for="tab-tourist"] {
    color: #fff;
    background: linear-gradient(135deg, #a855f7, #7c3aed);
    border-color: #a855f7;
}


.tab-content {
    display: none;       
}

#tab-brand:checked ~ .tab-content-brand,
#tab-festival:checked ~ .tab-content-festival,
#tab-personal:checked ~ .tab-content-personal,
#tab-tourist:checked ~ .tab-content-tourist {
    display: block;     
}

.tab-content h2 {
    text-align: center;
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.tab-description {
    text-align: center;
    color: #999;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.video-card {
    border-radius: 12px;
    overflow: hidden;
    background-color: #1a1a2e;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(215, 112, 219, 0.15);
}

.video-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-thumbnail {
    width: 100%;
    height: 200px;                
    overflow: hidden;
    background-color: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;           
    opacity: 0.8;
    transition: all 0.4s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.1);
    opacity: 1;
}

.video-card h3 {
    color: #e0e0e0;
    font-size: 1rem;
    padding: 14px 16px 4px;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.video-date {
    color: #999;          
    font-size: 0.85rem;        
    font-weight: 400;        
    padding: 5px 16px 0;
    margin: 0;
}

.video-card:hover h3 {
    color: #fff;
}

.video-location {
    color: #777;
    font-size: 0.85rem;
    padding: 5px 16px 16px;
    margin: 0;
}

.case-study-detail {
    color: rgba(255, 255, 255, 0.75);
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 5%;
}

.case-study-detail h1 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.case-study-detail .video-date {
    color: #a855f7;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.case-study-detail .video-location {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.case-study-detail img {
    max-width: 100%;
    height: auto;
}

.single-post .post-content iframe {
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    display: block;
}

.case-study-video {
    max-width: 1000px;
    margin: 0 auto 30px;
    padding: 0;
}

.case-study-video p {
    margin: 0;
}

.case-study-video iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 12px;
    display: block;
}

.case-study-video iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 9 !important;
    border-radius: 12px;
    display: block;
}

.case-study-video figure,
.case-study-video .wp-block-embed,
.case-study-video .wp-block-embed__wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

.case-study-video iframe {
    width: 100% !important;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    display: block;
}

@media screen and (max-width: 768px) {
    .tab-buttons {
        gap: 8px;
        padding: 20px 0;
    }

    .tab-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .tab-content h2 {
        font-size: 1.4rem;
    }

    .video-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
    }

    .video-thumbnail {
        height: 170px;
    }
}

@media screen and (max-width: 480px) {
    .show-intro {
        padding: 20px 16px 10px;
    }

    .tab-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 16px 0;
    }

    .tab-btn {
        padding: 10px 12px;
        font-size: 0.8rem;
        text-align: center;
        border-radius: 20px;
    }

    .tab-content h2 {
        font-size: 1.2rem;
    }

    .tab-description {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .video-thumbnail {
        height: 200px;
    }
}

.article-card .wp-post-image,
.article-card img.attachment-post-thumbnail {
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    height: auto !important;
    object-fit: cover;
    display: block;
}

.article-card a > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    display: block;
}

.article-card .article-body {
    display: flex;
    flex-direction: column;
}

.article-card .article-date {
    order: 3;
    margin-top: 12px;
}

.article-card .article-body h3 {
    order: 1;
    margin-top: 0;
}

.article-card .article-body p {
    order: 2;
}

.article-card .article-body {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
}

.article-card .article-body h3 {
    order: 1;
    margin: 0;
}

.article-card .article-body p {
    order: 2;
    margin: 0;
}

.article-card .article-date {
    order: 3;
    margin: 0;
}

.article-card .card-thumbnail,
.article-card .article-thumb {
    margin-bottom: 0;
}

.article-card a {
    display: flex !important;
    flex-direction: column !important;
}

.article-card .card-thumbnail,
.article-card .article-thumb {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex-shrink: 0;
    height: auto !important;
    display: block;
}

.article-card .card-thumbnail img,
.article-card .article-thumb img,
.article-card .wp-post-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.article-card .article-body {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
}