 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #000;
            background-color: #fff;
            line-height: 1.6;
        }
        
        a {
            text-decoration: none;
            color: #000;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            background-color: #000;
            color: #fff;
            border: 2px solid #000;
            padding: 12px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background-color: #fff;
            color: #000;
        }
        
        .btn-outline {
            background-color: #fff;
            color: #000;
        }
        
        .btn-outline:hover {
            background-color: #000;
            color: #fff;
        }
        
        section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 60%;
            height: 3px;
            background-color: #000;
            bottom: -10px;
            left: 0;
        }
        
      
        header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff; 
    border-bottom: 2px solid #000000;
    box-shadow: 0 4px 0 rgba(0,0,0,0.05); 
    transition: all 0.3s ease;
}
        
       nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0; 
}
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            letter-spacing: 2px;
        }
        
     
        .nav-links {
            display: flex;
            gap: 30px;
        }
        
        .nav-links a {
            font-weight: 500;
            position: relative;
            padding: 5px 0;
            text-transform:uppercase;
        }
        
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background-color: #000;
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        .nav-links a:hover:after {
            width: 100%;
        }
        

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #000;
            padding: 10px;
            z-index: 1001;
        }
        
        
        #hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-color: #fff;
    background-image: 
        linear-gradient(#f0f0f0 1px, transparent 1px),
        linear-gradient(90deg, #f0f0f0 1px, transparent 1px);
    background-size: 50px 50px;
}
        
      
      .hero-content {
    max-width: 800px;
    z-index: 10;
   box-shadow: 10px 10px 0px #000000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    padding: 40px;
    border: 2px solid #000;
}
        
        .hero-content h1 {
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .hero-content p {
            font-size: 1rem;
            margin-bottom: 40px;
            max-width: 600px;
        }
        
        .hero-btns {
            display: flex;
            gap: 20px;
        }
        
        .hero-title span,
        .hero-subtitle span {
            display: block;
            opacity: 0;
            transform: translateY(24px);
            animation: heroReveal 0.7s ease-out forwards;
        }
        
        .hero-title span:nth-child(1) { animation-delay: 0.1s; }
        .hero-title span:nth-child(2) { animation-delay: 0.2s; }
        .hero-title span:nth-child(3) { animation-delay: 0.3s; }
        
        .hero-subtitle span:nth-child(1) { animation-delay: 0.5s; }
        .hero-subtitle span:nth-child(2) { animation-delay: 0.65s; }
        
        @keyframes heroReveal {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .hero-btns .btn {
            transition: transform 0.15s ease, box-shadow 0.15s ease;
        }
        
        .hero-btns .btn:hover {
            transform: translateY(-2px);
        }
        
        @media (prefers-reduced-motion: reduce) {
            .hero-title span,
            .hero-subtitle span {
                animation: none;
                opacity: 1;
                transform: none;
            }
        }
        
     
        #about {
            padding: 100px 0;
            background-color: #f9f9f9;
            position: relative;
        }
        
        #about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #000, transparent);
        }
        
        #about .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        #about .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        #about .section-title h2 {
            font-size: 3.2rem;
            font-weight: 900;
            margin-bottom: 15px;
            color: #000;
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        
    
        .about-content {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }
        
        @media (min-width: 992px) {
            .about-content {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 60px;
                align-items: start;
            }
        }
        
        .about-text {
            width: 100%;
        }
        
        .about-text p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            line-height: 1.7;
            color: #333;
        }
        
        .about-text strong {
            color: #000;
            font-weight: 800;
        }
        
        .about-features {
            margin: 30px 0 40px;
            padding: 0;
            list-style: none;
            display: grid;
            grid-template-columns: 1fr;
            gap: 25px;
        }
        
        @media (min-width: 768px) {
            .about-features {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }
        
        .about-features li {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background-color: #fff;
            border: 2px solid #000;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .about-features li::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0,0,0,0.05), transparent);
            transition: left 0.7s ease;
        }
        
        .about-features li:hover::before {
            left: 100%;
        }
        
        .about-features li:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 50px;
            height: 50px;
            background-color: #000;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: bold;
            flex-shrink: 0;
            position: relative;
        }
        
        .feature-icon::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .feature-content h4 {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 8px;
            color: #000;
        }
        
        .feature-content p {
            font-size: 1rem;
            color: #666;
            margin: 0;
            font-style: italic;
            line-height: 1.5;
        }
        
        .about-text .btn {
            display: inline-block;
            background-color: #000;
            color: #fff;
            border: 2px solid #000;
            padding: 15px 40px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            margin-top: 20px;
        }
        
        .about-text .btn:hover {
            background-color: #fff;
            color: #000;
        }
        
        .about-image {
            width: 100%;
            height: auto;
            min-height: 300px;
            overflow: hidden;
            border: 2px solid #000;
            position: relative;
        }
        
        @media (min-width: 992px) {
            .about-image {
                height: 500px;
            }
        }
        
        @media (max-width: 991px) {
            .about-image {
                height: 400px;
                order: -1; 
            }
        }
        
        @media (max-width: 768px) {
            .about-image {
                height: 350px;
            }
        }
        
        @media (max-width: 480px) {
            .about-image {
                height: 300px;
            }
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
     
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }
        
        .fade-in.delay-1 {
            animation-delay: 0.2s;
        }
        
        .fade-in.delay-2 {
            animation-delay: 0.4s;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
    
        .services-detailed {
            padding: 100px 0;
            background-color: #fff;
        }
        
        .services-detailed .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .services-detailed .section-title {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .services-detailed .section-title h2 {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #000;
            text-transform: uppercase;
            letter-spacing: -0.5px;
        }
        
        .services-detailed .section-title p {
            font-size: 1.3rem;
            color: #333;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .services-detailed-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 30px;
        }
        
        .service-detailed-card {
            border: 2px solid #000;
            padding: 40px 35px;
            background-color: #fff;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .service-detailed-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.03), transparent);
            transition: left 0.7s ease;
        }
        
        .service-detailed-card:hover::before {
            left: 100%;
        }
        
        .service-detailed-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: #222;
        }
        
        .service-detailed-icon {
            margin-bottom: 25px;
            height: 70px;
            display: flex;
            align-items: center;
        }
        
        .service-detailed-icon .custom-icon {
            width: 60px;
            height: 60px;
            transition: transform 0.3s ease;
        }
        
        .service-detailed-card:hover .service-detailed-icon .custom-icon {
            transform: scale(1.1);
        }
        
        .service-detailed-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #000;
            line-height: 1.3;
        }
        
        .service-detailed-card > p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 30px;
            color: #333;
            flex-grow: 0;
        }
        
        .service-features {
            margin-bottom: 35px;
            flex-grow: 1;
        }
        
        .service-features li {
            margin-bottom: 14px;
            padding-left: 26px;
            position: relative;
            font-size: 1.05rem;
            color: #333;
            line-height: 1.5;
        }
        
        .service-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: #000;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .service-cta {
            margin-top: auto;
            padding-top: 20px;
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .service-link {
            display: inline-flex;
            align-items: center;
            font-weight: 700;
            font-size: 1.05rem;
            color: #000;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            padding: 8px 0;
        }
        
        .service-link i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }
        
        .service-link:hover {
            color: #333;
        }
        
        .service-link:hover i {
            transform: translateX(5px);
        }
        
      
        @media (max-width: 1200px) {
            .services-detailed-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 35px;
            }
        }
        
        @media (max-width: 900px) {
            .services-detailed {
                padding: 80px 0;
            }
            
            .services-detailed .section-title h2 {
                font-size: 2.8rem;
            }
            
            .services-detailed .section-title p {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .services-detailed-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .service-detailed-card {
                padding: 35px 30px;
            }
            
            .services-detailed .section-title h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .services-detailed {
                padding: 60px 0;
            }
            
            .services-detailed .section-title h2 {
                font-size: 2.2rem;
            }
            
            .services-detailed .section-title p {
                font-size: 1.1rem;
            }
            
            .service-detailed-card {
                padding: 30px 25px;
            }
            
            .service-detailed-card h3 {
                font-size: 1.6rem;
            }
            
            .service-detailed-icon {
                height: 60px;
                margin-bottom: 20px;
            }
            
            .service-detailed-icon .custom-icon {
                width: 50px;
                height: 50px;
            }
        }
        
      
.service-note {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa; 
    border-left: 3px solid #000;
    font-size: 0.9rem;
    font-style: italic;
    color: #333;
    border-radius: 4px;
}


.dark-mode .service-note {
    background: #1a1a1a;
    border-left-color: #fff;
    color: #ccc;
}


.services-disclaimer {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: #000;
    border: 2px solid #fff; 
    border-radius: 12px;
    color: #fff;
}

.services-disclaimer h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.disclaimer-item {
    background: #1a1a1a; /* Tamno siva */
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.disclaimer-item:hover {
    border-color: #fff;
    transform: translateY(-2px);
}

.disclaimer-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #fff;
}

.disclaimer-item p {
    font-size: 0.95rem;
    color: #ccc;
    margin: 0;
}

.disclaimer-positive {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.disclaimer-positive li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #fff;
}

.disclaimer-cta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 1.1rem;
}

