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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    background: #fff;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

/* Navbar */
.navbar {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 900;
    color: #1a1a1a;
}

.logo span { color: #DA291C; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 15px;
    color: #444;
    transition: 0.2s;
}

.nav-links a:hover {
    background: #ffe8e6;
    color: #DA291C;
}

.btn-red {
    background: #DA291C;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-block;
    transition: 0.3s;
}

.btn-red:hover {
    background: #b71c1c;
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: #DA291C !important;
    border: 2px solid #DA291C;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    transition: 0.3s;
}

.btn-white:hover { background: #ffe8e6; }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 900px) {
    .menu-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .nav-links.active { display: flex; }
}

/* Hero */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero-dark {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 60px 0;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 span { color: #DA291C; }

.hero p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Sections */
.section { padding: 80px 0; }
.section-gray { background: #f9fafb; }

.section-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 900;
    margin-bottom: 10px;
}

.section-title span { color: #DA291C; }

.section-subtitle {
    color: #6b7280;
    font-size: 18px;
    margin-bottom: 40px;
}

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

/* Categories */
.categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.category-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
    text-align: center;
    min-width: 130px;
}

.category-card:hover {
    border-color: #DA291C;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    color: #DA291C;
}

/* Offers Grid */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.offer-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.offer-img {
    height: 200px;
    background: #f5f5f5;
    overflow: hidden;
}

.offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    background: #f5f5f5;
}

.offer-body { padding: 20px; }

.offer-badge {
    display: inline-block;
    background: #ffe8e6;
    color: #DA291C;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.offer-title {
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 8px;
}

.offer-discount {
    color: #DA291C;
    font-weight: 700;
    margin-bottom: 15px;
}

.offer-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.offer-merchant { color: #6b7280; font-weight: 500; font-size: 14px; }

@media (max-width: 1000px) {
    .offers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .offers-grid { grid-template-columns: 1fr; }
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.step-card {
    text-align: center;
    padding: 40px 20px;
    border: 2px solid #eee;
    border-radius: 20px;
    transition: 0.3s;
}

.step-card:hover {
    border-color: #DA291C;
    transform: translateY(-4px);
}

.step-number {
    width: 56px;
    height: 56px;
    background: #DA291C;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    margin: 0 auto 15px;
}

.step-card h3 { font-weight: 700; margin-bottom: 8px; }
.step-card p { color: #6b7280; }

@media (max-width: 768px) {
    .steps { grid-template-columns: 1fr; }
}

/* Showcase */
.showcase {
    position: relative;
    padding: 100px 0;
    color: #fff;
}

.showcase-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.showcase-dark {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
}

.showcase-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.showcase h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    margin-bottom: 20px;
}

.showcase h2 span { color: #DA291C; }

.showcase p {
    font-size: 17px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.showcase ul { list-style: none; }

.showcase ul li {
    padding: 8px 0;
    opacity: 0.9;
    font-size: 15px;
}

.showcase ul li::before {
    content: "✓";
    color: #DA291C;
    margin-right: 10px;
    font-weight: 700;
}

/* Gallery */
.gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    cursor: pointer;
    transition: 0.3s;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.gallery-card-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.gallery-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-card:hover .gallery-card-img img {
    transform: scale(1.08);
}

.gallery-card-info {
    padding: 14px 16px;
    text-align: center;
}

.gallery-card-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
}

.gallery-view-btn {
    display: inline-block;
    font-size: 12px;
    color: #DA291C;
    font-weight: 600;
    padding: 4px 12px;
    background: #ffe8e6;
    border-radius: 50px;
}

.gallery-card:hover .gallery-view-btn {
    background: #DA291C;
    color: #fff;
}

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

@media (max-width: 480px) {
    .gallery-grid-new { grid-template-columns: 1fr; }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-inner {
    text-align: center;
    max-width: 90%;
}

.lightbox-inner img {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 8px;
}

.lightbox-info {
    margin-top: 16px;
    color: #fff;
}

.lightbox-info h3 {
    font-size: 22px;
    font-weight: 700;
}

.lightbox-info p {
    font-size: 15px;
    opacity: 0.7;
}

.lightbox-counter {
    font-size: 13px;
    opacity: 0.5;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 42px;
    cursor: pointer;
    z-index: 100000;
}

.lightbox-close:hover { transform: scale(1.2); }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 4px;
    z-index: 100000;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
}

/* CTA */
.cta-section {
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.cta-dark {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
}

.cta-content { position: relative; z-index: 2; }

.cta-content h2 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    margin-bottom: 15px;
}

.cta-content h2 span { color: #DA291C; }

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.price-tag {
    display: inline-block;
    background: #DA291C;
    padding: 15px 30px;
    border-radius: 15px;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 25px;
}

.price-tag small { font-size: 16px; opacity: 0.8; }

.cta-note {
    margin-top: 15px;
    opacity: 0.6;
    font-size: 14px;
}

/* Footer */
.footer {
    background: #111;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer h4 { font-size: 18px; margin-bottom: 15px; }

.footer p {
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.8;
}

.footer a {
    display: block;
    opacity: 0.7;
    padding: 5px 0;
    font-size: 14px;
    transition: 0.2s;
}

.footer a:hover { opacity: 1; color: #DA291C; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    opacity: 0.5;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* Forms */
.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: 0.2s;
}

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

.alert {
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* Dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.dashboard-sidebar {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #eee;
}

.dashboard-sidebar a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: 0.2s;
}

.dashboard-sidebar a:hover {
    background: #ffe8e6;
    color: #DA291C;
}

.dashboard-main {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #eee;
}

@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}