/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #FAF3E0;
    background-color: #1A1F33;
    overflow-x: hidden;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none !important;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #B8FF3E, #9AE332);
    color: #1A1F33;
    border-color: #B8FF3E;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #9AE332, #7BC626);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 255, 62, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #B8FF3E;
    border-color: #B8FF3E;
}

.btn-secondary:hover {
    background: #B8FF3E;
    color: #1A1F33;
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    font-size: 18px;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1A1F33 0%, #252B42 100%);
    border-top: 3px solid #B8FF3E;
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #FAF3E0;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept {
    background: #B8FF3E;
    color: #1A1F33;
    border: none;
    padding: 10px 20px;
    border-radius: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background: #9AE332;
    transform: translateY(-1px);
}

.btn-more {
    color: #00D1FF;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: rgba(0, 209, 255, 0.1);
    color: #B8FF3E;
}

/* ===== HEADER ===== */
.header {
    background: rgba(26, 31, 51, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(184, 255, 62, 0.2);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo {
    text-decoration: none;
    color: #B8FF3E;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo:hover {
    color: #00D1FF;
    transition: color 0.3s ease;
}

.nav-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-phone,
.contact-email {
    color: #FAF3E0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-phone:hover,
.contact-email:hover {
    color: #B8FF3E;
}

/* ===== NAVIGATION MENU (Desktop Only) ===== */
.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-link {
    color: #FAF3E0;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #B8FF3E;
    background: rgba(184, 255, 62, 0.1);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #B8FF3E;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-top: 80px;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A1F33 0%, #252B42 50%, #1A1F33 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(184, 255, 62, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #B8FF3E, #00D1FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FAF3E0;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-image {
    text-align: center;
    animation: fadeInRight 0.8s ease-out 0.3s both;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* ===== SECTIONS COMMON ===== */
section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #B8FF3E;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #FAF3E0;
    opacity: 0.8;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: linear-gradient(135deg, #252B42 0%, #1A1F33 50%, #252B42 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: #00D1FF;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #FAF3E0;
    opacity: 0.9;
}

.about-advantages {
    display: grid;
    gap: 25px;
}

.advantage-item {
    background: rgba(184, 255, 62, 0.05);
    padding: 25px;
    border-radius: 1.5rem;
    border-left: 4px solid #B8FF3E;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    background: rgba(184, 255, 62, 0.1);
    transform: translateX(10px);
}

.advantage-item h4 {
    color: #B8FF3E;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.advantage-item p {
    margin: 0;
    font-size: 1rem;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* ===== SERVICES SECTION ===== */
.services {
    background: #1A1F33;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: linear-gradient(135deg, #252B42 0%, #2A3048 100%);
    padding: 40px;
    border-radius: 2rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 255, 62, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #B8FF3E;
    box-shadow: 0 20px 40px rgba(184, 255, 62, 0.2);
}

.service-card.featured {
    border-color: #00D1FF;
    background: linear-gradient(135deg, #2A3048 0%, #252B42 100%);
}

.service-card.featured::before {
    background: linear-gradient(135deg, rgba(0, 209, 255, 0.1) 0%, transparent 50%);
}

.service-card h3 {
    font-size: 1.5rem;
    color: #B8FF3E;
    margin-bottom: 15px;
}

.service-card.featured h3 {
    color: #00D1FF;
}

.service-card p {
    color: #FAF3E0;
    opacity: 0.9;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF957D;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(250, 243, 224, 0.1);
    color: #FAF3E0;
    opacity: 0.8;
}

.service-features li:before {
    content: '✓';
    color: #B8FF3E;
    font-weight: bold;
    margin-right: 10px;
}

/* ===== SERVICES DETAIL ===== */
.services-detail {
    background: linear-gradient(135deg, #252B42 0%, #1A1F33 100%);
}

.services-detail-content {
    display: grid;
    gap: 40px;
}

.detail-item {
    background: rgba(184, 255, 62, 0.03);
    padding: 40px;
    border-radius: 1.5rem;
    border-left: 5px solid #00D1FF;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(184, 255, 62, 0.06);
    transform: translateX(10px);
}

.detail-item h3 {
    color: #00D1FF;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.detail-item p {
    color: #FAF3E0;
    opacity: 0.9;
    line-height: 1.7;
}

/* ===== TEAM SECTION ===== */
.team {
    background: #1A1F33;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-items: center;
}

.team-member {
    background: linear-gradient(135deg, #252B42 0%, #2A3048 100%);
    padding: 40px;
    border-radius: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: #FF957D;
    box-shadow: 0 20px 40px rgba(255, 149, 125, 0.2);
}

.team-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #B8FF3E;
}

.team-member h3 {
    color: #B8FF3E;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.team-role {
    color: #00D1FF;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-desc {
    color: #FAF3E0;
    opacity: 0.8;
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(135deg, #252B42 0%, #1A1F33 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(184, 255, 62, 0.03);
    padding: 35px;
    border-radius: 1.5rem;
    border: 1px solid rgba(184, 255, 62, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(184, 255, 62, 0.06);
    transform: translateY(-5px);
    border-color: #B8FF3E;
}

.testimonial-card p {
    color: #FAF3E0;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    font-size: 1.05rem;
}

.testimonial-author strong {
    color: #B8FF3E;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #00D1FF;
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: #1A1F33;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    color: #B8FF3E;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    color: #00D1FF;
    display: block;
    margin-bottom: 8px;
}

.contact-item p {
    color: #FAF3E0;
    opacity: 0.9;
    margin: 0;
}

.contact-item a {
    color: #B8FF3E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #00D1FF;
}

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
    background: linear-gradient(135deg, #252B42 0%, #2A3048 100%);
    padding: 40px;
    border-radius: 2rem;
    border: 1px solid rgba(184, 255, 62, 0.2);
}

.contact-form h3 {
    color: #B8FF3E;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #FAF3E0;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid rgba(184, 255, 62, 0.3);
    border-radius: 1rem;
    background: rgba(26, 31, 51, 0.8);
    color: #FAF3E0;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #B8FF3E;
    box-shadow: 0 0 0 3px rgba(184, 255, 62, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: #FAF3E0;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #00D1FF;
    text-decoration: none;
}

.checkbox-label a:hover {
    color: #B8FF3E;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #252B42 0%, #1A1F33 100%);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(184, 255, 62, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: #B8FF3E;
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
}

.footer-section p {
    color: #FAF3E0;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-section a {
    color: #FAF3E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #B8FF3E;
}

.legal-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.legal-links a {
    color: #00D1FF;
    padding: 5px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-links a:hover {
    color: #B8FF3E;
    border-bottom-color: #B8FF3E;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(250, 243, 224, 0.1);
}

.footer-bottom p {
    color: #FAF3E0;
    opacity: 0.6;
    margin: 0;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ===== POLICY PAGES - UNIFIED STYLES ===== */
.policy-page {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, #1A1F33 0%, #252B42 100%);
    min-height: 100vh;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: #B8FF3E;
    margin-bottom: 15px;
}

.policy-date {
    color: #00D1FF;
    font-weight: 600;
    font-size: 1.1rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(184, 255, 62, 0.02);
    padding: 50px;
    border-radius: 2rem;
    border: 1px solid rgba(184, 255, 62, 0.1);
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(250, 243, 224, 0.1);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h2 {
    color: #00D1FF;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(0, 209, 255, 0.3);
}

.policy-section h3 {
    color: #FF957D;
    font-size: 1.2rem;
    margin: 25px 0 15px 0;
    padding-left: 15px;
    border-left: 3px solid #FF957D;
}

.policy-section p {
    color: #FAF3E0;
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.9;
}

.policy-section ul {
    color: #FAF3E0;
    margin-left: 20px;
    margin-bottom: 15px;
}

.policy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    opacity: 0.9;
}

.policy-section a {
    color: #B8FF3E;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #00D1FF;
    text-decoration: underline;
}

.policy-section strong {
    color: #FF957D;
    font-weight: 600;
}

.policy-footer {
    text-align: center;
    margin-top: 50px;
}

/* Cookie Table Styles */
.cookie-table {
    margin: 20px 0;
    overflow-x: auto;
}

.cookie-table h4 {
    color: #B8FF3E;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 209, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(250, 243, 224, 0.1);
}

.cookie-table th {
    background: rgba(184, 255, 62, 0.1);
    color: #B8FF3E;
    font-weight: 600;
}

.cookie-table td {
    color: #FAF3E0;
    opacity: 0.9;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Cookie table responsive */
@media (max-width: 768px) {
    .cookie-table {
        font-size: 14px;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 8px 10px;
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Hide navigation menu on mobile */
    .nav-menu {
        display: none;
    }
    
    .nav-contact {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    /* Policy pages responsive */
    .policy-content {
        padding: 30px 20px;
    }
    
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .service-card,
    .team-member {
        padding: 25px;
    }
    
    /* Policy pages mobile */
    .policy-page {
        padding: 80px 0 60px;
    }
    
    .policy-content {
        padding: 20px 15px;
    }
    
    .policy-header h1 {
        font-size: 1.8rem;
    }
}