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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #111827;
    color: #fff;
    line-height: 1.6;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Colors */
.text-yellow { color: #eab308; }
.text-green { color: #22c55e; }
.text-red { color: #ef4444; }
.logo-yellow { color: #facc15; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
}

.btn-yellow {
    background: #eab308;
    color: #111827;
}

.btn-yellow:hover {
    background: #facc15;
    box-shadow: 0 10px 25px rgba(234, 179, 8, 0.3);
}

.btn-green {
    background: #16a34a;
    color: #fff;
}

.btn-green:hover {
    background: #22c55e;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #1f2937;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: #eab308;
}

.header-buttons {
    display: none;
    gap: 0.75rem;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    border-top: 1px solid #1f2937;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: #9ca3af;
    text-decoration: none;
    padding: 0.5rem 0;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    .header-buttons {
        display: flex;
    }
    .mobile-menu-btn {
        display: none;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    background: #111827;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fbbf24' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    display: grid;
    gap: 3rem;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 9999px;
    color: #eab308;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #eab308;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 0.5rem;
}

.hero-desc {
    color: #9ca3af;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.phone-display {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #9ca3af;
}

.phone-display span {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
}

.feature-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid #374151;
    border-radius: 1rem;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(234, 179, 8, 0.5);
    transform: translateY(-4px);
}

.feature-icon {
    padding: 0.75rem;
    background: rgba(234, 179, 8, 0.1);
    border-radius: 0.75rem;
    height: fit-content;
}

.feature-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 3.5rem;
    }
    .hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    .hero h1 {
        font-size: 4rem;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    border-radius: 9999px;
    color: #eab308;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: #9ca3af;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

/* Products Section */
.products {
    padding: 5rem 0;
    background: #030712;
}

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

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: #1f2937;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #374151;
    transition: all 0.5s;
}

.product-card:hover {
    border-color: rgba(234, 179, 8, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(234, 179, 8, 0.1);
}

.product-image {
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-info {
    padding: 1.25rem;
}

.product-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.product-card:hover .product-info h3 {
    color: #eab308;
}

.product-buttons {
    display: flex;
    gap: 0.5rem;
}

.product-buttons .btn {
    flex: 1;
    justify-content: center;
}

.products-cta {
    text-align: center;
    margin-top: 4rem;
}

.products-cta p {
    color: #9ca3af;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #111827;
}

.about-content {
    display: grid;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.about-left h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-left p {
    color: #9ca3af;
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.stat-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: rgba(234, 179, 8, 0.5);
    transform: translateY(-4px);
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(234, 179, 8, 0.1);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9ca3af;
    font-weight: 500;
}

@media (min-width: 768px) {
    .about-left h2 {
        font-size: 2.5rem;
    }
    .stat-value {
        font-size: 2.5rem;
    }
}

/* Reviews Section */
.reviews {
    padding: 5rem 0;
    background: #030712;
}

.reviews-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.review-card {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: border-color 0.3s;
}

.review-card:hover {
    border-color: rgba(234, 179, 8, 0.3);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.review-avatar {
    width: 3rem;
    height: 3rem;
    background: rgba(234, 179, 8, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eab308;
    font-weight: 700;
    font-size: 1.125rem;
}

.review-info h4 {
    font-weight: 600;
}

.review-info span {
    color: #6b7280;
    font-size: 0.875rem;
}

.review-stars {
    margin-left: auto;
    color: #eab308;
    font-size: 1.125rem;
}

.star-half {
    opacity: 0.5;
}

.review-card > p {
    color: #9ca3af;
    line-height: 1.7;
}

/* Review Form */
.review-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 2rem;
}

.review-form-container h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    color: #d1d5db;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #111827;
    border: 1px solid #374151;
    border-radius: 0.75rem;
    color: #fff;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #eab308;
}

.form-group textarea {
    resize: none;
}

.star-rating {
    display: flex;
    gap: 0.5rem;
}

.star-rating .star {
    font-size: 1.75rem;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.2s;
}

.star-rating .star:hover {
    transform: scale(1.1);
}

.star-rating .star.active {
    color: #eab308;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #111827;
}

.contact-content {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

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

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid #374151;
    border-radius: 1rem;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

a.contact-card:hover {
    border-color: rgba(234, 179, 8, 0.5);
}

.contact-icon {
    padding: 1rem;
    border-radius: 0.75rem;
}

.contact-icon.yellow {
    background: rgba(234, 179, 8, 0.1);
}

.contact-icon.green {
    background: rgba(34, 197, 94, 0.1);
}

.contact-card h3 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-card p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.contact-card p strong {
    color: #fff;
}

.map-container {
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid #374151;
    border-radius: 1rem;
    overflow: hidden;
}

.map-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border-bottom: 1px solid #374151;
    font-weight: 600;
}

.map-footer {
    padding: 1rem;
    background: #1f2937;
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Footer */
.footer {
    background: #030712;
    border-top: 1px solid #1f2937;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.footer-buttons {
    display: flex;
    gap: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #eab308;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #9ca3af;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 2rem;
    border-top: 1px solid #1f2937;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Toast */
.toast {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: #1f2937;
    border: 1px solid #374151;
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: transform 0.3s;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #4b5563;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* Selection */
::selection {
    background: #eab308;
    color: #111827;
}