/* Global Styles */
:root {
    --primary-color: #b71c1c;
    --secondary-color: #f9a825;
    --accent-color: #ffe082;
    --gold-border: #fbc02d;
    --text-color: #333;
    --light-text: #fff;
    --bg-color: linear-gradient(135deg, #fffde7, #fff3e0);
    --card-bg: #fffaf0;
    --shadow: 0 2px 6px rgba(0,0,0,0.1);
    --border-radius: 1.2rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--text-color);
    background: var(--bg-color);
    position: relative;
    min-height: 100vh;
}

/* Add subtle texture to background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/subtle-white-feathers.png');
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

/* Button Styles */
.btn-primary, .btn-secondary, .btn-tertiary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 2px 10px rgba(183, 28, 28, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(183, 28, 28, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: rgba(183, 28, 28, 0.1);
}

.btn-tertiary {
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-tertiary:hover {
    background: #fbc02d;
}

.btn-full {
    width: 100%;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.cookie-content p {
    margin-right: 20px;
}

.cookie-buttons {
    display: flex;
}

.cookie-buttons button {
    margin-left: 10px;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
}

.btn-accept {
    background: var(--primary-color);
    color: white;
}

.btn-settings {
    background: transparent;
    border: 1px solid #ccc;
}

/* Header Styles */
.header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 253, 231, 0.95);
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.navigation {
    margin-left: auto;
}

.nav-list {
    display: flex;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    font-weight: 600;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.header-cta {
    margin-left: 30px;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.menu-toggle span.active:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle span.active:nth-child(2) {
    opacity: 0;
}

.menu-toggle span.active:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 1;
    padding-right: 40px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.premium-card-image {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 90%;
    border: 2px solid var(--gold-border);
    transform: rotate(3deg);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.5);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    border: 2px solid var(--gold-border);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    max-width: 100%;
    max-height: 100%;
}

.benefit-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Categories Section */
.categories {
    padding: 80px 0;
}

.category-showcase {
    display: flex;
    gap: 30px;
}

.category-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.category-column.featured {
    flex: 2;
}

.category-item {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 2px solid var(--gold-border);
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-item.large {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 100%;
}

.category-image {
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon img {
    max-width: 100%;
    max-height: 100%;
}

.category-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.category-overlay h3 {
    color: white;
}

/* Exclusive Offers Section */
.exclusive {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.5);
}

.offers-carousel {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
}

.offer-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--gold-border);
    box-shadow: var(--shadow);
}

.offer-card.featured {
    border-color: var(--primary-color);
}

.offer-image {
    height: 200px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.offer-content {
    padding: 20px;
    position: relative;
}

.offer-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.offer-card.featured .offer-tag {
    background: var(--primary-color);
    color: white;
}

.offer-content h3 {
    margin: 10px 0;
    color: var(--primary-color);
}

.offer-content p {
    margin-bottom: 20px;
}

.offers-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.nav-prev, .nav-next {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    font-weight: 600;
}

.nav-indicators {
    display: flex;
    margin: 0 20px;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
}

.indicator.active {
    background: var(--secondary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 2px solid var(--gold-border);
    box-shadow: var(--shadow);
}

.testimonial-card.featured {
    border-color: var(--primary-color);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-content p::before {
    content: '"';
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.testimonial-content p::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid var(--gold-border);
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

/* Application Form Section */
.application {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.5);
}

.application-container {
    display: flex;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--gold-border);
    box-shadow: var(--shadow);
}

.application-image {
    flex: 1;
    display: none;
}

.application-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.application-form {
    flex: 1;
    padding: 40px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gold-border);
    border-radius: var(--border-radius);
    background: var(--card-bg);
    font-family: 'Cairo', sans-serif;
}

.form-group.checkbox {
    display: flex;
    align-items: center;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
}

.form-group.checkbox label {
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 2px solid var(--gold-border);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background: var(--card-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.5);
}

.contact-container {
    display: flex;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 2px solid var(--gold-border);
    box-shadow: var(--shadow);
}

.contact-info {
    flex: 1;
    padding: 40px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.contact-icon img {
    max-width: 100%;
    max-height: 100%;
}

.contact-text h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.business-hours h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-map {
    flex: 1;
    min-height: 400px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
}

.footer-logo-img {
    height: 40px;
    margin-bottom: 15px;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive Styles */
@media (min-width: 992px) {
    .application-image {
        display: block;
    }
}

@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .category-showcase {
        flex-direction: column;
    }
    
    .category-column.featured {
        order: -1;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-links {
        flex-wrap: wrap;
    }
    
    .footer-column {
        flex: 0 0 50%;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .navigation {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 253, 231, 0.95);
        z-index: 999;
        padding-top: 80px;
    }
    
    .navigation.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .nav-list li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .header-cta {
        display: none;
    }
    
    .offers-carousel {
        flex-wrap: wrap;
    }
    
    .offer-card {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    .footer-column {
        flex: 0 0 100%;
    }
}

/* Animation for FAQ */
.faq-item.active .faq-toggle {
    transition: transform 0.3s ease;
} 