@import url('variables.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;600;700&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

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

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: -29px auto;
    padding: 0 var(--spacing-sm);
}

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

.btn-primary {
    background-color: var(--color-accent-gold);
    color: var(--color-bg-primary);
    padding: 12px 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--color-accent-gold);
    transition: all var(--transition-fast);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent-gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-text-primary);
    padding: 12px 24px;
    font-weight: 500;
    border: 1px solid var(--color-text-primary);
    transition: all var(--transition-fast);
}


/* Announcement Bar */
.announcement-bar {
    background-color: var(--color-accent-green);
    color: #fff;
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Header */
.main-header {
    background-color: var(--color-bg-primary);
    /* Fallback/Initial */
    padding: -10;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    transition: background-color var(--transition-fast);
}

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

.logo-img {
    height: 120px;
    /* Increased for better visibility */
    width: auto;
    max-width: 250px;
    /* Ensure it doesn't get too wide on small screens */
    object-fit: contain;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-accent-gold);
    transition: width var(--transition-fast);
}

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

.header-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.icon-link {
    font-size: 1.2rem;
    color: var(--color-text-primary);
}

.icon-link:hover {
    color: var(--color-accent-gold);
}

.whatsapp-btn-header {
    padding: 8px 16px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

/* Hero Section Premium 3D */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 70% 50%, #1a251b 0%, #050505 70%);
    /* Extended dark green-black gradient */
}

.hero-bg-accent {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: pulseGlow 8s infinite alternate;
}

.hero-container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-text-content {
    animation: slideInLeft 1s ease-out;
}

