/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #CBD5E1;
    background-color: #0F172A;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #0F172A;
    border-bottom: 1px solid rgba(255, 190, 11, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Logo Styles */
.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 190, 11, 0.1), rgba(251, 86, 7, 0.1));
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 190, 11, 0.2);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F9FAFB;
    background: linear-gradient(45deg, #FFBE0B, #FB5607);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #FFBE0B;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #CBD5E1;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-checkbox {
    display: none;
}

/* Hero Section */
.hero {
    background-image: url('./img/eLC6vB.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.75) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 190, 11, 0.15) 0%, transparent 70%);
    animation: heroGlow 6s ease-in-out infinite;
    z-index: 2;
}

@keyframes heroGlow {
    0%, 100% { transform: translateX(0) scale(1); }
    50% { transform: translateX(20px) scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #F9FAFB;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FFBE0B, #FB5607);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #CBD5E1;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #FFBE0B, #FB5607);
    color: #0F172A;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 190, 11, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 190, 11, 0.4);
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #F9FAFB;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #FFBE0B, #FB5607);
    border-radius: 2px;
}

/* About Section */
.about {
    background-color: #1E293B;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #F9FAFB;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    text-align: center;
}

.main-about-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem;
}

.about-gallery {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.gallery-thumb {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(255, 190, 11, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.gallery-thumb:hover {
    transform: scale(1.05);
    border-color: #FFBE0B;
    box-shadow: 0 4px 15px rgba(255, 190, 11, 0.3);
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 190, 11, 0.1);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 190, 11, 0.2);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #FFBE0B, #FB5607);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.advantage-card h4 {
    color: #F9FAFB;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.advantage-card p {
    line-height: 1.6;
}

/* Services Section */
.services {
    background-color: #1E293B;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 0;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 190, 11, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #FFBE0B, #FB5607);
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 190, 11, 0.3);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h4 {
    color: #F9FAFB;
    margin: 1.5rem 0 1rem;
    font-size: 1.5rem;
    padding: 0 2rem;
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: #FFBE0B;
    margin: 1rem 0;
    padding: 0 2rem;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 190, 11, 0.1);
}

.service-features li:before {
    content: '✓';
    color: #FFBE0B;
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-card .cta-button {
    margin: 1.5rem 2rem 2rem;
    display: inline-block;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    border-left: 4px solid #FFBE0B;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #FFBE0B;
    opacity: 0.3;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    color: #FFBE0B;
    font-weight: 600;
}

/* FAQ Section */
/* FAQ Styles */
.faq {
    background-color: #1E293B;
}

.faq-item {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 190, 11, 0.1);
    transition: all 0.3s ease;
}

.faq-checkbox {
    display: none;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    color: #F9FAFB;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question:hover {
    background-color: rgba(255, 190, 11, 0.1);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: rgba(15, 23, 42, 0.3);
}

.faq-content {
    padding: 1.5rem;
    line-height: 1.6;
    color: #CBD5E1;
    border-top: 1px solid rgba(255, 190, 11, 0.1);
}

.faq-toggle {
    color: #FFBE0B;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-toggle::before {
    content: '+';
}

.faq-checkbox:checked + .faq-question .faq-toggle::before {
    content: '−';
}

.faq-checkbox:checked + .faq-question .faq-toggle {
    transform: rotate(180deg);
}

.faq-checkbox:checked ~ .faq-answer {
    max-height: 200px;
}

.faq-checkbox:checked ~ .faq-item {
    border-color: rgba(255, 190, 11, 0.3);
    box-shadow: 0 4px 15px rgba(255, 190, 11, 0.1);
}

/* Contact Form */
.contact {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 190, 11, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #F9FAFB;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 190, 11, 0.2);
    border-radius: 8px;
    background-color: #0F172A;
    color: #F9FAFB;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FFBE0B;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(45deg, #FFBE0B, #FB5607);
    color: #0F172A;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 190, 11, 0.4);
}

/* Footer */
.footer {
    background-color: #0F172A;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 190, 11, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #F9FAFB;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section ul {
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFBE0B;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 190, 11, 0.1);
    color: #64748B;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 1px solid rgba(255, 190, 11, 0.2);
}

.cookie-popup.show {
    display: block;
    opacity: 1;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-text {
    color: #CBD5E1;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background: linear-gradient(45deg, #FFBE0B, #FB5607);
    color: #0F172A;
}

.cookie-decline {
    background: transparent;
    color: #CBD5E1;
    border: 1px solid rgba(255, 190, 11, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #0F172A;
        flex-direction: column;
        padding: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: 1px solid rgba(255, 190, 11, 0.2);
    }
    
    .mobile-menu-checkbox:checked ~ .nav-menu {
        max-height: 300px;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid,
    .advantages-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .logo-container {
        gap: 0.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
    }
    
    .logo-container {
        gap: 0.4rem;
    }
} 