.disclaimer-cta .inline-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #fff;
    transition: all 0.3s ease;
}

.disclaimer-cta .inline-link:hover {
    color: #ccc;
    border-bottom-color: #ccc;
}

@media (max-width: 768px) {
    .disclaimer-grid {
        grid-template-columns: 1fr;
    }
    
    .services-disclaimer {
        padding: 2rem 1rem;
    }
}


.service-pricing-hint {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.service-pricing-hint strong {
    color: #000;
    font-size: 1.1rem;
}

.see-packages {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.see-packages:hover {
    border-bottom-color: #000;
}


.dark-mode .service-pricing-hint {
    border-top-color: #333;
}

.dark-mode .service-pricing-hint strong {
    color: #fff;
}

.dark-mode .see-packages {
    color: #fff;
}

.dark-mode .see-packages:hover {
    border-bottom-color: #fff;
}
        /* Portfolio sekcija */
        .portfolio {
            padding: 100px 0;
            background-color: #fff;
        }
        
        .portfolio .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .portfolio .section-title {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .portfolio .section-title h2 {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #000;
            text-transform: uppercase;
            letter-spacing: -0.5px;
        }
        
        .portfolio .section-title p {
            font-size: 1.3rem;
            color: #333;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
      
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
     
        .portfolio-item {
            border: 2px solid #000;
            background-color: #fff;
            overflow: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border-color: #222;
        }
        
        .portfolio-img {
            height: 250px;
            overflow: hidden;
            position: relative;
            background-color: #000;
        }
        
        .portfolio-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .portfolio-item:hover .portfolio-img img {
            transform: scale(1.05);
        }
        
        .portfolio-content {
            padding: 30px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .portfolio-content h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #000;
            line-height: 1.3;
        }
        
        .portfolio-content > p {
            font-size: 1.05rem;
            line-height: 1.6;
            color: #333;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
   
        .portfolio-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 25px;
        }
        
        .portfolio-tag {
            background-color: #000;
            color: #fff;
            padding: 6px 12px;
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
    
        .portfolio-btn {
            display: inline-flex;
            align-items: center;
            justify-content: space-between;
            background-color: #000;
            color: #fff;
            padding: 12px 25px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            border: 2px solid #000;
            text-decoration: none;
            margin-top: auto;
        }
        
        .portfolio-btn i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .portfolio-btn:hover {
            background-color: #fff;
            color: #000;
        }
        
        .portfolio-btn:hover i {
            transform: translateX(5px);
        }
        
      
        .portfolio-cta {
            text-align: center;
            margin-top: 40px;
        }
        
        .btn-secondary {
            display: inline-flex;
            align-items: center;
            background-color: #fff;
            color: #000;
            border: 2px solid #000;
            padding: 14px 35px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .btn-secondary i {
            margin-left: 10px;
            transition: transform 0.3s ease;
        }
        
        .btn-secondary:hover {
            background-color: #000;
            color: #fff;
        }
        
        .btn-secondary:hover i {
            transform: translateX(5px);
        }
        
   
        .error {
            text-align: center;
            color: #d32f2f;
            font-size: 1.2rem;
            padding: 30px;
            border: 2px solid #d32f2f;
            grid-column: 1 / -1;
        }

        @media (max-width: 1200px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }
        
        @media (max-width: 900px) {
            .portfolio {
                padding: 80px 0;
            }
            
            .portfolio .section-title h2 {
                font-size: 2.8rem;
            }
            
            .portfolio .section-title p {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .portfolio-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .portfolio-item {
                margin-bottom: 30px;
            }
            
            .portfolio .section-title h2 {
                font-size: 2.5rem;
            }
            
            .portfolio-img {
                height: 220px;
            }
            
            .portfolio-content {
                padding: 25px;
            }
        }
        
        @media (max-width: 480px) {
            .portfolio {
                padding: 60px 0;
            }
            
            .portfolio .section-title h2 {
                font-size: 2.2rem;
            }
            
            .portfolio .section-title p {
                font-size: 1.1rem;
            }
            
            .portfolio-content h3 {
                font-size: 1.4rem;
            }
            
            .portfolio-content > p {
                font-size: 1rem;
            }
            
            .portfolio-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .btn-secondary {
                padding: 12px 25px;
                font-size: 1rem;
            }
        }
        
       
        
     
        .pricing {
            padding: 100px 0;
            background-color: #fff;
            position: relative;
        }
        
        .pricing::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #000, transparent);
        }
        
        .pricing .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        .pricing .section-title {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .pricing .section-title h2 {
            font-size: 3.2rem;
            font-weight: 900;
            margin-bottom: 15px;
            color: #000;
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        
        .pricing .section-title p {
            font-size: 1.3rem;
            color: #333;
            max-width: 700px;
            margin: 15px auto 0;
            line-height: 1.6;
            opacity: 0.9;
        }
        
 
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        

        .pricing-card {
            border: 2px solid #000;
            padding: 0;
            background-color: #fff;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: #222;
        }
        
  
        .pricing-card.featured {
            border-width: 3px;
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }
        
        .pricing-card.featured:hover {
            transform: translateY(-25px);
        }
        

        .pricing-header {
            background-color: #000;
            color: #fff;
            padding: 40px 35px 30px;
            text-align: center;
            position: relative;
        }
        
        .pricing-header::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 20px;
            background-color: #000;
            clip-path: polygon(50% 100%, 0 0, 100% 0);
        }
        
        .pricing-name {
            font-size: 1.8rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .pricing-description {
            font-size: 1rem;
            line-height: 1.5;
            margin-bottom: 20px;
            color: #ccc;
            font-style: italic;
        }
        
        .pricing-price {
            font-size: 3.5rem;
            font-weight: 900;
            margin: 10px 0 5px;
            color: #fff;
        }
        
        .pricing-period {
            font-size: 1rem;
            color: #aaa;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        

        .pricing-card.featured .pricing-header {
            background-color: #000;
            padding: 50px 35px 35px;
        }
        
        .pricing-card.featured .pricing-price {
            font-size: 4rem;
            position: relative;
            display: inline-block;
        }
        
        .pricing-card.featured .pricing-price::after {
            content: '';
            position: absolute;
            right: -35px;
            top: -15px;
            font-size: 1.5rem;
        }
        

        .pricing-features {
            padding: 40px 35px;
            list-style: none;
            margin: 0;
            flex-grow: 1;
        }
        
        .pricing-features li {
            margin-bottom: 16px;
            padding-left: 30px;
            position: relative;
            font-size: 1.05rem;
            line-height: 1.5;
            color: #333;
        }
        
        .pricing-features li:last-child {
            margin-bottom: 0;
        }
        
        .pricing-features li i {
            position: absolute;
            left: 0;
            top: 3px;
            color: #000;
            font-weight: 900;
        }
        

        .pricing-card a.btn {
            margin: 0 35px 35px;
            padding: 18px 30px;
            background-color: #000;
            color: #fff;
            border: 2px solid #000;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 1.1rem;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
        }
        
        .pricing-card a.btn:hover {
            background-color: #fff;
            color: #000;
        }
        
 
        .pricing-card.featured a.btn {
            background-color: #000;
            color: #fff;
            border-width: 3px;
            padding: 20px 30px;
            font-size: 1.2rem;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card.featured a.btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.7s ease;
        }
        
        .pricing-card.featured a.btn:hover::before {
            left: 100%;
        }
        
        .pricing-card.featured a.btn:hover {
            background-color: #fff;
            color: #000;
        }
        

        @media (max-width: 1200px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-card.featured {
                order: -1;
                grid-column: span 2;
                max-width: 500px;
                margin: 0 auto;
            }
        }
        
        @media (max-width: 900px) {
            .pricing {
                padding: 80px 0;
            }
            
            .pricing .section-title h2 {
                font-size: 2.8rem;
            }
            
            .pricing .section-title p {
                font-size: 1.2rem;
            }
            
            .pricing-price {
                font-size: 3rem;
            }
            
            .pricing-card.featured .pricing-price {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .pricing-card.featured {
                order: 0;
                grid-column: span 1;
                transform: translateY(0);
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
            
            .pricing-header {
                padding: 35px 30px 25px;
            }
            
            .pricing-card.featured .pricing-header {
                padding: 40px 30px 30px;
            }
            
            .pricing-features {
                padding: 35px 30px;
            }
            
            .pricing-card a.btn {
                margin: 0 30px 30px;
            }
            
            .pricing .section-title h2 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .pricing {
                padding: 60px 0;
            }
            
            .pricing .section-title h2 {
                font-size: 2.2rem;
            }
            
            .pricing .section-title p {
                font-size: 1.1rem;
            }
            
            .pricing-header {
                padding: 30px 25px 20px;
            }
            
            .pricing-name {
                font-size: 1.6rem;
            }
            
            .pricing-price {
                font-size: 2.8rem;
            }
            
            .pricing-card.featured .pricing-price {
                font-size: 3rem;
            }
            
            .pricing-features {
                padding: 30px 25px;
            }
            
            .pricing-features li {
                font-size: 1rem;
                padding-left: 25px;
            }
            
            .pricing-card a.btn {
                margin: 0 25px 25px;
                padding: 16px 25px;
                font-size: 1rem;
            }
            
            .pricing-card.featured a.btn {
                padding: 18px 25px;
                font-size: 1.1rem;
            }
        }
        
 
        .notes-section {
            padding: 80px 0;
            background-color: #fff;
            position: relative;
        }
        
        .notes-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #000, transparent);
        }
        
        .notes-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .notes-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .notes-header h3 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            color: #000;
            text-transform: uppercase;
            letter-spacing: -0.5px;
            position: relative;
            display: inline-block;
        }
        
        .notes-header h3::after {
            content: '';
            position: absolute;
            right: -50px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(-50%) scale(1); }
            50% { transform: translateY(-50%) scale(1.1); }
        }
        
        .notes-header p {
            font-size: 1.3rem;
            color: #333;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            font-style: italic;
        }
        

        .notes-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            counter-reset: note-counter;
        }
        
        @media (max-width: 992px) {
            .notes-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .notes-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
        }
        

        .note-card {
            border: 2px solid #000;
            padding: 35px 30px;
            background-color: #fff;
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            counter-increment: note-counter;
        }
        
        .note-card::before {
            content: counter(note-counter);
            position: absolute;
            top: -15px;
            left: 20px;
            width: 30px;
            height: 30px;
            background-color: #000;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1.1rem;
            border-radius: 50%;
        }
        
        .note-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: #222;
        }
        
        .note-card-content {
            position: relative;
        }
        
        .note-card-content p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #333;
            margin: 0;
        }
        
        .note-card-content strong {
            color: #000;
            font-weight: 700;
        }
        
        .note-card-content em {
            font-style: italic;
            color: #666;
            display: inline-block;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        

        .note-card {
            opacity: 0;
            transform: translateY(20px);
            animation: slideUp 0.5s ease forwards;
        }
        
        .note-card:nth-child(1) { animation-delay: 0.1s; }
        .note-card:nth-child(2) { animation-delay: 0.2s; }
        .note-card:nth-child(3) { animation-delay: 0.3s; }
        .note-card:nth-child(4) { animation-delay: 0.4s; }
        .note-card:nth-child(5) { animation-delay: 0.5s; }
        .note-card:nth-child(6) { animation-delay: 0.6s; }
        
        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        

        @media (max-width: 900px) {
            .notes-section {
                padding: 70px 0;
            }
            
            .notes-header h3 {
                font-size: 2.2rem;
            }
            
            .notes-header p {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .notes-header h3 {
                font-size: 2rem;
            }
            
            .notes-header p {
                font-size: 1.1rem;
            }
            
            .note-card {
                padding: 30px 25px;
            }
        }
        
        @media (max-width: 480px) {
            .notes-section {
                padding: 60px 0;
            }
            
            .notes-header h3 {
                font-size: 1.8rem;
            }
            
            .notes-header h3::after {
                right: -40px;
                font-size: 1.5rem;
            }
            
            .note-card {
                padding: 25px 20px;
            }
            
            .note-card::before {
                width: 25px;
                height: 25px;
                font-size: 1rem;
            }
            
            .note-card-content p {
                font-size: 1rem;
            }
        }
 
        .quick-faq-cta {
            padding: 60px 0;
            background-color: #000;
            text-align: center;
        }
        
        .quick-faq-cta h2 {
            font-size: 2.5rem;
            color: #fff;
            margin-bottom: 15px;
        }
        
        .quick-faq-cta p {
            font-size: 1.2rem;
            color: #ccc;
            margin-bottom: 25px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .faq-teaser {
            background-color: rgba(255,255,255,0.1);
            padding: 20px;
            margin: 25px 0;
            border-left: 3px solid #fff;
            font-style: italic;
            color: #fff;
        }
        

        .contact {
            padding: 100px 0;
            background-color: #000;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(255,255,255,0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
            animation: floatBackground 15s ease-in-out infinite alternate;
        }
        
        @keyframes floatBackground {
            0% { transform: translate(0, 0); }
            100% { transform: translate(10px, 10px); }
        }
        
        .contact .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        .contact .section-title {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .contact .section-title h2 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 20px;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: -1px;
        }
        
        .contact .section-title p {
            font-size: 1.4rem;
            color: #ccc;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }
        

        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }
        

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            padding: 30px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .contact-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
            transition: left 0.7s ease;
        }
        
        .contact-item:hover::before {
            left: 100%;
        }
        
        .contact-item:hover {
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-5px);
            background-color: rgba(255, 255, 255, 0.08);
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: #000;
            border: 2px solid #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover .contact-icon {
            background-color: #fff;
            transform: scale(1.1);
        }
        
        .contact-icon i {
            font-size: 1.5rem;
            color: #fff;
            transition: all 0.3s ease;
        }
        
        .contact-item:hover .contact-icon i {
            color: #000;
        }
        
        .contact-details h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #fff;
        }
        
        .contact-details p {
            font-size: 1.1rem;
            color: #ccc;
            line-height: 1.5;
            margin: 0;
        }
        

        .contact-form {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 50px 40px;
            backdrop-filter: blur(10px);
        }
        
        .contact-form:hover {
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: #fff;
            font-size: 1.1rem;
        }
        
        .form-control {
            width: 100%;
            padding: 15px 20px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: #fff;
            background-color: rgba(255, 255, 255, 0.1);
            box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
        }
        
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }
        
        .contact-form .btn {
            width: 100%;
            padding: 18px 30px;
            background-color: #fff;
            color: #000;
            border: 2px solid #fff;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .contact-form .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0,0,0,0.2), transparent);
            transition: left 0.7s ease;
        }
        
        .contact-form .btn:hover::before {
            left: 100%;
        }
        
        .contact-form .btn:hover {
            background-color: #000;
            color: #fff;
        }
        

        @media (max-width: 1100px) {
            .contact-content {
                gap: 40px;
            }
            
            .contact-item {
                padding: 25px;
            }
            
            .contact-form {
                padding: 40px 35px;
            }
        }
        
        @media (max-width: 900px) {
            .contact {
                padding: 80px 0;
            }
            
            .contact .section-title h2 {
                font-size: 3rem;
            }
            
            .contact .section-title p {
                font-size: 1.2rem;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
                max-width: 700px;
                margin: 0 auto;
            }
            
            .contact-info {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }
        
        @media (max-width: 768px) {
            .contact .section-title h2 {
                font-size: 2.5rem;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
            }
            
            .contact-item {
                padding: 25px 20px;
            }
            
            .contact-form {
                padding: 35px 30px;
            }
            
            .contact-icon {
                width: 50px;
                height: 50px;
            }
            
            .contact-icon i {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 480px) {
            .contact {
                padding: 60px 0;
            }
            
            .contact .section-title h2 {
                font-size: 2.2rem;
            }
            
            .contact .section-title p {
                font-size: 1.1rem;
            }
            
            .contact-item {
                padding: 20px;
                gap: 20px;
            }
            
            .contact-details h3 {
                font-size: 1.2rem;
            }
            
            .contact-details p {
                font-size: 1rem;
            }
            
            .contact-form {
                padding: 30px 25px;
            }
            
            .form-group {
                margin-bottom: 20px;
            }
            
            .form-control {
                padding: 12px 15px;
            }
            
            .contact-form .btn {
                padding: 16px 25px;
                font-size: 1rem;
            }
        }
        
  
        .cta {
            padding: 120px 0;
            background-color: #000;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.03) 50%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.03) 50%, transparent 52%);
            background-size: 50px 50px;
            animation: movePattern 20s linear infinite;
            opacity: 0.3;
        }
        
        @keyframes movePattern {
            0% { background-position: 0 0; }
            100% { background-position: 50px 50px; }
        }
        

        .cta::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 50%;
            animation: pulse 4s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { 
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.3;
            }
            50% { 
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0.1;
            }
        }
        
        .cta .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }
        
        .cta h2 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 25px;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: -1px;
            line-height: 1.2;
            position: relative;
            display: inline-block;
        }
        
        .cta h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, #fff, transparent);
            animation: scanLine 2s ease-in-out infinite;
        }
        
        @keyframes scanLine {
            0%, 100% { 
                width: 100px;
                opacity: 0.7;
            }
            50% { 
                width: 200px;
                opacity: 1;
            }
        }
        
        .cta p {
            font-size: 1.5rem;
            color: #ccc;
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }
        
        .cta .btn-dark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            background-color: #fff;
            color: #000;
            border: 3px solid #fff;
            padding: 20px 50px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 1.2rem;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .cta .btn-dark::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0,0,0,0.2), transparent);
            transition: left 0.7s ease;
            z-index: -1;
        }
        
        .cta .btn-dark:hover::before {
            left: 100%;
        }
        
        .cta .btn-dark::after {
            content: '🚀';
            position: absolute;
            right: -40px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .cta .btn-dark:hover {
            background-color: #000;
            color: #fff;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
        }
        
        .cta .btn-dark:hover::after {
            right: 20px;
            opacity: 1;
        }
        
 
        @media (max-width: 900px) {
            .cta {
                padding: 100px 0;
            }
            
            .cta h2 {
                font-size: 3rem;
            }
            
            .cta p {
                font-size: 1.3rem;
            }
            
            .cta .btn-dark {
                padding: 18px 40px;
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 768px) {
            .cta h2 {
                font-size: 2.5rem;
            }
            
            .cta p {
                font-size: 1.2rem;
                padding: 0 20px;
            }
            
            .cta::after {
                width: 200px;
                height: 200px;
            }
        }
        
        @media (max-width: 480px) {
            .cta {
                padding: 80px 0;
            }
            
            .cta h2 {
                font-size: 2.2rem;
                padding: 0 15px;
            }
            
            .cta p {
                font-size: 1.1rem;
                margin-bottom: 35px;
            }
            
            .cta .btn-dark {
                padding: 16px 35px;
                font-size: 1rem;
                letter-spacing: 1.5px;
                width: 90%;
                max-width: 300px;
            }
            
            .cta h2::after {
                width: 80px;
            }
            
            @keyframes scanLine {
                0%, 100% { width: 80px; }
                50% { width: 150px; }
            }
        }
        
       
        .main-footer {
            background-color: #000;
            color: #fff;
            padding: 80px 0 30px;
            position: relative;
            overflow: hidden;
        }
        
        .main-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #fff, transparent);
        }
        
        .main-footer .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }
        
        @media (max-width: 992px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px 30px;
            }
        }
        
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }
        
        .footer-column {
            display: flex;
            flex-direction: column;
        }
        
        .footer-column h3 {
            font-size: 1.4rem;
            font-weight: 800;
            margin-bottom: 25px;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #fff;
        }
        
        .footer-column p {
            font-size: 1rem;
            line-height: 1.6;
            color: #ccc;
            margin-bottom: 25px;
        }
        
     
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 10px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: #fff;
            color: #000;
            border: 2px solid #fff;
            border-radius: 50%;
            font-size: 1.2rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
        }
        
        .social-links a:hover {
            background-color: #000;
            color: #fff;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
        }
        
 
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links li:last-child {
            margin-bottom: 0;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 0;
        }
        
        .footer-links a::before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #fff;
            padding-left: 20px;
        }
        
        .footer-links a:hover::before {
            left: 0;
            opacity: 1;
        }
        
        .contact-item2 {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #ccc;
            font-size: 0.95rem;
            line-height: 1.5;
        }
        
        .contact-item2 span {
            display: block;
        }
        
        .contact-item2 strong {
            color: #fff;
            font-weight: 600;
            min-width: 70px;
            display: inline-block;
        }
        
        .footer-column:nth-child(3) .footer-links li strong {
            color: #fff;
            font-weight: 700;
        }
        
        .footer-column:nth-child(3) .footer-links li {
            margin-bottom: 12px;
            line-height: 1.5;
        }
        
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #999;
        }
        
        .copyright p {
            margin: 0;
        }
        
  
        @keyframes slideInRight {
            from {
                transform: translateX(-10px);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }
        
        .footer-links a:hover {
            animation: slideInRight 0.3s ease forwards;
        }
        
  
        @media (max-width: 768px) {
            .main-footer {
                padding: 60px 0 25px;
            }
            
            .footer-content {
                margin-bottom: 40px;
            }
            
            .footer-column h3 {
                font-size: 1.3rem;
                margin-bottom: 20px;
            }
            
            .social-links a {
                width: 40px;
                height: 40px;
                font-size: 1.1rem;
            }
            
            .footer-links a {
                font-size: 0.95rem;
            }
            
            .contact-item2 {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 480px) {
            .main-footer {
                padding: 50px 0 20px;
            }
            
            .footer-content {
                gap: 35px;
            }
            
            .footer-column h3 {
                font-size: 1.2rem;
            }
            
            .social-links {
                gap: 12px;
            }
            
            .social-links a {
                width: 38px;
                height: 38px;
            }
            
            .copyright {
                padding-top: 30px;
                font-size: 0.85rem;
            }
        }
        
   
        .newsletter-section {
            padding: 100px 0;
            background-color: #fff;
            position: relative;
            overflow: hidden;
        }
        
        .newsletter-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #000, transparent);
        }
        
        .newsletter-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #000, transparent);
        }
        
        .newsletter-section .paper-plane {
            position: absolute;
            top: 20%;
            right: 10%;
            font-size: 3rem;
            animation: flyPlane 15s linear infinite;
            opacity: 0.1;
            z-index: 0;
        }
        
        @keyframes flyPlane {
            0% {
                transform: translateX(100px) translateY(-50px) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.1;
            }
            90% {
                opacity: 0.1;
            }
            100% {
                transform: translateX(-100px) translateY(50px) rotate(20deg);
                opacity: 0;
            }
        }
        
        .newsletter-section .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
 
        .newsletter-content {
            text-align: center;
            background-color: #fff;
            border: 2px solid #000;
            padding: 60px 50px;
            position: relative;
            overflow: hidden;
        }
        
        .newsletter-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0,0,0,0.03), transparent);
            transition: left 0.7s ease;
        }
        
        .newsletter-content:hover::before {
            left: 100%;
        }
        
        .newsletter-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .newsletter-content h2 {
            font-size: 2.8rem;
            font-weight: 900;
            margin-bottom: 20px;
            color: #000;
            text-transform: uppercase;
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        
        .newsletter-content > p {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 30px;
            line-height: 1.6;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
      
        .newsletter-benefits {
            list-style: none;
            padding: 0;
            margin: 0 0 40px;
            display: inline-block;
            text-align: left;
        }
        
        .newsletter-benefits li {
            margin-bottom: 15px;
            font-size: 1.1rem;
            color: #333;
            position: relative;
            padding-left: 35px;
        }
        
        .newsletter-benefits li::before {
            content: '🎯';
            position: absolute;
            left: 0;
            top: 0;
            font-size: 1.3rem;
        }
        
        .newsletter-benefits li strong {
            color: #000;
            font-weight: 700;
        }
        
  
        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
        }
        
        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        @media (max-width: 600px) {
            .form-row {
                flex-direction: column;
                gap: 15px;
            }
        }
        
        .form-input {
            flex: 1;
            padding: 16px 20px;
            border: 2px solid #000;
            background-color: #fff;
            color: #000;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #000;
            box-shadow: 0 0 0 3px rgba(0,0,0,0.1);
        }
        
        .form-input::placeholder {
            color: #666;
        }
        
 
        .newsletter-btn {
            width: 100%;
            padding: 18px 30px;
            background-color: #000;
            color: #fff;
            border: 2px solid #000;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .newsletter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.7s ease;
        }
        
        .newsletter-btn:hover::before {
            left: 100%;
        }
        
        .newsletter-btn:hover {
            background-color: #fff;
            color: #000;
        }
        

        .newsletter-note {
            text-align: center;
            margin-top: 20px;
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
        }
        
        .newsletter-note a {
            color: #000;
            text-decoration: underline;
            font-weight: 600;
        }
        
        .newsletter-note a:hover {
            text-decoration: none;
        }
        

        .subscriber-counter {
            margin-top: 30px;
            padding: 15px;
            background-color: #f9f9f9;
            border: 1px solid #000;
            display: inline-block;
            font-size: 0.95rem;
            color: #333;
        }
        
        .subscriber-counter strong {
            color: #000;
            font-weight: 800;
        }
        

        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }
        
        .fade-in-up.delay-1 {
            animation-delay: 0.2s;
        }
        
        .fade-in-up.delay-2 {
            animation-delay: 0.4s;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
   
        @media (max-width: 900px) {
            .newsletter-section {
                padding: 80px 0;
            }
            
            .newsletter-content {
                padding: 50px 40px;
            }
            
            .newsletter-content h2 {
                font-size: 2.4rem;
            }
            
            .newsletter-content > p {
                font-size: 1.2rem;
            }
            
            .newsletter-icon {
                font-size: 3rem;
            }
            
            .paper-plane {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .newsletter-content {
                padding: 40px 30px;
            }
            
            .newsletter-content h2 {
                font-size: 2rem;
            }
            
            .newsletter-content > p {
                font-size: 1.1rem;
            }
            
            .newsletter-benefits li {
                font-size: 1rem;
                padding-left: 30px;
            }
            
            .newsletter-btn {
                padding: 16px 25px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 480px) {
            .newsletter-section {
                padding: 60px 0;
            }
            
            .newsletter-content {
                padding: 35px 25px;
                border-width: 1px;
            }
            
            .newsletter-content h2 {
                font-size: 1.8rem;
            }
            
            .newsletter-icon {
                font-size: 2.5rem;
            }
            
            .form-input {
                padding: 14px 18px;
            }
        }
        

        .developer-log {
            padding: 100px 0;
            background-color: #f9f9f9;
            position: relative;
        }
        
        .developer-log::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #000, transparent);
        }
        
        .developer-log .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
    
        .log-header {
            text-align: center;
            margin-bottom: 70px;
        }
        
        .log-header h2 {
            font-size: 3.2rem;
            font-weight: 900;
            margin-bottom: 20px;
            color: #000;
            text-transform: uppercase;
            letter-spacing: -1px;
            position: relative;
            display: inline-block;
        }
        
        .log-header h2::before {
            content: '📝';
            position: absolute;
            left: -60px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2.5rem;
            animation: write 3s infinite;
        }
        
      
        .log-header p {
            font-size: 1.3rem;
            color: #333;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            font-style: italic;
        }
        
   
        .log-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            counter-reset: log-counter;
        }
        
        @media (min-width: 1200px) {
            .log-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .log-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
        }
        

        .log-card {
            background-color: #fff;
            border: 2px solid #000;
            padding: 35px 30px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .log-card::before {
            content: counter(log-counter);
            counter-increment: log-counter;
            position: absolute;
            top: -10px;
            left: 20px;
            width: 30px;
            height: 30px;
            background-color: #000;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 1rem;
            border-radius: 50%;
            z-index: 2;
        }
        

      
        
        .log-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
           
        }
        
        

        .log-category {
            display: inline-block;
            padding: 6px 15px;
            background-color: #000;
            color: #fff;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            border-radius: 3px;
        }
        

        .log-date {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 15px;
            font-weight: 500;
        }
        

        .log-content {
            flex-grow: 1;
            margin-bottom: 25px;
        }
        
        .log-content h3 {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: #000;
            line-height: 1.4;
        }
        
        .log-content p {
            font-size: 1.05rem;
            line-height: 1.6;
            color: #333;
            margin: 0;
        }
        

        .log-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 20px;
        }
        
        .log-tag {
            display: inline-block;
            padding: 5px 12px;
            background-color: #f5f5f5;
            color: #333;
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .log-tag:hover {
            background-color: #000;
            color: #fff;
        }
        
  
        .log-like {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}
        
        .like-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 1rem;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative; 
    z-index: 2;
}
        .like-btn * {
    pointer-events: none; 
}
        .like-btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px); 
}
        
        .like-btn.liked {
            color: #e0245e;
        }
        
        .like-btn.liked:hover {
            background-color: rgba(224, 36, 94, 0.1);
        }
        
        .like-btn i {
            font-size: 1.2rem;
        }
        
       .like-count {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    position: relative;
    z-index: 2;
}
        .log-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
   
    pointer-events: none; 
    z-index: 1; 
}
   
        .log-read-more {
            color: #000;
            font-weight: 700;
            text-decoration: none;
            font-size: 0.95rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
        }
        
        .log-read-more:hover {
            text-decoration: underline;
            gap: 10px;
        }
        

        .log-cta {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background-color: #fff;
            border: 2px solid #000;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .log-cta p {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: #333;
            line-height: 1.6;
        }
        
        .log-cta .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #000;
            color: #fff;
            border: 2px solid #000;
            padding: 15px 35px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .log-cta .btn:hover {
            background-color: #fff;
            color: #000;
        }
        
  
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }
        
        .log-card {
            animation: fadeInScale 0.5s ease forwards;
            opacity: 0;
        }
        
 
        

        @media (max-width: 900px) {
            .developer-log {
                padding: 80px 0;
            }
            
            .log-header h2 {
                font-size: 2.8rem;
            }
            
            .log-header p {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .log-header h2 {
                font-size: 2.5rem;
            }
            
            .log-header h2::before {
                left: -45px;
                font-size: 2rem;
            }
            
            .log-card {
                padding: 30px 25px;
            }
            
            .log-content h3 {
                font-size: 1.2rem;
            }
        }
        
        @media (max-width: 480px) {
            .developer-log {
                padding: 60px 0;
            }
            
            .log-header h2 {
                font-size: 2.2rem;
            }
            
            .log-header p {
                font-size: 1.1rem;
            }
            
            .log-card {
                padding: 25px 20px;
            }
            
            .log-content p {
                font-size: 1rem;
            }
            
            .log-cta {
                padding: 30px 25px;
            }
            
            .log-cta p {
                font-size: 1.1rem;
            }
        }
        
   
        @media (max-width: 768px) {
      
            .mobile-menu-btn {
                display: block !important;
                position: relative;
                z-index: 1001;
            }
         
            .nav-links {
                position: fixed;
                top: 0;
                left: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: #fff;
                flex-direction: column;
                align-items: flex-start;
                justify-content: flex-start;
                padding: 100px 30px 30px;
                gap: 20px;
                box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
                transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1000;
                overflow-y: auto;
            }
            
      
            .nav-links.active {
                left: 0;
            }
            
           
            .nav-links li {
                width: 100%;
            }
            
            .nav-links a {
                display: block;
                padding: 15px 20px;
                font-size: 1.1rem;
                border-bottom: 1px solid rgba(0,0,0,0.1);
                width: 100%;
            }
            
            .nav-links a:after {
                display: none; 
            }
            
       
            body.menu-open::after {
                content: '';
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: rgba(0,0,0,0.5);
                z-index: 999;
            }
            
         
            body.menu-open {
                overflow: hidden;
            }
            
       
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-btns {
                flex-direction: column;
                width: 100%;
            }
            
            .hero-btns .btn {
                width: 100%;
                text-align: center;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        
   
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 3rem;
            }
            
            .services-detailed-grid,
            .portfolio-grid,
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .about-content,
            .contact-content {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 576px) {
            .services-detailed-grid,
            .portfolio-grid,
            .pricing-grid,
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }
        }
        
        
   
        .tech-stack-section {
            background-color: #fff;
        }
        
        .tech-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 60px;
        }
        
        .tech-category {
            background-color: #fff;
            border: 2px solid #000;
            border-radius: 8px;
            padding: 40px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .tech-category::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.03), transparent);
            transition: left 0.7s ease;
        }
        
        .tech-category:hover::before {
            left: 100%;
        }
        
        .tech-category:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            border-color: #222;
        }
        
        .tech-category h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .tech-category h3 i {
            color: #000;
        }
        
        .tech-items {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .tech-item {
            padding: 8px 16px;
            background-color: #f5f5f5;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .tech-item:hover {
            background-color: #000;
            color: #fff;
            transform: translateY(-2px);
        }
        
    
        .process-section {
            background-color: #f9f9f9;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .process-step {
            text-align: center;
            position: relative;
            padding: 40px 30px;
            background-color: #fff;
            border: 2px solid #000;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .process-step:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background-color: #000;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 25px;
        }
        
        .process-step h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .process-step p {
            color: #333;
            line-height: 1.6;
        }
        
     
        .page-cta {
            padding: 100px 0;
            background-color: #000;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.03) 50%, transparent 52%),
                linear-gradient(-45deg, transparent 48%, rgba(255,255,255,0.03) 50%, transparent 52%);
            background-size: 50px 50px;
            animation: movePattern 20s linear infinite;
            opacity: 0.3;
        }
        
        .page-cta h2 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 25px;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: -1px;
            line-height: 1.2;
            position: relative;
            display: inline-block;
        }
        
        .page-cta p {
            font-size: 1.5rem;
            color: #ccc;
            margin-bottom: 40px;
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }
        
        .page-cta .btn {
            background-color: #fff;
            color: #000;
            border-color: #fff;
            font-weight: 800;
            padding: 18px 40px;
            font-size: 1.1rem;
        }
        
        .page-cta .btn:hover {
            background-color: #000;
            color: #fff;
        }
     .modal-overlay {
    display: none; 
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #fff;
    padding: 2rem;
    border: 3px solid #000;
    max-width: 500px;
    width: 90%;
    box-shadow: 15px 15px 0px #000;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 15px; top: 10px;
    font-size: 30px;
    cursor: pointer;
    font-weight: bold;
}

