/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* ===== CSS-ONLY INTERACTIONS ===== */
/* FAQ Toggle without JavaScript */
.faq-toggle {
    display: none;
}

.faq-question {
    transition: all 0.3s ease;
}

.faq-toggle:checked + .faq-question {
    background: rgba(255, 111, 97, 0.1);
}

.faq-toggle:checked + .faq-question .faq-icon::before {
    content: '-';
}

.faq-toggle:not(:checked) + .faq-question .faq-icon::before {
    content: '+';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 1.5rem;
    color: #B0B0B0;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

/* Mobile Menu Toggle without JavaScript */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-button {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-button span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    margin: 2px 0;
    transition: 0.3s;
}

.mobile-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu-toggle:checked ~ .mobile-nav {
    max-height: 300px;
}

.mobile-menu-toggle:checked + .mobile-menu-button span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle:checked + .mobile-menu-button span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle:checked + .mobile-menu-button span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #121212;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    color: #B0B0B0;
    margin-bottom: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #FF6F61, #FFE156);
    color: #121212;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #FFE156, #FF6F61);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 111, 97, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FF6F61;
}

.btn-secondary:hover {
    background: #FF6F61;
    color: #121212;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo a {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FF6F61, #FFE156);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #FF6F61;
}

.mobile-nav {
    background: #1E1E1E;
    padding: 0;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    margin: 0;
    padding: 1rem 0;
}

.mobile-nav-list li {
    margin: 1rem 0;
}

.mobile-nav-list a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url('./img/0939RH.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 100px;
}

.hero h1 {
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #B0B0B0;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s forwards;
}

.hero-cta {
    opacity: 0;
    animation: fadeIn 1s ease-out 1.1s forwards;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #FF6F61, #FFE156);
}

.section-alt {
    background: #1E1E1E;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #FF6F61;
    margin-bottom: 2rem;
}

.about-features {
    list-style: none;
}

.about-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #B0B0B0;
}

.about-features li::before {
    content: '✓';
    color: #FFE156;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: #1E1E1E;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 111, 97, 0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: #FF6F61;
    margin-bottom: 1rem;
}

/* ===== ADVANTAGES SECTION ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-item {
    text-align: center;
    padding: 2rem;
    background: #1E1E1E;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #FF6F61, #FFE156);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #1E1E1E;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #FF6F61;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    color: #B0B0B0;
}

.testimonial-author {
    font-weight: 600;
    color: #FFE156;
}

/* ===== ORDER FORM SECTION ===== */
.order-form {
    background: #1E1E1E;
    padding: 3rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #333;
    border-radius: 5px;
    background: #121212;
    color: #FFFFFF;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF6F61;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 2px;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.9rem;
    color: #B0B0B0;
}

.checkbox-group a {
    color: #FF6F61;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* ===== FAQ SECTION ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #1E1E1E;
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: #FFFFFF;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 111, 97, 0.1);
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

.faq-icon::before {
    content: '+';
}

/* ===== CONTACT SECTION ===== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    color: #FF6F61;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    color: #FFE156;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #B0B0B0;
}

.contact-item a {
    color: #FFFFFF;
    text-decoration: none;
}

.contact-item a:hover {
    color: #FF6F61;
}

.map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    display: block;
    transition: transform 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

/* ===== FOOTER ===== */
.footer {
    background: #0A0A0A;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FF6F61;
    margin-bottom: 1rem;
}

.footer-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FF6F61, #FFE156);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.footer-description {
    color: #B0B0B0;
    margin-top: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF6F61;
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info a {
    color: #FFFFFF !important;
}

.contact-info a:hover {
    color: #FF6F61 !important;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #B0B0B0;
}

/* ===== COOKIE POPUP ===== */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #1E1E1E;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease;
    display: none; /* Hidden by default */
}

.cookie-popup.hidden {
    opacity: 0;
    pointer-events: none;
    display: none;
}

.cookie-popup-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-popup p {
    margin: 0;
    color: #B0B0B0;
    flex: 1;
}

.cookie-popup a {
    color: #FF6F61;
    text-decoration: none;
}

.cookie-popup a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .header-content {
        justify-content: space-between;
    }
    
    .nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-button {
        display: flex;
    }
    
    .hero-content {
        padding-top: 120px;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .order-form {
        padding: 2rem 1.5rem;
    }
    
    .cookie-popup-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }
    
    .hero {
        min-height: 80vh;
    }
    
    .hero-content {
        padding-top: 100px;
    }
    
    h1 { font-size: 2rem; }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .advantage-item {
        padding: 1.5rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
