/* ==========================================
   DOMAIN - HOROSCOPE CONSULTATION WEBSITE
   Modern, Animated, Responsive Stylesheet
   ========================================== */

/* === ROOT & RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #FAF7F2;
    --color-secondary: #392F5A;
    --color-accent: #FF7171;
    --color-highlight: #F6D860;
    --color-text: #222222;
    --color-white: #FFFFFF;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}

section[id] {
    scroll-margin-top: 40px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === HEADER & NAVIGATION === */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.5s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary);
}

.logo-icon {
    font-size: 32px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 5px 0;
}

.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-menu a:not(.nav-cta):hover::after,
.nav-menu a:not(.nav-cta).active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-accent), #ff9090);
    color: var(--color-white);
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 113, 113, 0.3);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: var(--color-secondary);
    transition: var(--transition);
    border-radius: 3px;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s infinite alternate;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(57, 47, 90, 0.7), rgba(255, 113, 113, 0.5));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.8;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-hero {
    background-color: var(--color-white);
    color: var(--color-secondary);
    font-size: 18px;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === SECTION STYLING === */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-highlight));
    margin: 0 auto 20px;
    border-radius: 2px;
    animation: expandWidth 1s ease;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* === ABOUT SECTION === */
.about {
    background-color: var(--color-white);
}

.about-content {
    display: grid;
    gap: 40px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
}