.form-group { margin-bottom: 1rem; }

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #000;
    font-family: inherit;
    outline: none;
}

.form-group input:focus { background: #f0f0f0; }


#inquiryForm .btn-main {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #000;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border: 3px solid #000;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 10px;
    font-family: inherit; 
}

#inquiryForm .btn-main:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 8px 8px 0px #000;
    transform: translate(-4px, -4px);
}

.breadcrumbs { background:#f8f8f8; padding:10px 0; font-size:0.9rem; }
.breadcrumbs a { color:#111; text-decoration:none; }
.breadcrumbs span { color:#666; }

.btn-faq {
    background-color: #fff !important;
    color: #000 !important;
}

.status-box {
    display: none; 
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
}

.hidden-field {
    display: none !important;
    visibility: hidden;
    position: absolute;
    left: -9999px;
}

.hidden { display: none; }

.portfolio-img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; 
}


.mt-2 { margin-top: 2rem !important; }
.hidden { display: none !important; }


.status-msg {
    display: none;
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
}


.btn-full {
    width: 100%;
}


.like-btn {
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: transparent;
   
}


.like-btn.liked {
    color: #e0245e !important;
    background-color: rgba(224, 36, 94, 0.1) !important;
    font-weight: bold !important;
}


.like-btn:hover {
    background-color: rgba(224, 36, 94, 0.05);
}
.btn-full {
    width: 100% !important;
}



.security-showcase {
  padding: 100px 0;
  background: #fff;
  position: relative;
}

.security-showcase::before,
.security-showcase::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #000, transparent);
}
.security-showcase::before { top: 0; }
.security-showcase::after { bottom: 0; }

.security-hero {
  text-align: center;
  margin-bottom: 60px;
}

.security-badge {
  display: inline-block;
  padding: 6px 14px;
  border: 2px solid #000;
  background: #000;
  color: #fff;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  margin-bottom: 18px;
}

.security-hero h2 {
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin: 0 0 10px;
}

.security-lead {
  color: #333;
  font-size: 1.15rem;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.7;
}


.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 70px;
}

