/* Discount Page Styles - Unique Design */
:root {
    --primary-color: #cc7d2a;
    --primary-dark: #a66520;
    --secondary-color: #243124;
    --accent-color: #f39c12;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #cc7d2a 0%, #e67e22 100%);
    --gradient-dark: linear-gradient(135deg, #243124 0%, #1a2a1a 100%);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Countdown Banner */
.countdown-banner {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    font-size: 14px;
}

.countdown-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.countdown-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.offer-badge {
    background: #e74c3c;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    animation: pulse 2s infinite;
    white-space: nowrap;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.countdown-text {
    font-weight: 600;
    white-space: nowrap;
}

.countdown-timer {
    display: flex;
    gap: 8px;
    font-weight: 700;
    flex-wrap: nowrap;
}

.time-unit {
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.time-unit span {
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
    min-width: 36px;
    text-align: center;
}

/* Language Switch */
.lang-switch-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 125, 42, 0.3);
    white-space: nowrap;
}

.lang-switch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 125, 42, 0.4);
    color: var(--white);
    text-decoration: none;
}

/* Hero Section */
.discount-hero {
    background: var(--gradient-dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 80px;
    position: relative;
    overflow: hidden;
}

.discount-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(204, 125, 42, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.discount-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(204, 125, 42, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.discount-hero .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: var(--white);
    font-size: 48px;
    font-weight: 800;
    padding: 15px 40px;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 15px 40px rgba(231, 76, 60, 0.5);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: var(--white);
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features span {
    color: var(--white);
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-features i {
    color: var(--primary-color);
    font-size: 18px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.discount-form .btn {
    flex-direction: row-reverse;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(204, 125, 42, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(204, 125, 42, 0.5);
    color: var(--white);
    text-decoration: none;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-lg {
    padding: 18px 45px;
    font-size: 18px;
}

.btn-block {
    width: 100%;
}

.hero-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-top: 20px;
}

/* Offer Details Section */
.offer-details {
    padding: 100px 0;
    background: var(--white);
}

/* Packages Slider */
.packages-slider {
    margin: 0 -15px;
}

.package-slide {
    padding: 15px;
}

.packages-slider .slick-dots {
    bottom: -40px;
}

.packages-slider .slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.5;
}

.packages-slider .slick-dots li.slick-active button:before {
    opacity: 1;
}

.packages-slider .slick-prev,
.packages-slider .slick-next {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.packages-slider .slick-prev:hover,
.packages-slider .slick-next:hover {
    background: var(--secondary-color);
}

.packages-slider .slick-prev {
    right: -10px;
    left: auto;
}

.packages-slider .slick-next {
    left: -10px;
    right: auto;
}

.packages-slider .slick-prev:before,
.packages-slider .slick-next:before {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 16px;
    color: var(--white);
}

.packages-slider .slick-prev:before {
    content: '\f105';
}

.packages-slider .slick-next:before {
    content: '\f104';
}

.offer-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

.offer-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.offer-card.featured::before {
    content: 'الأكثر طلباً';
    position: absolute;
    top: 20px;
    left: -35px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(-45deg);
}

.offer-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.discount-tag {
    display: inline-block;
    background: #e74c3c;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.offer-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
}

/* Package Number Badge */
.package-number {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    line-height: 32px;
    text-align: center;
    margin-bottom: 10px;
}

/* English Label */
.en-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
    margin-top: 5px;
}

/* Plant Count Display */
.package-content {
    text-align: center;
    margin-bottom: 25px;
}

.plant-count {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.plant-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-color);
}

.plant-type i {
    color: var(--primary-color);
}

.discount-hero .highlight {
    color: var(--primary-color);
}

/* Segoe UI Black for discount/percentage text */
.discount-badge,
.hero-discount {
    font-family: 'Segoe UI', 'Segoe UI Black', 'Arial Black', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.plus {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
}

/* Maintenance Note */
.maintenance-note {
    font-size: 13px;
    color: var(--text-light);
    padding: 10px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 15px 0;
}

/* Star Rating */
.package-rating {
    color: #f39c12;
    font-size: 14px;
    margin-top: 10px;
}

.package-rating i {
    margin: 0 2px;
}

/* Best Choice Badge for Featured Card */
.best-choice-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--white);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 0 0 10px 10px;
    z-index: 10;
}

.offer-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.offer-card.featured .offer-header {
    padding-top: 30px;
}

.offer-price {
    text-align: center;
    margin-bottom: 30px;
}

.old-price {
    display: block;
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: 5px;
}

.new-price {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
}

.offer-features {
    list-style: none;
    margin-bottom: 30px;
}

.offer-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

.offer-features li:last-child {
    border-bottom: none;
}

.offer-features i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-weight: 700;
}

.gallery-overlay p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.trust-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.trust-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.contact-section .row {
    display: flex;
    align-items: stretch;
}

.contact-section .col-lg-6 {
    display: flex;
    flex-direction: column;
}

.contact-header {
    margin-bottom: 20px;
    color: var(--white);
    text-align: right;
}

.promo-pay-social {
    margin-top: auto;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.contact-list {
    list-style: none;
    margin-bottom: 40px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 16px;
}

.contact-list i {
    color: var(--primary-color);
    font-size: 18px;
    width: 25px;
}

.contact-list a {
    color: var(--white);
    text-decoration: none;
}

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

.payment-methods {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
}

.payment-methods span {
    display: block;
    margin-bottom: 15px;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icons img {
    height: 35px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.contact-list-compact {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: right;
}

.contact-list-compact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.contact-list-compact i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
}

.contact-list-compact a {
    color: var(--white);
    text-decoration: none;
}

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

.contact-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
    text-align: right;
}

.map-container {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    display: block;
    width: 100%;
    border: 0;
}

.contact-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    text-align: right;
}

/* Promo Pay Social Section */
.promo-pay-social {
    padding: 0;
    background: transparent;
    color: #f4f6f4;
}

.promo-pay-social .shell {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    background: #1D3A2D;
    backdrop-filter: blur(4px);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Row 1: Social Media */
.social-row {
    display: flex;
    justify-content: center;
}

/* Row 2: BNPL Banner */
.desktop-bnpl-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 42px;
    border-radius: 12px;
    background: #ffffff;
    padding: 8px 12px;
    direction: ltr;
}

.desktop-bnpl-copy {
    color: #1c1c1c;
    font-size: 14px;
    line-height: 1;
    font-family: "Cairo", "Roboto", sans-serif;
    font-weight: 700;
    white-space: nowrap;
}

.desktop-bnpl-logos {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.desktop-bnpl-logos img {
    width: auto;
    max-width: 100px;
    max-height: 28px;
    display: block;
    object-fit: contain;
}

/* Row 3: Payment Methods */
.payment-row {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

.payment-row .pay-title-inline {
    flex-shrink: 0;
    min-width: 0;
    overflow: hidden;
}

.payment-row .pay-title-inline {
    flex-shrink: 0;
}

.promo-social-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.promo-social-list a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.promo-social-list a:hover {
    background: #cc7d2a;
    transform: translateY(-2px);
}

.promo-social-list svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.payment-side {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pay-title-inline {
    color: #f4f6f4;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.payment-marquee {
    flex: 1;
    min-width: 0;
    max-width: 100%;
    max-width: 100%;
    overflow: hidden;
    direction: ltr;
    mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
    position: relative;
}

.payment-track {
    display: flex;
    align-items: center;
    gap: 8px;
    width: max-content;
    animation: paymentSlide 18s linear infinite;
    will-change: transform;
}

.payment-marquee:hover .payment-track {
    animation-play-state: paused;
}

@keyframes paymentSlide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.payment-item {
    height: 40px;
    width: 80px;
    min-width: 80px;
    max-width: 80px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    flex: 0 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    box-sizing: border-box;
    overflow: hidden;
}

.payment-item img {
    max-width: 90%;
    max-height: 24px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Form Header */
.form-header {
    margin-bottom: 20px;
    color: var(--white);
    text-align: right;
    flex: 1;
}

.form-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
    text-align: right;
}

.form-header p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Discount Form */
.discount-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-top: auto;
    width: 100%;
}

.discount-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center !important;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 14px;
    text-align: right;
}

.discount-form {
    text-align: right;
}

.discount-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: right;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: var(--bg-light);
    text-align: right;
}

.form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    background: var(--white);
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 15px center;
    padding-left: 35px;
    text-align: right;
}

.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 15px;
    margin-bottom: 0;
}

