/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --danger-color: #ef4444;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --header-height: 110px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}



.hero-slider {
    background: #000;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 60vh;
    /* Adjust height as needed */
    min-height: 400px;
    z-index: 1;
}

.hero-slider-container .swiper-slide {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    /* Allow clicking through if needed, though usually overlay catches clicks */
    background: transparent;
    /* Remove full overlay background */
}

.hero-content {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 50px;
    /* Left aligned */
    right: auto;
    transform: translateY(-50%);
    text-align: left;
    color: #ffffff;
    background: none;
    /* Remove background box */
    padding: 0;
    border-radius: 0;
}

.hero-title {
    color: #ffffff;
    font-size: 2.2rem;
    /* Reduced from 3rem */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    /* Slight shadow for better pop */
}

/* Remove breadcrumb styles as they are deleted */

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        display: block;
        /* Show title */
        font-size: 1.2rem;
        /* Smaller font */
        text-align: center;
        width: 100%;
    }

    .hero-content {
        display: block;
        /* Show content */
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        transform: none;
        background: rgba(0, 0, 0, 0.6);
        /* Semi-transparent strip */
        padding: 10px 0;
        text-align: center;
    }

    .hero-overlay {
        background: none;
        /* Ensure no full darkening */
    }
}

/* Slider Styles */
.offers-slider {
    padding: 20px 5px 40px 5px;
    /* Add padding for shadow and pagination */
}

.swiper-pagination-bullet-active {
    background: var(--primary-color) !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color) !important;
}

/* Header */
/* Header */
.header {
    background: var(--bg-white);
    padding: 0.5rem 0;
    box-shadow: var(--shadow);
    border-bottom: 3px solid #f97316;
    position: relative;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.logo-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    min-height: 60px;
}

.company-logo {
    display: block;
    height: auto;
    max-height: 90px;
    max-width: 220px;
    width: auto;
    object-fit: contain;
}

.company-name {
    display: flex;
    flex-direction: column;
}

