/* CSS Variables */
:root {
    --primary-orange: #FF6B00;
    --primary-dark: #E65100;
    --accent-yellow: #FFC107;
    --primary-light: #FFF3E0;
    --text-black: #212121;
    --text-grey: #546e7a;
    --bg-white: #ffffff;
    --bg-warm: #fffbf5;
    --border-color: #ffe0b2;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --max-width: 1200px;
    --header-height: 80px;
    --shadow-soft: 0 10px 30px rgba(255, 107, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(255, 107, 0, 0.2);
}

/* Reset & Typography */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    color: var(--text-black);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-black);
}

p {
    margin: 0 0 1rem 0;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn {
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-orange));
    color: var(--text-black);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-yellow));
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.primary-btn:hover::before {
    opacity: 1;
}

.secondary-btn {
    background-color: white;
    color: var(--primary-dark);
    border: 2px solid var(--primary-orange);
}

.secondary-btn:hover {
    background-color: var(--primary-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 6px;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Advertisement Note Top */
.top-ad-note {
    background-color: var(--text-black);
    color: var(--accent-yellow);
    font-size: 0.85rem;
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-warm);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

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

.loader-brand {
    font-size: 3rem;
    background: linear-gradient(to right, var(--primary-orange), var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-weight: 800;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 107, 0, 0.1);
    border-top: 4px solid var(--primary-orange);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

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

.brand-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-black);
    letter-spacing: -0.5px;
}

.brand-logo span {
    color: var(--primary-orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-black);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta-btn {
    background: linear-gradient(to right, var(--primary-orange), var(--primary-dark));
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.2);
}

.nav-cta-btn::after {
    display: none;
    /* No underline for button */
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.3);
    color: white;
}

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

.bar {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--text-black);
    margin: 6px auto;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: white;
    z-index: 200;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    border-bottom: 2px solid var(--primary-light);
    padding-bottom: 20px;
}

.mobile-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-black);
}

.close-menu {
    font-size: 3rem;
    cursor: pointer;
    color: var(--primary-orange);
    transition: transform 0.3s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-menu:hover {
    transform: rotate(90deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-links a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-black);
    transition: color 0.3s;
}

.mobile-nav-links a:hover {
    color: var(--primary-orange);
    padding-left: 10px;
}

.mobile-cta-btn {
    margin-top: 20px;
    background: linear-gradient(to right, var(--primary-orange), var(--primary-dark)) !important;
    color: white !important;
    text-align: center;
    border-radius: 8px;
    padding: 15px !important;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-warm) 0%, #fff 100%);
    display: flex;
    align-items: center;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

/* Background blob for attractiveness */
.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 107, 0, 0.1);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 25px;
    color: var(--text-black);
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary-orange);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-grey);
    margin-bottom: 40px;
    max-width: 550px;
    line-height: 1.7;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    width: 85%;
    height: 85%;
    background-color: var(--accent-yellow);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
    filter: blur(40px);
}

.hero-img {
    width: 100%;
    max-width: 550px;
    transform: rotate(-12deg) translateY(-20px);
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.15));
    transition: all 0.5s ease;
}

.hero-img:hover {
    transform: rotate(0deg) scale(1.05) translateY(0);
}

/* Section Common */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: var(--text-black);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.header-line {
    width: 80px;
    height: 6px;
    background: linear-gradient(to right, var(--accent-yellow), var(--primary-orange));
    margin: 0 auto;
    border-radius: 30px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-yellow);
    border-radius: 15px;
    z-index: -1;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.about-image:hover img {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

/* Why Us Section */
.why-us-section {
    background-color: var(--bg-warm);
    position: relative;
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.feature-card::top {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--accent-yellow), var(--primary-orange));
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    padding: 15px;
    background-color: var(--primary-light);
    border-radius: 50%;
    color: var(--primary-dark);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.feature-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.04);
    text-align: center;
    border-bottom: 4px solid var(--accent-yellow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: scale(1.02);
}

.rating {
    color: var(--accent-yellow);
    margin-bottom: 20px;
    font-size: 1.4rem;
    letter-spacing: 5px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 25px;
    line-height: 1.8;
}

.author {
    font-weight: 800;
    color: var(--text-black);
    font-size: 1.1rem;
}

/* FAQs */
.faq-section {
    background-color: #fcfcfc;
}

.faq-container {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 10px;
}

.faq-item {
    background-color: white;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-black);
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: var(--bg-warm);
    color: var(--primary-orange);
}

.toggle-icon {
    font-size: 1.8rem;
    color: var(--primary-orange);
    transition: transform 0.3s;
    font-weight: 300;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 30px;
    background-color: white;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 30px;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

/* Footer */
.footer {
    background-color: #111;
    color: white;
    padding: 100px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-orange), var(--accent-yellow), var(--primary-orange));
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 70px;
}

.footer-brand {
    font-size: 2rem;
    color: white;
    font-weight: 800;
    display: block;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.branding-col p {
    color: #999;
    font-size: 1rem;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-orange);
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: #bbb;
    transition: all 0.3s;
}

.links-col ul li a:hover {
    color: var(--primary-orange);
    padding-left: 8px;
}

.contact-col p,
.legal-col p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-col strong,
.legal-col strong {
    color: white;
}

.footer-ad-note {
    border-top: 1px solid #333;
    padding: 30px 0;
    color: #777;
    font-size: 0.85rem;
    text-align: center;
    margin-bottom: 0;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    color: #555;
    font-size: 0.9rem;
    padding-top: 20px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -150px;
    left: 0;
    width: 100%;
    background-color: white;
    color: var(--text-black);
    padding: 25px;
    z-index: 1000;
    transition: bottom 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    justify-content: center;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-orange);
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-width);
    gap: 30px;
}

.cookie-content p {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.cookie-content a {
    color: var(--primary-orange);
    text-decoration: underline;
    font-weight: 700;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-buttons .btn {
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
}

#reject-cookies {
    color: var(--text-grey);
    border-color: #ddd;
}

#reject-cookies:hover {
    color: var(--text-black);
    border-color: var(--text-black);
    background-color: transparent;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
    }

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

    .hero-image-wrapper {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-subtitle {
        margin: 0 auto 20px;
    }

    .hero-content {
        order: 2;
    }

    .hero-description {
        margin: 0 auto 30px;
    }

    .hero-image-wrapper {
        order: 1;
        margin-bottom: 20px;
    }

    .hero-img {
        max-width: 80%;
        transform: rotate(-5deg);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-header h2 {
        font-size: 2.4rem;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
        flex-wrap: wrap;
        gap: 15px;
        align-items: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        /* Reduced for better fit */
        word-wrap: break-word;
        /* Prevent long words breaking layout */
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .btn {
        width: 100%;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .links-col ul li a:hover {
        padding-left: 0;
        color: var(--primary-orange);
    }
}