/* Global Styles */
:root {
    --bg-light: #ffffff;
    --navbar-bg: #020617;
    --primary: #c5a059;
    --primary-hover: #a88a5e;
    --text-main: #0f172a;
    --text-muted: #475569;
    --accent-bg: #f8fafc;
    --glass: rgba(255, 255, 255, 0.8);
    --border: rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.gradient-text {
    background: linear-gradient(135deg, #0f172a 0%, #c5a059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-break {
    display: none;
}

.accent-text {
    color: var(--primary);
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* Glassmorphism */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(197, 160, 89, 0.2);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(197, 160, 89, 0.3);
}

.btn-outline {
    border: 1.5px solid var(--text-main);
    color: var(--text-main);
}

.btn-outline:hover {
    background: var(--text-main);
    color: white;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.w-full {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s ease;
}

.navbar-dark {
    background: var(--navbar-bg);
}

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

.logo img {
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: #94a3b8;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: white;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 12rem 0 6rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, #f1f5f9, #ffffff);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.main-hero-card {
    padding: 0 !important;
    overflow: hidden;
    border-radius: 32px;
}

.main-hero-card img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

.main-hero-card:hover img {
    transform: scale(1.1);
}

.badge {
    background: rgba(197, 160, 89, 0.1);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

/* Trust Bar */
.trust-bar {
    padding: 3rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.trust-val {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-main);
}

.trust-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

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

.feature-card {
    padding: 3rem;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Product Pricing Section */
.product-pricing {
    padding: 8rem 0;
    background-color: var(--accent-bg);
}

.pricing-wrapper {
    display: block;
    max-width: 900px;
    margin: 0 auto;
}

.product-visuals {
    margin: 2rem 0;
    width: 100%;
}

.carousel-container {
    position: relative;
    height: 100%;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 32px;
    height: 100%;
}

.carousel-track {
    display: flex;
    list-style: none;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide .glass-card {
    height: 100%;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card {
    padding: 4rem;
    display: flex;
    flex-direction: column;
}

.savings-badge {
    background: linear-gradient(45deg, var(--primary), #d4af37);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    width: fit-content;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    animation: pulse-gold 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes pulse-gold {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 25px rgba(197, 160, 89, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    }
}

.product-card h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.tagline {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 2rem;
}

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

.old-price {
    font-size: 1.4rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-right: 1rem;
}

.curr-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
}

.check-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.check-list i {
    color: #059669;
}

.trust-line {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Carousel */
.carousel-container {
    position: relative;
}

.carousel-track-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.carousel-track-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.carousel-track {
    display: flex;
    list-style: none;
}

.carousel-slide {
    min-width: 100%;
    scroll-snap-align: start;
}

.carousel-slide img {
    width: 100%;
    display: block;
}

.carousel-button {
    display: none;
}

.zoom-tool {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.6rem;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
    z-index: 20;
}

.zoom-tool:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.carousel-button:hover {
    background: var(--primary);
    color: white;
}

.carousel-button--left { left: 1rem; }
.carousel-button--right { right: 1rem; }

/* Why Choose Us Section */
.why-us {
    padding: 8rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-item {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: transform 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

/* Lead Magnet Quotes */
.lead-magnet {
    padding: 6rem 0;
    background: var(--navbar-bg);
    color: white;
}

.quote-card {
    max-width: 600px;
    margin: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
    margin-bottom: 2rem;
}

.quote-card blockquote {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.quote-card cite {
    font-size: 1.1rem;
    color: #94a3b8;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 8rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    padding: 4rem !important;
}

.contact-info h2 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-details {
    margin-top: 3rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-item i {
    width: 48px;
    height: 48px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.1);
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-status.success {
    color: #059669;
    padding: 1rem;
    background: #ecfdf5;
    border-radius: 12px;
}

.form-status.error {
    color: #dc2626;
    padding: 1rem;
    background: #fef2f2;
    border-radius: 12px;
}

/* Footer */
footer {
    padding: 4rem 0;
    background: var(--navbar-bg);
    color: white;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    height: 60px;
    margin-bottom: 0.5rem;
}

.sub-brand {
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-links-group {
    display: flex;
    gap: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    color: #475569;
    font-size: 0.85rem;
}

/* Legal Pages Styling */
.legal {
    padding: 8rem 0;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.legal-text h3 {
    margin: 2.5rem 0 1rem;
}

.legal-text p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.acknowledgement-box {
    margin-top: 4rem;
    padding: 2rem;
    border: 1px solid var(--primary);
    border-radius: 20px;
    background: rgba(197, 160, 89, 0.03);
    text-align: center;
}

.acknowledgement-box p:first-child {
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.acknowledgement-box p:last-child {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.2rem;
    }

    h2 { font-size: 1.8rem !important; line-height: 1.3; }
    h3 { font-size: 1.5rem !important; }

    nav .container {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .logo {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .logo img {
        height: 60px; /* Slightly smaller for better mobile fit */
    }

    .menu-toggle {
        display: none !important;
    }

    .nav-links {
        display: none; /* Hide nav links for clean center logo */
    }

    .hero {
        padding: 9rem 0 3rem;
        text-align: center;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 2.8rem !important;
    }

    .mobile-break {
        display: block;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .pricing-wrapper {
        display: block;
        width: 100%;
        text-align: center;
    }

    .product-card {
        padding: 2.5rem 1.5rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .quote-card {
        width: 100%;
        max-width: 350px;
        padding: 2.5rem 1.5rem;
    }

    .quote-card blockquote {
        font-size: 1.4rem;
    }

    .check-list {
        display: inline-block;
        text-align: left;
        margin: 1.5rem auto;
    }

    .trust-grid {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
        width: 100%;
    }

    .trust-item {
        flex: 1 1 auto;
        min-width: 80px;
    }

    .trust-val {
        font-size: 1.3rem;
    }

    .trust-label {
        font-size: 0.7rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem !important;
        gap: 2rem;
        width: 100%;
        margin: 0 auto;
    }
    
    .contact-info h2 {
        font-size: 1.8rem !important;
    }

    .contact-details {
        display: inline-block;
        text-align: left;
        margin: 1.5rem auto 0;
        width: auto;
    }
    
    .detail-item {
        justify-content: flex-start;
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .detail-item i {
        min-width: 36px;
        width: 36px;
        height: 36px;
    }
    
    .detail-item span {
        font-size: 0.9rem;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2.5rem;
        width: 100%;
    }

    .footer-links-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .footer-col {
        align-items: center;
        text-align: center;
    }
    
    .features-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card,
    .why-item {
        aspect-ratio: auto;
        padding: 2rem;
    }

    .features-section,
    .product-pricing,
    .why-us,
    .contact-section {
        padding: 3rem 0;
    }

    .legal {
        padding: 3rem 0;
        text-align: center;
    }
    
    .legal-content h1 {
        font-size: 2.5rem;
    }
}

/* Image Zoom Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}