.security-card {
  border: 2px solid #000;
  background: #fff;
  padding: 40px 35px;
  box-shadow: 10px 10px 0 #000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.security-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0 #000;
}

.security-icon {
  width: 60px;
  height: 60px;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.security-card h3 {
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.security-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.security-features li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.5;
}

.security-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: #000;
}

.security-status {
  display: inline-block;
  padding: 6px 12px;
  border: 2px solid #000;
  background: #fff;
  color: #000;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}


.security-ir {
  border: 2px solid #000;
  background: #fff;
  padding: 60px 40px;
  box-shadow: 10px 10px 0 #000;
  margin-top: 20px;
}

.security-ir-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 35px;
}

.security-step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 26px;
  margin-bottom: 34px;
  position: relative;
}

.security-step-left {
  text-align: center;
}

.security-step-no {
  width: 44px;
  height: 44px;
  border: 2px solid #000;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.security-step-time {
  margin-top: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.security-step-body h4 {
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.security-step-body p {
  margin: 0;
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
}


.security-guarantees {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(0,0,0,0.15);
  text-align: center;
}

.security-guarantees h3 {
  font-size: 2.2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 40px;
}

.security-guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}

.security-guarantee {
  border: 2px solid #000;
  background: #fff;
  padding: 30px;
  box-shadow: 8px 8px 0 #000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.security-guarantee:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 #000;
}

.security-guarantee-icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.security-guarantee h4 {
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.security-guarantee p {
  margin: 0;
  color: #333;
  font-size: 1.02rem;
  line-height: 1.6;
}


.security-cta {
  margin-top: 80px;
  padding: 60px 40px;
  background: #000;
  color: #fff;
  text-align: center;
  border: 2px solid #000;
}

.security-cta h3 {
  font-size: 2.4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.security-cta p {
  color: #ccc;
  font-size: 1.15rem;
  margin: 0 0 22px;
}


@media (max-width: 992px) {
  .security-grid { grid-template-columns: 1fr; }
  .security-guarantees-grid { grid-template-columns: 1fr; }
  .security-step { grid-template-columns: 90px 1fr; }
  .security-hero h2 { font-size: 2.2rem; }
  .security-ir { padding: 40px 25px; }
}



.waf-page {
  background: #fff;
  color: #000;
}

.waf-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
}

.waf-wrap::before,
.waf-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #000, transparent);
}
.waf-wrap::before { top: 0; }
.waf-wrap::after { bottom: 0; }

.waf-card {
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid #000;
  background: #fff;
  padding: 50px 40px;
  box-shadow: 10px 10px 0 #000;
}

.waf-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.waf-badge {
  display: inline-block;
  padding: 6px 14px;
  border: 2px solid #000;
  background: #000;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.waf-tag {
  display: inline-block;
  padding: 6px 12px;
  border: 2px solid #000;
  background: #fff;
  color: #000;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
}

.waf-card h1 {
  margin: 0 0 14px;
  font-size: 2.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.waf-lead {
  margin: 0 0 22px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #333;
}

.waf-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 10px 0 22px;
}

.waf-help {
  margin: 0 0 18px;
  color: #333;
  line-height: 1.6;
}

.waf-help a { text-decoration: underline; }

.waf-info {
  border: 2px solid #000;
  padding: 16px 18px;
  background: #fff;
  box-shadow: 6px 6px 0 #000;
  font-size: 0.95rem;
  color: #111;
}

.waf-hint {
  margin: 16px 0 0;
  font-size: 0.95rem;
  color: #666;
  font-style: italic;
}

.waf-hint code {
  border: 1px solid #000;
  padding: 2px 6px;
  background: #fff;
}


.waf-page--egg .waf-card {
  background: #000;
  color: #fff;
  border-color: #fff;
  box-shadow: 10px 10px 0 #000;
}

.waf-page--egg .waf-badge {
  background: #fff;
  color: #000;
  border-color: #fff;
}

.waf-page--egg .waf-tag {
  background: #000;
  color: #fff;
  border-color: #fff;
}

.waf-page--egg .waf-lead,
.waf-page--egg .waf-help {
  color: #ccc;
}

.waf-terminal {
  margin-top: 10px;
  border: 2px solid #fff;
  padding: 18px;
  background: #000;
  box-shadow: 8px 8px 0 #000;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.waf-terminal-line {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.95rem;
}

.waf-prompt { color: #fff; font-weight: 800; }
.waf-path { color: #ccc; }

@media (max-width: 768px) {
  .waf-card { padding: 35px 22px; }
  .waf-card h1 { font-size: 2rem; }
}
.cookie-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display: none;
}

.cookie-banner.active{ display: block; }

.cookie-banner-inner{
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(15,15,15,0.96);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  box-shadow: 0 18px 70px rgba(0,0,0,0.65);
  padding: 14px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  backdrop-filter: blur(6px);
}

.cookie-banner-text{
  color: rgba(255,255,255,0.86);
  line-height: 1.6;
  font-size: 0.98rem;
}

.cookie-banner-text strong{
  color: #fff;
  margin-right: 8px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.cookie-link{
  color: #fff;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner-actions{
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn{
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.25);
  color: #fff;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  font-size: 0.82rem;
  cursor: pointer;
}

.cookie-btn:hover{ border-color: rgba(255,255,255,0.30); }

.cookie-btn-primary{
  background: #fff;
  color: #000;
  border-color: #fff;
}

@media (max-width: 640px){
  .cookie-banner-inner{
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner-actions .cookie-btn{
    width: 100%;
    justify-content: center;
  }
}
