:root {
    --primary-orange: #FF6700;
    /* Vibrant Orange */
    --accent-yellow: #FFD700;
    /* Yellow */
    --bg-main: #FFFFFF;
    --bg-card: #F9F9F9;
    --text-main: #121212;
    --text-muted: #555555;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
    --font-main: 'Outfit', sans-serif;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
button,
input,
textarea,
select {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.center-text {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-orange);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--accent-yellow);
    color: #000;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    background-color: var(--primary-orange);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 103, 0, 0.3);
}

/* Page Loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-text {
    font-size: 3rem;
    color: var(--primary-orange);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 0.5;
        transform: scale(0.95);
    }
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Advertisement Notice Top */
.ad-notice-top {
    background-color: #f0f0f0;
    color: #555;
    text-align: center;
    padding: 5px 10px;
    font-size: 0.8rem;
    border-bottom: 1px solid #ddd;
}

/* Header */
.header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eee;
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary-orange);
    text-decoration: none;
    text-transform: uppercase;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-desktop .nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-desktop a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: var(--primary-orange);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--text-main);
    transition: all 0.3s ease-in-out;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: #fff;
    z-index: 1001;
    transition: right 0.4s ease;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    border-left: 1px solid #eee;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-orange);
}

.close-menu {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-main);
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-link {
    font-size: 1.2rem;
    color: var(--text-main);
    text-decoration: none;
    display: block;
}

.mobile-cta {
    display: block;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: radial-gradient(circle at center, #fff 0%, #f9f9f9 100%);
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #121212, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-price {
    margin-bottom: 2rem;
}

.price-tag {
    font-size: 1.2rem;
    color: var(--primary-orange);
    font-weight: 600;
}

.hero-image-wrapper {
    flex: 1;
    position: relative;
}

.hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--bg-card);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

.section-content {
    flex: 1;
}

.section-description {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-box {
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
}

/* SVG Stroke Color Overrides can be handled via CSS if SVGs use currentColor, 
or by changing the SVG attributes in HTML. 
Assuming SVGs are inline, we can target path stroke. */
.icon-box svg path {
    stroke: var(--primary-orange);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-color: #FDFDFD;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    position: relative;
    border: 1px solid #eee;
    box-shadow: var(--shadow-card);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    color: var(--primary-orange);
    text-align: right;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    margin-bottom: 50px;
    background-color: #fff;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    color: var(--text-main);
    cursor: pointer;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-bottom: 0;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
}

/* Policy Section */
.policy-section {
    padding: 50px 0;
    background-color: #fafafa;
    text-align: center;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

.policy-content p {
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #bbb;
    padding: 60px 0 20px;
    border-top: 5px solid var(--primary-orange);
}

.footer-ad-note {
    background-color: #222;
    border: 1px solid #333;
    padding: 15px;
    margin-bottom: 40px;
    color: #ccc;
    font-size: 0.9rem;
    border-left: 4px solid var(--accent-yellow);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p,
.footer-col a {
    color: #999;
    margin-bottom: 0.8rem;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary-orange);
}

.bottom-footer {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.85rem;
}

.footer-ad-disclaimer {
    color: #777;
    margin-bottom: 15px;
    font-size: 0.8rem;
    line-height: 1.4;
    padding: 0 10px;
}

/* Cookie Consent */
.cookie-container {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: #fff;
    color: #333;
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: bottom 0.5s ease;
    display: flex;
    justify-content: center;
    border-top: 2px solid var(--primary-orange);
}

.cookie-container.active {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    justify-content: space-between;
}

.cookie-content a {
    color: var(--primary-orange);
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-api {
    padding: 8px 20px;
    background-color: var(--primary-orange);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #333;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 40px;
    border: none;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    color: #333;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--primary-orange);
    text-decoration: none;
    cursor: pointer;
}

.modal-body {
    margin-top: 20px;
    max-height: 60vh;
    overflow-y: auto;
    text-align: left;
    padding-right: 10px;
}

.modal-body p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .about-container {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}