:root {
    --primary: #E85B64;
    --primary-dark: #D1454E;
    --secondary: #2EA364;
    --accent: #85685B;
    --dark: #292F36;
    --light: #F7FFF7;
    --gray: #4A5568;
    --gray-light: #E9ECEF;
    --white: #FFFFFF;
    
    --gradient: linear-gradient(135deg, var(--primary) 0%, #FF8A8E 100%);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    /* Borders */
    --radius-sm: 1rem;
    --radius-md: 1.5rem;
    --radius-lg: 2.5rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

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

ul {
    list-style: none;
}

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

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

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.text-gradient {
    background: var(--gradient);
    background-size: 200% 200%;
    animation: gradientMove 5s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glassmorphism utility */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    border: none;
}

.btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-primary {
    background: var(--gradient);
    background-size: 200% 200%;
    animation: gradientMove 5s ease infinite;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(232, 91, 100, 0.3);
}

.btn-primary:hover:not(:disabled) {
    box-shadow: 0 15px 30px rgba(232, 91, 100, 0.4);
}

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

.btn-secondary:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
}

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

.btn-full {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-light);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    min-height: 160px;
}

.nav-logo-img {
    height: 140px;
    width: auto;
    transition: transform 0.3s;
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

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

.nav-links a {
    font-weight: 500;
    color: var(--gray);
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-centered {
    padding-top: 230px;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.mega-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

.subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.15rem;
}

.hero-image-massive {
    margin-top: 4rem;
    width: 100%;
    max-width: 1000px;
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-massive::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    border-radius: 50%;
}

.massive-image-card {
    padding: 1rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    animation: floatMassive 6s ease-in-out infinite;
    transform-origin: center bottom;
    width: 100%;
}

.hero-img-rounded {
    width: 100%;
    height: auto;
    border-radius: 1.5rem;
    display: block;
    object-fit: cover;
}

@keyframes floatMassive {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Hero Slider */
.slider-container {
    position: relative;
    width: 100%;
}

.slide {
    display: none;
    width: 100%;
}

.slide.active {
    display: block;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
}

.next {
    right: 1rem;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 1rem;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.slider-dots {
    position: absolute;
    bottom: 25px;
    width: 100%;
    text-align: center;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
    background-color: #fff;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.blob-1 {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: var(--primary);
}

.blob-2 {
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--secondary);
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

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

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(78, 205, 196, 0.1);
    color: var(--secondary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

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

.hero p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-alert {
    background: rgba(255, 107, 107, 0.1);
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    max-width: 90%;
}

.hero-image-wrapper {
    position: relative;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-image-card {
    padding: 1rem;
    transform: rotate(3deg);
    transition: transform 0.5s;
}

.hero-image-card:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-img {
    border-radius: var(--radius-md);
    object-fit: cover;
}

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

.section-header {
    margin-bottom: 4rem;
}

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

.mt-5 {
    margin-top: 5rem;
}

.category-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-light);
    text-align: center;
}

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

.catalog-grid.single-item-grid {
    display: flex;
    justify-content: center;
}

.catalog-grid.single-item-grid .catalog-card {
    width: 100%;
    max-width: 450px;
}

.catalog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.catalog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.catalog-img-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    height: auto;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: transparent;
    display: block; /* Override flex for mini slider */
}

/* Mini Slider for Catalog */
.mini-slider .catalog-img {
    position: absolute;
    top: 1.5rem; /* account for original padding */
    left: 1.5rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 0.5s;
}

.mini-slider .catalog-img.active {
    opacity: 1;
}

.catalog-card:hover .mini-slider .catalog-img.active {
    transform: scale(1.05);
}

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

.coming-soon-placeholder {
    background: var(--gray-light);
    flex-direction: column;
    gap: 1rem;
}

.emoji-bg {
    background: linear-gradient(135deg, rgba(255,107,107,0.1) 0%, rgba(78,205,196,0.1) 100%);
}

.emoji-large {
    font-size: 6rem;
    line-height: 1;
}

.catalog-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.catalog-info h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.catalog-info p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
    text-align: left;
    font-size: 0.95rem;
    color: var(--gray);
}

.features-list li {
    margin-bottom: 0.5rem;
}

.price-details {
    background: rgba(255, 255, 255, 0.5);
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    text-align: left;
    font-size: 0.95rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
}

.price-row.highlight {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px dashed var(--gray-light);
}

.deposit-note {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.5rem;
    text-align: right;
}

.price-tag {row: 1;
}

.catalog-price {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.catalog-price small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray);
}

/* Advantages */
.advantages-section {
    background: linear-gradient(to bottom, var(--white), var(--light));
}

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

.advantage-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s;
}

.advantage-card:hover {
    transform: translateY(-10px);
}

.advantage-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.advantage-card h3 {
    font-size: 1.5rem;
}

.advantage-card p {
    color: var(--gray);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    text-align: left;
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    position: absolute;
    top: -30px;
    left: 2rem;
    border: 4px solid var(--white);
}

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

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--dark);
}

/* Contact */
.contact-section {
    position: relative;
    overflow: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
}

.contact-info {
    background: var(--primary);
    color: var(--white);
    padding: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.contact-details li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-form-container {
    padding: 4rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
    background: var(--light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
}

/* Footer */
.footer {
    background: #FFF9F9;
    color: var(--dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--gray-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
}

.footer-brand p {
    color: var(--gray);
    margin-top: 1rem;
    font-weight: 500;
}

.footer-contact h4, .footer-links h4 {
    color: var(--primary);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-contact p {
    color: var(--dark);
    font-weight: 500;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-links a {
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Downloads */
.downloads-section {
    background: linear-gradient(to top, var(--white), var(--light));
}

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

.download-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--dark);
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.download-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.download-card h3 {
    margin-bottom: 1rem;
}

.download-card p {
    color: var(--gray);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 1rem;
}

/* Alert Banner */
.alert-banner {
    background: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, #ff4b4b 100%);
    color: var(--white);
    text-align: center;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    position: relative;
    z-index: 900;
    margin-top: 176px; /* offset for fixed navbar */
}

.alert-banner p {
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

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

.faq-item {
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 1rem;
}

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

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--gray);
    margin: 0;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .mega-title { font-size: 3.5rem; }
    .hero h1 { font-size: 3.5rem; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-alert { max-width: 100%; text-align: left; }
    .hero-actions { justify-content: center; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .features-grid, .downloads-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-logo-img { height: 70px; }
    .nav-content { min-height: 90px; }
    .nav-cta { padding: 0.6rem 1.2rem; font-size: 0.9rem; }
    .alert-banner { margin-top: 106px; }
    .mega-title, .hero h1 { font-size: 2.8rem; }
    .advantages-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .contact-info, .contact-form-container { padding: 2rem; }
    .footer-content { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
    .footer-contact p { justify-content: center; }
    
    /* Mobile Contrast Fixes */
    .blob {
        opacity: 0.2;
        filter: blur(60px);
    }
    .hero-text {
        background: rgba(247, 255, 247, 0.7);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 1.5rem;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        border: 1px solid rgba(255, 255, 255, 0.6);
        margin-bottom: 2rem;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .hero-actions .btn {
        width: 100%;
    }
}