.hero-text-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.shimmer-text {
    background: linear-gradient(45deg, var(--color-accent-gold) 30%, #fff 50%, var(--color-accent-gold) 70%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 5s infinite;
}

.hero-subtext {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
    border-left: 3px solid var(--color-accent-gold);
    padding-left: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.glass-btn {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badges-hero {
    display: flex;
    gap: 2rem;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-badges-hero i {
    color: var(--color-accent-gold);
    margin-right: 8px;
}

/* 3D Visuals */
.hero-visual-3d {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.glowing-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.2);
    /* box-shadow: 0 0 50px rgba(212, 175, 55, 0.1); */
    animation: spinSlow 30s linear infinite;
}

.glowing-circle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -5px;
    width: 10px;
    height: 10px;
    background: var(--color-accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-accent-gold);
}

.floating-3d-obj {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    animation: float3D 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

/* Animations */
@keyframes float3D {

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

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

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

@keyframes pulseGlow {
    from {
        opacity: 0.5;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive Hero */
@media (max-width: 768px) {
    .hero-container-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text-content {
        order: 2;
        /* Text below image on mobile for better flow */
        padding: 0 1rem;
    }

    .hero-visual-3d {
        order: 1;
        height: 350px;
        /* Smaller height for mobile */
    }

    .floating-3d-obj {
        max-width: 300px;
    }

    .glowing-circle {
        width: 250px;
        height: 250px;
    }

    .hero-text-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtext {
        margin-left: auto;
        margin-right: auto;
        border-left: none;
        padding-left: 0;
    }

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

    .trust-badges-hero {
        justify-content: center;
    }
}

/* Sections Common */
.section-padding {
    padding: var(--spacing-lg) 0;
}

.bg-darker {
    background-color: #080808;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xs);
}

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

.section-subtitle {
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    font-size: 1.1rem;
}

.mt-4 {
    margin-top: 2rem;
    display: inline-block;
}

/* Trust Icons */
.trust-icons-section {
    background-color: var(--color-bg-secondary);
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--color-border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.trust-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.trust-item p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

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

.product-card {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--color-accent-gold);
}

.product-image {
    position: relative;
    height: 300px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    height: 90%;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--color-accent-green);
    color: #fff;
    padding: 4px 8px;
    font-size: 0.8rem;
    border-radius: 4px;
    font-weight: 600;
}

.product-actions {
    position: absolute;
    right: 10px;
    top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateX(50px);
    opacity: 0;
    transition: all var(--transition-fast);
}

.product-card:hover .product-actions {
    transform: translateX(0);
    opacity: 1;
}

.action-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: background-color var(--transition-fast);
}

.action-btn:hover {
    background-color: var(--color-accent-gold);
    color: #fff;
}

.product-info {
    padding: 1.5rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.rating {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-accent-gold);
}

.size-selector {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.size-btn {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-text-secondary);
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.size-btn.active,
.size-btn:hover {
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
}

.btn-full {
    width: 100%;
}

/* USP Section */
.usp-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead-text {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--color-accent-gold);
}

.usp-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.point i {
    font-size: 1.5rem;
    margin-top: 5px;
    width: 30px;
}

.point h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #fff;
}

.point p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.img-placeholder-dark {
    width: 100%;
    height: 400px;
    background-color: #1a1a1a;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    gap: 1rem;
}

.img-placeholder-dark i {
    font-size: 3rem;
    opacity: 0.5;
}

/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 3rem;
    position: relative;
}

.step-card {
    text-align: center;
    flex: 1;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--color-bg-primary);
    border: 2px solid var(--color-accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: var(--color-accent-gold);
    position: relative;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--color-accent-green);
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-divider {
    flex: 0 0 100px;
    height: 2px;
    background-color: var(--color-border);
    margin-top: 40px;
    /* aligns with center of icon approx */
}

@media (max-width: 768px) {

    /* Container & Layout */
    .container {
        padding: 0 1rem;
        margin: 0 auto;
        /* Reset margins for mobile */
    }

    /* Header */
    .header-container {
        padding: 0.5rem 0;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        /* Adjust based on header height */
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--color-bg-primary);
        transition: left 0.3s ease;
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
        border-top: 1px solid var(--color-border);
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .main-nav a {
        font-size: 1.5rem;
    }

    .header-icons {
        gap: 1rem;
    }

    .whatsapp-btn-header span {
        display: none;
        /* Hide text on mobile header btn */
    }

    .whatsapp-btn-header {
        padding: 8px;
        /* Square btn */
    }

    .mobile-menu-toggle {
        display: block;
        margin-left: 1rem;
    }

    /* Hero */
    .hero-section {
        height: auto;
        min-height: 80vh;
        padding-top: 4rem;
        /* Spacer for fixed header */
        text-align: center;
    }

    .hero-bg .overlay {
        background: rgba(18, 18, 18, 0.6);
        /* Darker overlay for readability */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    /* Grids & Sections */
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 cols on mobile */
        gap: 1.5rem;
    }

    .usp-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .img-placeholder-dark {
        height: 250px;
        order: -1;
        /* Image first on mobile */
    }

    .process-steps {
        flex-direction: column;
        gap: 2rem;
        margin-top: 1rem;
    }

    .step-divider {
        display: none;
    }

    .step-card {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .reviews-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-col {
        text-align: center;
    }

    .footer-logo {
        margin: 0 auto 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

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

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

.review-card {
    background-color: var(--color-bg-secondary);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.review-stars {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--color-text-primary);
}

.reviewer-info {
    font-weight: 600;
    color: var(--color-accent-gold);
    display: flex;
    justify-content: space-between;
}

.reviewer-info .city {
    color: var(--color-text-secondary);
    font-weight: 400;
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 0;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.2rem;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    color: var(--color-text-primary);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-accent-gold);
    transition: transform var(--transition-fast);
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 1.2rem 1.2rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    border-top: 1px solid transparent;
}

.faq-item[open] .faq-content {
    border-top-color: var(--color-border);
    padding-top: 1.2rem;
}

/* Footer */
.main-footer {
    background-color: #050505;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
}

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

.footer-logo {
    width: 150px;
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--color-text-primary);
    font-size: 1.2rem;
    transition: color var(--transition-fast);
}

.social-links a:hover {
    color: var(--color-accent-gold);
}

.footer-col h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-accent-gold);
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a,
.footer-col ul li {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--color-accent-gold);
    padding-left: 5px;
}

.footer-col ul li i {
    color: var(--color-accent-gold);
    margin-right: 10px;
    width: 15px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding: 1.5rem 0;
    text-align: center;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    /* WhatsApp Brand Color */
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    z-index: 1001;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .floating-whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
}