/* Footer */
.discount-footer {
    background: #1a1a1a;
    color: var(--white);
    padding: 60px 0 30px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
}

.footer-desc {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer-col h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-contact i {
    color: var(--primary-color);
    margin-left: 8px;
    width: 16px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, 250px);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }

    .discount-badge {
        font-size: 36px;
        padding: 12px 30px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-card.featured {
        transform: none;
        margin-bottom: 30px;
    }

    .package-number {
        width: 28px;
        height: 28px;
        font-size: 12px;
        line-height: 28px;
    }

    .offer-header h3 {
        font-size: 20px;
    }

    .en-label {
        font-size: 11px;
    }

    .plant-type {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .discount-hero {
        padding: 160px 20px 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .discount-badge {
        font-size: 28px;
        padding: 10px 25px;
    }

    .countdown-banner {
        font-size: 13px;
    }

    .countdown-left {
        flex-wrap: wrap;
        gap: 8px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        height: 300px;
    }

    .gallery-item {
        height: 200px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .discount-form {
        padding: 25px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .offer-details,
    .gallery-section,
    .trust-section,
    .contact-section {
        padding: 60px 0;
    }

    .offer-card {
        padding: 25px 20px;
    }

    .offer-details .row>div {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .countdown-banner {
        font-size: 12px;
        padding: 8px 0;
    }

    .countdown-banner .container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .countdown-left {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px;
    }

    .countdown-timer {
        gap: 6px;
    }

    .time-unit {
        font-size: 11px;
    }

    .time-unit span {
        padding: 3px 6px;
        min-width: 28px;
    }

    .lang-switch-btn {
        padding: 4px 10px;
        font-size: 11px;
    }

    .hero-title {
        font-size: 26px;
    }

    .new-price {
        font-size: 32px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .payment-icons img {
        height: 28px;
    }

    /* Promo Pay Social Mobile */
    .promo-pay-social .shell {
        padding: 12px;
        gap: 10px;
    }

    .social-row {
        width: 100%;
    }

    .payment-row {
        flex-direction: column;
        gap: 8px;
    }

    .pay-title-inline {
        font-size: 12px;
    }

    .desktop-bnpl-copy {
        font-size: 11px;
    }

    .desktop-bnpl-logos img {
        max-height: 22px;
    }
}

