/* 
* Main Stylesheet for domain.com
* Uses a 12-column grid layout
* Color palette:
* - Main background: #FF6B6B (coral)
* - Accents: #00CED1 (turquoise) and #C7EA46 (lime)
* - Text: #2E2E2E (dark gray) and #FFFFFF (white)
* - Buttons: Gradient from #FF6B6B to #00CED1
*/

/* Base Styles */
:root {
    --primary-color: #FF6B6B;
    --secondary-color: #00CED1;
    --accent-color: #C7EA46;
    --text-dark: #2E2E2E;
    --text-light: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #FAFAFA;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Grid System (12 columns) */
.grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 15px auto 0;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: var(--text-light);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* Header */
header {
    background-color: var(--text-light);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    height: 40px;
}

.logo svg {
    margin-right: 10px;
    height: 40px;
    width: auto;
}

.site-name {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 40px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    align-items: center;
    height: 40px;
}

.nav-menu ul li {
    margin-left: 25px;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu ul li a {
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu ul li a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    width: 30px;
    height: 21px;
    justify-content: space-between;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Sections */
section {
    padding: 80px 0;
}

section:nth-child(odd) {
    background-color: #F5F5F5;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(255, 107, 107, 0.8) 100%);
    color: var(--text-light);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero .slogan {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-text {
    flex: 1;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Why Us Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background-color: var(--text-light);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--text-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.testimonial-image {
    height: 200px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    padding: 30px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 20px;
}

/* FAQ Section */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: var(--text-light);
    box-shadow: var(--shadow);
    overflow: hidden;
    border-left: 4px solid var(--secondary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    background-color: var(--text-light);
    cursor: pointer;
    position: relative;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 1.5rem;
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-light);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-question.active {
    background-color: #f5f5f5;
}

.faq-question.active::after {
    content: '−';
    background-color: var(--secondary-color);
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
}

.faq-question.active + .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* Contact Form Section */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--text-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--secondary-color);
    outline: none;
}

.checkbox {
    display: flex;
    align-items: center;
}

.checkbox input {
    width: auto;
    margin-right: 10px;
}

.checkbox label {
    margin: 0;
}

/* Secondary CTA */
.secondary-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(0, 206, 209, 0.8) 100%);
    color: var(--text-light);
    text-align: center;
}

.secondary-cta h2 {
    color: var(--text-light);
}

.secondary-cta h2::after {
    background: var(--text-light);
}

.secondary-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-content h3 {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-content ul {
    list-style: none;
}

.footer-content ul li {
    margin-bottom: 10px;
}

.footer-content ul li a {
    color: #CCC;
}

.footer-content ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

/* Cookie Popup */
#cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--text-light);
    z-index: 1001;
    padding: 15px 0;
    display: none;
    justify-content: center;
    align-items: center;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}

.cookie-content p {
    margin: 0;
    padding-right: 20px;
}

/* Policy Pages Styling */
.policy {
    padding: 100px 0;
}

.policy h1 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.policy h1::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 15px auto 0;
    border-radius: 2px;
}

.policy-content {
    background-color: var(--text-light);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-color);
    border-right: 5px solid var(--secondary-color);
}

.policy-content h2 {
    text-align: left;
    margin-top: 30px;
    font-size: 1.5rem;
    color: var(--primary-color);
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

.policy-content h2::after {
    display: none;
}

.policy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    list-style-type: none;
}

.policy-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.policy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.policy-content p {
    line-height: 1.8;
}

.back-link {
    text-align: center;
}

.back-link .btn {
    padding: 12px 30px;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Media Queries */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        margin-bottom: 15px;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    section {
        padding: 60px 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--text-light);
        transition: var(--transition);
        padding: 40px;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
    }

    .nav-menu ul li {
        margin: 0 0 20px 0;
    }

    .nav-menu ul li a {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .form-container {
        padding: 30px 20px;
    }

    .service-card, .advantage-card, .testimonial-card {
        padding: 20px;
    }
} 