/* CSS Variables & Reset */
:root {
    --primary-color: #F97316;
    /* Professional Orange */
    --primary-light: #FF8B3D;
    --primary-dark: #C2410C;
    --secondary-color: #111827;
    /* Dark Gray/Black */
    --text-color: #1F2937;
    --text-light: #6B7280;
    --bg-color: #FFFFFF;
    --bg-accent: #FFF7ED;
    /* Very Light Orange */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --max-width: 1200px;
    --border-radius: 12px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Box Sizing */
.box-sizing-border {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Base Utility Classes */
.link-base {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.list-reset {
    list-style: none;
}

.img-fluid {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
/* Typography Utilities */
.heading-style {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

.highlight {
    color: var(--primary-color);
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.logo-text {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(249, 115, 22, 0.2);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Ad Top Bar */
.ad-disclaimer-top {
    background-color: var(--secondary-color);
    color: #fff;
    font-size: 0.75rem;
    text-align: center;
    padding: 8px 0;
    position: relative;
    z-index: 1001;
    letter-spacing: 0.5px;
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.logo::after {
    content: '.';
    color: var(--primary-color);
}

.nav-list {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* Hamburger */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-btn .bar {
    width: 28px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.menu-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
}

.close-menu-btn {
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--text-color);
    cursor: pointer;
    line-height: 1;
}

.mobile-menu-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mobile-link {
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: none;
    color: inherit;
}

.mobile-cta {
    margin-top: auto;
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-accent);
}

.hero-bg-accent {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.eyebrow {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.secondary-btn {
    font-weight: 600;
    color: var(--text-color);
    padding: 0.8rem 1.5rem;
}

.secondary-btn:hover {
    color: var(--primary-color);
}

.hero-image-wrapper {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-backdrop {
    position: absolute;
    width: 350px;
    height: 350px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.main-img {
    position: relative;
    z-index: 2;
    transform: rotate(-15deg) scale(1.1);
    filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.2));
    transition: transform 0.5s ease;
}

.floating-detail {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 180px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    border: 4px solid #fff;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.hero-image-wrapper:hover .main-img {
    transform: rotate(-10deg) scale(1.15);
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

.center-text {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    margin: 0 auto 1.5rem;
}

.section-header:not(.center-text) .section-line {
    margin: 0 0 1.5rem 0;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.about-text-col h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-paragraph {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.check-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-weight: 500;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 800;
}

/* Why Us */
.why-us-section {
    background: var(--bg-accent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 30px;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.detail-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-img {
    border-radius: 15px;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
    width: 100%;
}

.gallery-img:hover {
    transform: scale(1.05);
}

/* Testimonials */
.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--secondary-color);
    color: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
}

.stars {
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.quote {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.verified {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.7;
    font-weight: 400;
}

/* FAQ */
.faq-section {
    background: #fff;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.02);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
}

.accordion-btn::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: 0.3s;
}

.accordion-btn.active::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    color: var(--text-light);
}

.accordion-text {
    padding-bottom: 1.5rem;
}

/* Footer */
.main-footer {
    background: var(--secondary-color);
    color: #fff;
    padding-top: 0;
}

.footer-ad-note {
    background: #000;
    text-align: center;
    padding: 12px;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-content {
    padding: 5rem 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.brand-text {
    color: #9CA3AF;
    font-size: 0.95rem;
}

.footer-heading {
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.1rem;
}

.footer-list-item {
    margin-bottom: 1rem;
    color: #9CA3AF;
    font-size: 0.95rem;
}

.footer-link-active {
    transition: 0.3s;
    text-decoration: none;
    color: inherit;
}

.footer-link-active:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.consumer-notice {
    background: #000;
    color: #6B7280;
    text-align: center;
    font-size: 0.75rem;
    padding: 1.5rem 0;
    border-top: 1px solid #374151;
}

.footer-bottom {
    background: #000;
    text-align: center;
    padding: 1.5rem;
    color: #4B5563;
    font-size: 0.85rem;
    border-top: 1px solid #1f2937;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -150px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-left: 5px solid var(--primary-color);
    margin: 0 auto;
}

.cookie-popup.show {
    bottom: 20px;
}

.cookie-notice-title {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.cookie-notice-text {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept,
.btn-reject {
    padding: 8px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-accept {
    background: var(--primary-color);
    color: #fff;
}

.btn-reject {
    background: #f3f4f6;
    color: #374151;
}

/* Responsive */
@media (max-width: 900px) {

    .desktop-nav,
    .header-cta {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-image-wrapper {
        height: 350px;
        order: -1;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image-col {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .detail-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .detail-gallery {
        grid-template-columns: 1fr;
    }

    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: -200px;
    }

    .cookie-popup.show {
        bottom: 10px;
    }

    .menu-header {
        padding: 15px 20px;
    }
}