/* Ramadan Page Styles */

/* Hero Section */
.tactical-hero {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-banner {
    width: 100%;
    height: auto;
    display: block;
}

/* Section Title */
.section-title {
    font-family: 'Nobel-Light', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #333;
    text-transform: uppercase;
}

/* Offer Details */
.offer-details {
    background: #fff;
}

.offer-card {
    background: #f8f8f8;
    border-radius: 4px;
    height: 100%;
    transition: box-shadow 0.3s;
}

.offer-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.offer-icon i {
    font-size: 2.5rem;
    color: #c4a265;
}

.offer-card-title {
    font-family: 'Nobel-Regular', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 0.75rem;
}

.offer-card-text {
    font-family: 'Nobel-Regular', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Form Section */
.form-section {
    background: #f5f5f5;
}

/* Terms Section */
.terms-section {
    background: #fff;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    font-family: 'Nobel-Regular', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

.terms-content strong {
    color: #333;
}

.terms-content ul {
    padding-left: 20px;
    margin-bottom: 1.5rem;
}

.terms-content ul li {
    margin-bottom: 0.5rem;
}

/* Models Section */
.models-section {
    background: #f5f5f5;
}

/* Filter Buttons */
.filter-btn {
    font-family: 'Nobel-Regular', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 1px;
    padding: 8px 24px;
    border: 1px solid #333;
    background: transparent;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.filter-btn:hover {
    background: #333;
    color: #fff;
}

.filter-btn.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

/* Model Cards */
.model-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.3s;
}

.model-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.model-image {
    background: #f0f0f0;
    padding: 20px;
    text-align: center;
}

.model-image img {
    width: 100%;
    height: auto;
    max-height: 160px;
    object-fit: contain;
}

.model-info {
    padding: 20px;
}

.model-name {
    font-family: 'Nobel-Regular', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 0.5rem;
}

.model-price {
    font-family: 'Nobel-Bold', sans-serif;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.model-emi {
    font-family: 'Nobel-Regular', sans-serif;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
}

.model-explore-btn {
    font-family: 'Nobel-Regular', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 1px;
    color: #1a1a1a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.model-explore-btn:hover {
    color: #c4a265;
}

/* Locations Section */
.locations-section {
    background: #fff;
}

.location-card {
    background: #f8f8f8;
    border-radius: 4px;
    overflow: hidden;
    height: 100%;
}

.location-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.location-body {
    padding: 24px;
}

.location-title {
    font-family: 'Nobel-Regular', sans-serif;
    font-size: 1.125rem;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.location-details {
    margin-bottom: 1.25rem;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 0.75rem;
    font-family: 'Nobel-Regular', sans-serif;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.location-detail i {
    font-size: 1rem;
    color: #1a1a1a;
    flex-shrink: 0;
    margin-top: 2px;
}

.location-detail a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.location-detail a:hover {
    color: #c4a265;
}

.location-map {
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
}

.location-map iframe {
    display: block;
}

.location-directions {
    font-family: 'Nobel-Regular', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 1px;
    color: #1a1a1a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.location-directions:hover {
    color: #c4a265;
}

/* Responsive */
@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.5rem;
    }

    .model-image {
        padding: 15px;
    }

    .model-image img {
        max-height: 120px;
    }

    .model-info {
        padding: 15px;
    }

    .model-name {
        font-size: 1rem;
    }

    .model-price {
        font-size: 0.9rem;
    }

    .model-emi {
        font-size: 0.8rem;
    }

    .terms-content {
        font-size: 0.85rem;
    }

    .location-image {
        height: 180px;
    }

    .location-body {
        padding: 20px;
    }
}