.company-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.company-subtitle {
    font-size: 1rem;
    color: #1e3a8a;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.contact-icon {
    color: #f97316;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-label {
    font-size: 0.65rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.contact-value {
    font-size: 0.85rem;
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    line-height: 1.1;
}

.contact-value:hover {
    color: #f97316;
}

/* Main Content */
.main-content {
    padding: 2rem 0 6rem 0;
    min-height: calc(100vh - 200px);
}

/* Offers Grid/Slider */
.offers-slider {
    /* Add padding to prevent shadow clipping */
    padding: 20px 20px 40px 20px !important;
    margin: -20px -20px 0 -20px;
    /* Compensate for padding */
}

/* Original Grid logic kept if needed, but slider is active */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Offer Card */
.offer-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    /* transition: all to match category card feel */
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
    animation: fadeInUp 0.6s ease;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.offer-card:active {
    transform: scale(0.98);
}

.offer-card:hover {
    /* Match category-card hover styles specifically */
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    /* subtle background shift if needed, but keeping white for now */
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.offer-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.offer-image img,
.offer-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.offer-card:hover .offer-image img,
.offer-card:hover .offer-image video {
    transform: scale(1.1);
}

.offer-content {
    padding: 1.5rem;
    position: relative;
}

.discount-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.offer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.offer-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.offer-validity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.validity-label {
    color: var(--text-light);
    font-weight: 500;
}

.validity-date {
    color: var(--primary-color);
    font-weight: 600;
}

/* No Offers */
.no-offers {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.no-offers-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.no-offers h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.no-offers p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Footer */
/* Footer */
.new-footer {
    background: #f8f9fa;
    margin-top: 0;
    width: 100%;
}

.footer-top {
    padding: 60px 0;
    border-bottom: 0;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer-col {
    padding: 0 15px;
}

.col-about {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-contact {
    flex: 0 0 25%;
    max-width: 25%;
}

.col-social {
    flex: 0 0 25%;
    max-width: 25%;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.footer-desc {
    color: #24649d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: left;
}

.footer-heading {
    color: #1a1a2e;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: left;
}

.contact-group {
    margin-bottom: 20px;
    text-align: left;
}

.footer-label {
    display: block;
    color: #f97316;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-link,
.footer-text {
    color: #6c757d;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.5;
}

.footer-link:hover {
    color: #f97316;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #adb5bd;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #f97316;
}

/* Footer Bottom */
.footer-bottom {
    background: #1a1a2e;
    padding: 20px 0;
    color: #fff;
    font-size: 0.85rem;
    position: relative;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f97316;
}

.separator {
    color: #4a4a5e;
}

.copyright {
    color: #adb5bd;
}

.back-to-top {
    color: #49da15;
    background: rgba(255, 255, 255, 0.1);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
    position: absolute;
    right: 20px;
}

.back-to-top:hover {
    background: #f97316;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .col-about {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .col-contact,
    .col-social {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {

    .col-about,
    .col-contact,
    .col-social {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .footer-heading,
    .footer-desc,
    .contact-group {
        text-align: left;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .back-to-top {
        position: absolute;
        right: 20px;
        bottom: 20px;
    }
}

/* Responsive */

/* --- Offer Detail Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fefefe;
    margin: auto;
    width: 95%;
    /* Increased from 90% */
    max-width: 1200px;
    /* Increased from 900px */
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: slideIn 0.3s;
    display: flex;
    flex-direction: column;
}

.close-modal {
    color: #555;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    z-index: 20;
    transition: color 0.2s;
    line-height: 1;
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: #000;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.modal-body {
    padding: 0;
}

.modal-split {
    display: flex;
    flex-direction: row;
    min-height: 500px;
    /* Increased from 300px */
    max-height: 90vh;
    /* Increased from 80vh */
}

/* Modal: Left Image Column */
.modal-image-col {
    flex: 1.5;
    /* Increased from 1.2 to give image more space */
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.modal-image-col img,
.modal-image-col video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Maintained responsive aspect */
    padding: 20px;
}

/* Modal: Right Info Column */
.modal-info-col {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #222;
    line-height: 1.3;
}

.modal-validity {
    color: #dc3545;
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-validity::before {
    content: '⏰';
}

.modal-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    white-space: pre-line;
    flex-grow: 1;
}

/* Buttons */
.btn-primary {
    background-color: #ffd700;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-text {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 0.95rem;
    margin-bottom: 25px;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.btn-text:hover {
    color: #000;
    text-decoration: underline;
}

.btn-submit {
    background-color: #000;
    color: #fff;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-submit:hover {
    background-color: #333;
    transform: translateY(-1px);
}

.btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Form Styles */
#inquiryFormView h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 10px;
    display: inline-block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #f9f9f9;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #ffd700;
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-message {
    padding: 10px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 0.95rem;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Modal */
@media (max-width: 900px) {
    .modal-split {
        flex-direction: column;
        height: auto;
        max-height: 85vh;
    }

    .modal-image-col {
        height: 450px;
        /* Increased from 250px for bigger poster */
        flex: none;
        padding: 0;
        background: #000;
    }

    .modal-image-col img {
        height: 100%;
        object-fit: contain;
        padding: 0;
    }

    .modal-info-col {
        padding: 25px;
        flex: auto;
        overflow-y: auto;
    }

    .modal-content {
        width: 95%;
        margin: 20px auto;
        height: auto;
    }

    .close-modal {
        top: 10px;
        right: 10px;
        background: rgba(255, 255, 255, 0.9);
    }
}

@media (max-width: 1024px) {
    .contact-info {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .header-left {
        width: 100%;
    }

    .header-right {
        display: none;
        /* Hide contact info on mobile */
    }

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }

    .company-logo {
        height: 80px;
    }

    .company-title {
        font-size: 1.5rem;
    }

    .company-subtitle {
        font-size: 0.9rem;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .main-content {
        padding: 2rem 0;
    }
}

/* Home Link in Header */
.home-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 700;
    font-size: 1rem;
    padding: 8px 20px;
    margin-left: 25px;
    border: 2px solid #f97316;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.home-link:hover {
    background-color: #f97316;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.home-link i {
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .home-link {
        margin-left: 15px;
        padding: 6px 15px;
        font-size: 0.9rem;
    }
}