.about-intro {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: linear-gradient(135deg, var(--color-primary), #fff);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(255, 113, 113, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

/* === BENEFITS SECTION === */
.benefits {
    background: linear-gradient(135deg, var(--color-secondary), #4a3d6f);
    color: var(--color-white);
}

.benefits .section-title,
.benefits .section-subtitle {
    color: var(--color-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
}

/* === SERVICES SECTION === */
.services {
    background-color: var(--color-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: var(--color-primary);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(57, 47, 90, 0.2);
}

.service-card.featured {
    border: 3px solid var(--color-accent);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: var(--color-text);
}

/* === TESTIMONIALS SECTION === */
.testimonials {
    background: linear-gradient(135deg, #fff5e6, var(--color-primary));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--color-secondary);
    font-weight: 600;
}

.testimonial-author span {
    color: #888;
    font-size: 14px;
}

/* === FAQ SECTION === */
.faq {
    background-color: var(--color-white);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-primary);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(57, 47, 90, 0.1);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    color: var(--color-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f0ebe3;
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

details[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px 25px;
    color: var(--color-text);
    line-height: 1.8;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, var(--color-accent), #ff9090);
    color: var(--color-white);
    text-align: center;
    padding: 80px 20px;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background-color: var(--color-white);
    color: var(--color-accent);
    font-size: 18px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* === ORDER FORM SECTION === */
.order-form {
    background-color: var(--color-white);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form {
    background: linear-gradient(135deg, var(--color-primary), #fff);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(57, 47, 90, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-secondary);
}

.required {
    color: var(--color-accent);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    font-family: var(--font-body);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(255, 113, 113, 0.2);
}

.form-group select option {
    color: black;
    background-color: white;
}

.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-text {
    line-height: 1.6;
}

.checkbox-text a {
    color: var(--color-accent);
    text-decoration: underline;
}

.checkbox-text a:hover {
    color: var(--color-secondary);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--color-accent), #ff9090);
    color: var(--color-white);
    padding: 18px;
    font-size: 18px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 113, 113, 0.3);
}

.form-error {
    background-color: #ffe6e6;
    border: 2px solid var(--color-accent);
    color: #d00;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 25px;
    text-align: center;
}

/* === FOOTER === */
.main-footer {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3,
.footer-contact h3,
.footer-links h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-about p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact ul,
.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-icon {
    font-size: 18px;
}

.footer-contact a,
.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-contact a:hover,
.footer-links a:hover {
    color: var(--color-highlight);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* === COOKIE CONSENT === */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background-color: var(--color-white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: slideUp 0.5s ease;
    display: none;
}

.cookie-consent.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-buttons .btn-primary {
    background: linear-gradient(135deg, var(--color-accent), #ff9090);
    color: var(--color-white);
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
    cursor: pointer;
}

.cookie-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 113, 113, 0.3);
}

.cookie-link {
    color: var(--color-accent);
    text-decoration: underline;
}

/* === PAGE HERO (for inner pages) === */
.page-hero {
    background: linear-gradient(135deg, var(--color-secondary), #4a3d6f);
    color: var(--color-white);
    text-align: center;
    padding: 80px 20px;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

/* === CONTENT SECTIONS === */
.content-section {
    padding: 80px 0;
}

.content-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.content-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.content-block.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-text h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.content-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.content-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* === VALUES SECTION === */
.values-section {
    background-color: var(--color-white);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: linear-gradient(135deg, var(--color-primary), #fff);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-highlight);
    box-shadow: 0 10px 30px rgba(246, 216, 96, 0.2);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

/* === BLOG SECTIONS === */
.blog-intro {
    background-color: var(--color-white);
    padding: 60px 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.8;
}

.blog-featured {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.blog-card {
    background-color: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #888;
}

.blog-category {
    color: var(--color-accent);
    font-weight: 600;
}

.blog-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.blog-content p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.blog-categories {
    background-color: var(--color-white);
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-box {
    background: linear-gradient(135deg, var(--color-primary), #fff);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.category-box:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(255, 113, 113, 0.2);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.category-box h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.blog-newsletter {
    background: linear-gradient(135deg, var(--color-highlight), #ffd966);
    padding: 60px 20px;
    text-align: center;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-secondary);
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* === TIPS SECTIONS === */
.tips-intro {
    background-color: var(--color-white);
    padding: 60px 0;
}

.tips-section {
    padding: 80px 0;
}

.tip-block {
    margin-bottom: 80px;
}

.tip-block.alternate {
    background-color: var(--color-white);
    padding: 60px 0;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.tip-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.tip-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-accent), #ff9090);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.tip-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--color-secondary);
}

.tip-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.tip-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.tip-text strong {
    color: var(--color-secondary);
    font-weight: 600;
}

.tip-list {
    list-style: none;
    margin: 15px 0;
    padding-left: 20px;
}

.tip-list li {
    padding: 8px 0;
    position: relative;
}

.tip-list li::before {
    content: '→';
    position: absolute;
    left: -20px;
    color: var(--color-accent);
}

.tip-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tip-images img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tips-cta {
    background: linear-gradient(135deg, var(--color-secondary), #4a3d6f);
    padding: 60px 20px;
}

.cta-box {
    text-align: center;
    color: var(--color-white);
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent), #ff9090);
    color: var(--color-white);
    padding: 15px 40px;
    border-radius: 30px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 113, 113, 0.3);
}

/* === THANK YOU PAGE === */
.thankyou-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--color-primary), #fff);
}

.thankyou-box {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--color-white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(57, 47, 90, 0.15);
    border: 3px solid var(--color-highlight);
    text-align: center;
}

.thankyou-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.thankyou-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.thankyou-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

.thankyou-info {
    background-color: var(--color-primary);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.thankyou-info h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-secondary);
    margin-bottom: 25px;
}

.thankyou-steps {
    display: grid;
    gap: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-accent), #ff9090);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.thankyou-contact {
    background-color: #f0ebe3;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.thankyou-contact h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.thankyou-contact a {
    color: var(--color-accent);
}

.thankyou-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 15px 30px;
    border-radius: 30px;
}

.btn-secondary:hover {
    background-color: #4a3d6f;
    transform: translateY(-2px);
}

/* === POLICY PAGES === */
.policy-section {
    padding: 80px 0;
    background-color: var(--color-white);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--color-primary);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e8e1d3;
}

.policy-content h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.policy-date {
    color: #888;
    margin-bottom: 30px;
}

.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-secondary);
    margin-top: 40px;
    margin-bottom: 15px;
}

.policy-content p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-content ul,
.policy-content ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.policy-content ul li {
    list-style: disc;
}

.policy-content ol li {
    list-style: decimal;
}

.policy-content strong {
    color: var(--color-secondary);
    font-weight: 600;
}

/* === RESPONSIVE DESIGN === */

/* Tablet */
@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .content-block.reverse {
        grid-template-columns: 1fr;
    }
    
    .tip-content-grid {
        grid-template-columns: 1fr;
    }
    
    .tip-images {
        flex-direction: row;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--color-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 15px;
    }
    
    .menu-toggle:checked ~ .nav-menu {
        left: 0;
    }
    
    .menu-icon {
        display: flex;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero {
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .services-grid,
    .benefits-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .thankyou-box {
        padding: 40px 25px;
    }
    
    .thankyou-title {
        font-size: 32px;
    }
    
    .policy-content {
        padding: 30px 20px;
    }
    
    .tip-header {
        flex-direction: column;
        text-align: center;
    }
    
    .tip-header h2 {
        font-size: 28px;
    }
    
    .tip-images {
        flex-direction: column;
    }
    
    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .thankyou-actions {
        flex-direction: column;
    }
    
    .thankyou-actions .btn {
        width: 100%;
    }
}

