/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

section[id] {
    scroll-margin-top: 100px;
}

div {
    word-break: break-word;
    overflow-wrap: break-word;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
    line-height: 1.7;
    background: linear-gradient(135deg, #0f4c75 0%, #3282b8 50%, #bbe1fa 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

* {
    max-width: 100%;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 76, 117, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #ffffff;
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-content a {
    color: #ffeb3b;
    text-decoration: underline;
}

.cookie-btn {
    background: transparent;
    border: 2px solid #ff6f61;
    color: #ff6f61;
    padding: 0.8rem 2rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: #ff6f61;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 111, 97, 0.4);
}

/* Navigation */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 76, 117, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    transition: all 0.3s ease;
    transform: translateY(0);
}

.main-header.scrolled {
    background: rgba(15, 76, 117, 0.98);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 1rem 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffeb3b;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6f61;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #ffeb3b;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 76, 117, 0.85), rgba(50, 130, 184, 0.75));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 2rem;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    display: inline-block;
    background: transparent;
    background: #ff6f61;
    color: #ffffff;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #ff6f61;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 111, 97, 0.5);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 111, 97, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(255, 111, 97, 0);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
    color: #ffffff;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.rounded-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.rounded-image:hover {
    transform: scale(1.02);
}

/* Benefits Section */
.benefits-section {
    background: rgba(255, 255, 255, 0.05);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.benefit-card:hover {
    border-color: #ffeb3b;
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.8rem;
    color: #ffeb3b;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #ffffff;
    font-size: 1.1rem;
}

/* Horoscopes Section */
.horoscopes-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.horoscope-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.horoscope-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 111, 97, 0.3);
    transition: all 0.4s ease;
}

.horoscope-card:hover {
    border-color: #ff6f61;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 111, 97, 0.4);
}

.horoscope-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.horoscope-card h3 {
    font-size: 2rem;
    color: #ffeb3b;
    margin-bottom: 1rem;
    text-align: center;
}

.horoscope-card p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.horoscope-features {
    list-style: none;
    padding-left: 0;
}

.horoscope-features li {
    color: #ffffff;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.horoscope-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffeb3b;
    font-weight: bold;
}

/* Testimonials Section */
.testimonials-section {
    background: rgba(255, 255, 255, 0.05);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid #ff6f61;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #ffffff;
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: #ffeb3b;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ffeb3b;
}

.faq-item summary {
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffeb3b;
    cursor: pointer;
    list-style: none;
    transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    float: right;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    background: rgba(255, 235, 59, 0.1);
}

.faq-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #ffffff;
    font-size: 1.1rem;
    animation: fadeIn 0.5s ease-out;
}

/* Order Form Section */
.order-section {
    background: rgba(255, 255, 255, 0.05);
}

.order-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: #ffeb3b;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.form-group input,
.form-group select {
    padding: 1rem;
    border: 2px solid rgba(255, 111, 97, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    color: #2c3e50;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6f61;
    box-shadow: 0 0 15px rgba(255, 111, 97, 0.3);
}

.form-group select option {
    background: #ffffff;
    color: #2c3e50;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
    cursor: pointer;
    flex-shrink: 0;
}

.form-checkbox label {
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
}

.form-checkbox a {
    color: #ffeb3b;
    text-decoration: underline;
}

.btn-submit {
    background: transparent;
    border: 3px solid #ff6f61;
    color: #ff6f61;
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #ff6f61;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 111, 97, 0.5);
}

/* Blog Section */
.blog-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: #ffeb3b;
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.6rem;
    color: #ffeb3b;
    margin-bottom: 1rem;
}

.blog-content p {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: #ff6f61;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: #ffeb3b;
}

/* Footer */
.main-footer {
    background: rgba(15, 76, 117, 0.95);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffeb3b;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer-section p {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffeb3b;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* Policy Pages */
.policy-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.policy-container {
    max-width: 900px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid #ff6f61;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.policy-container h1 {
    color: #0f4c75;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.policy-container h2 {
    color: #3282b8;
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-container p,
.policy-container ul {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.policy-container ul {
    padding-left: 2rem;
}

.policy-container li {
    margin-bottom: 0.8rem;
}

.policy-container a {
    color: #ff6f61;
    text-decoration: underline;
}

.policy-contact {
    background: rgba(15, 76, 117, 0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    border-left: 4px solid #ff6f61;
}

.policy-contact h3 {
    color: #0f4c75;
    margin-bottom: 1rem;
}

/* Thank You Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.thanks-container {
    max-width: 700px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 4rem 3rem;
    border-radius: 20px;
    border: 3px solid #ffeb3b;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
}

.thanks-container h1 {
    color: #0f4c75;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.thanks-container .btn-primary {
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body, html {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .nav-container {
        justify-content: center;
        padding: 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .logo {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .hero {
        margin-top: 70px;
    }
    
    .container {
        padding: 3rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .order-form-container {
        padding: 2rem 1.5rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .policy-container,
    .thanks-container {
        padding: 2rem 1.5rem;
    }
    
    .benefits-grid,
    .horoscope-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .horoscope-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.1rem;
    }
    
    .navbar {
        padding: 0.8rem;
    }
    
    .hero {
        margin-top: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

