
@font-face {
    font-family: 'Iran Sans';
    src: url('fonts/irsans.ttf') format('.ttf'), url('fonts/iran-sans-300.woff') format('woff'), url('fonts/iran-sans-300.woff2') format('woff2') url('fonts/IRANSansWeb.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
:root {
    --primary-yellow: #FFD700;
    --dark-yellow: #FFC400;
    --black: #1A1A1A;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --primary-black: #1A1A1A;
    --border-gray: #E0E0E0;
    --success-green: #28A745;
    --error-red: #DC3545;
   
 
   
    --dark-gray: #2D2D2D;
  

    --border-radius: 0px;
}
.page-content {
    margin-top: 30px !important;
}
.header-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 2.8rem 3rem !important;
    position: relative !important;
    background-color: #ffd300 !important;
}

.logo {
     display: flex; 
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--color-white);
    width: 30%;
    text-align: center;
}

.logo-text {
    font-size: 1.25rem;
    letter-spacing: 0;
    font-weight: 300;
}
/* ===== ABOUT PAGE STYLES ===== */



.about-us-container {
    font-family: 'Vazirmatn', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.8;
    direction: rtl;
    text-align: right;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: #222;
    position: relative;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        right: 50%;
        transform: translateX(50%);
        width: 100%;
        height: 3px;
        background: linear-gradient(to left, #f0b400, #ffd700);
    }

/* Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffd700, #f0b400);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.company-info {
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.company-name {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

.company-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 2rem;
    text-align: justify;
    opacity: 0.95;
}

/* Video Section */
.video-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-embed, .video-player {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
}

    .video-embed iframe,
    .video-player video {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

/* Statistics Section */
.stats-section {
    padding: 5rem 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: white;
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(to right, #f0b400, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-title {
    font-size: 1.2rem;
    color: #555;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card, .vision-card {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0b400, #ffd700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.card-title {
    font-size: 1.8rem;
    color: #222;
    margin: 0;
}

.card-content {
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

/* Values Section */
.values-section {
    padding: 5rem 0;
    background: white;
}

.values-content {
    max-width: 800px;
    margin: 0 auto;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .values-list li {
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

        .values-list li:last-child {
            border-bottom: none;
        }

.value-icon {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: bold;
}

.value-text {
    font-size: 1.1rem;
    color: #333;
}

.values-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.video-fallback {
    padding: 2rem;
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
}

    .video-fallback a {
        color: #f0b400;
        text-decoration: none;
    }

        .video-fallback a:hover {
            text-decoration: underline;
        }

/* Responsive Design for RTL */
@@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .company-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .mission-card, .vision-card {
        padding: 2rem;
    }
}

@@media (max-width: 480px) {
    .about-hero-section {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .company-stats {
        flex-direction: column;
        gap: 1rem;
    }
}










/* ===== CONTACT PAGE STYLES ===== */
/* Professional Sharp Design */


.contact-page {
    font-family: 'Vazir', 'Iran Sans', sans-serif;
    background: var(--white);
    color: var(--primary-black);
    line-height: 1.7;
}

/* Professional Header */
.contact-header {
    background: var(--primary-black);
    color: var(--white);
    padding: 4rem 1rem 3rem;
    text-align: center;
    border-bottom: 5px solid var(--primary-yellow);
    margin-top: 0;
}

    .contact-header h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .contact-header p {
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.1rem;
        opacity: 0.9;
        line-height: 1.8;
    }

/* Main Container - Sharp Grid */
.contact-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

@@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem auto;
    }
}

/* Contact Info - Sharp Card */
.contact-info {
    background: var(--primary-black);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 3px solid var(--primary-yellow);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .contact-info h2 {
        color: var(--primary-yellow);
        font-size: 1.6rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 3px solid var(--primary-yellow);
        font-weight: 700;
    }

/* Contact Items - Sharp Design */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-right: 4px solid var(--primary-yellow);
    transition: all 0.3s ease;
    border-radius: 0 8px 8px 0;
}

    .contact-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateX(-5px);
    }

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-yellow);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 2px solid transparent;
}

.contact-details h3 {
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-details p {
    opacity: 0.9;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

/* Working Hours */
.working-hours {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
}

    .working-hours h4 {
        color: var(--primary-yellow);
        margin-bottom: 1rem;
        font-size: 1.2rem;
        font-weight: 600;
    }

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contact Form - Sharp Card */
.contact-form-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    border: 3px solid var(--border-gray);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

    .contact-form-card h2 {
        color: var(--primary-black);
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
        padding-bottom: 1rem;
        border-bottom: 3px solid var(--primary-yellow);
        font-weight: 700;
    }

.form-subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Form Elements */
.form-group {
    margin-bottom: 1.5rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--primary-yellow);
        font-weight: 600;
        font-size: 1rem;
    }
    .form-group label2 {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--primary-black);
        font-weight: 600;
        font-size: 1rem;
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 1rem;
        border: 2px solid var(--border-gray);
        border-radius: 0px;
        font-family: inherit;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: var(--white);
    }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-yellow);
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.15);
        }

    .form-group textarea {
        min-height: 150px;
        resize: vertical;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-header {
        padding: 3rem 1rem 2rem;
    }

        .contact-header h1 {
            font-size: 2rem;
        }

    .contact-info,
    .contact-form-card {
        padding: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.2rem;
    }

    .contact-icon {
        margin-bottom: 0.8rem;
    }
}

/* Submit Button */
.submit-btn {
    background: var(--primary-black);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    font-weight: 600;
    margin-top: 1rem;
    border: 2px solid transparent;
}

    .submit-btn:hover {
        background: var(--primary-yellow);
        color: var(--primary-black);
        transform: translateY(-2px);
        border-color: var(--primary-black);
    }

    .submit-btn:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        transform: none;
    }

/* Map Section */
.map-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1.5rem;
}

    .map-section h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 2rem;
        color: var(--primary-black);
        font-weight: 700;
    }

.map-container {
    height: 400px;
    background: var(--light-gray);
    border-radius: 8px;
    border: 3px solid var(--border-gray);
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

    .map-placeholder .icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: var(--primary-yellow);
    }

/* Messages */
.message {
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border: 2px solid transparent;
    display: none;
}

    .message.show {
        display: block;
        animation: slideIn 0.3s ease;
    }

    .message.success {
        background: rgba(40, 167, 69, 0.1);
        border-color: var(--success-green);
        color: #155724;
    }

    .message.error {
        background: rgba(220, 53, 69, 0.1);
        border-color: var(--error-red);
        color: #721c24;
    }

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: currentColor;
    animation: spin 1s ease-in-out infinite;
}

@@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social Media */
.social-media {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 215, 0, 0.2);
}

    .social-media h4 {
        color: var(--primary-yellow);
        margin-bottom: 1rem;
        font-size: 1.2rem;
        font-weight: 600;
    }

.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-yellow);
    color: var(--primary-yellow);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

    .social-link:hover {
        background: var(--primary-yellow);
        color: var(--primary-black);
        transform: translateY(-2px);
    }

/* Language Links */
.language-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.language-link {
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border: 2px solid var(--border-gray);
    border-radius: 6px;
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .language-link:hover {
        background: var(--primary-yellow);
        border-color: var(--primary-yellow);
        color: var(--primary-black);
    }

    .language-link.active {
        background: var(--primary-black);
        border-color: var(--primary-black);
        color: var(--white);
    }

/* ===== GALLERY PAGE STYLES ===== */
.gallery-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1547996160-81dfd9c4b1cd?ixlib=rb-4.0.3&auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    text-align: center;
}

.gallery-hero-content {
    max-width: 600px;
    padding: 0 2rem;
}

.gallery-hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0;
    margin-bottom: 1rem;
}

.gallery-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0;
    opacity: 0.9;
}

.gallery-filters {
    padding: 3rem 2rem;
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.filters-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--color-black);
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    letter-spacing: 0;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 25px;
}

    .filter-btn.active,
    .filter-btn:hover {
        background-color: var(--color-black);
        color: var(--color-white);
    }

.gallery-section {
    padding: 3rem 2rem;
    background-color: var(--color-white);
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    grid-gap: 1.5rem;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.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;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 2rem;
    color: var(--color-white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    letter-spacing: 0;
}

.gallery-category {
    font-size: 0.875rem;
    opacity: 0.8;
    letter-spacing: 0;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.video-section {
    padding: 6rem 3rem;
    background-color: var(--color-gray-light);
}

.video-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.video-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: var(--color-accent);
    letter-spacing: 0;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.video-card {
    background: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

    .video-card:hover {
        transform: translateY(-10px);
    }

.video-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
}

    .video-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .video-play-btn:hover {
        background: var(--color-white);
        transform: translate(-50%, -50%) scale(1.1);
    }

.video-info {
    padding: 1.5rem;
}

    .video-info h3 {
        font-size: 1.3rem;
        font-weight: 500;
        margin-bottom: 1rem;
        letter-spacing: 0;
    }

    .video-info p {
        color: var(--color-gray);
        line-height: 1.6;
    }

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

    .lightbox.active {
        display: flex;
    }

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

    .lightbox-content img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
}

.lightbox-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

    .lightbox-btn:hover {
        background: rgba(255,255,255,0.3);
    }

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .milestones-grid,
    .boutiques-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .innovation-grid,
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .masonry-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-hero-title,
    .contact-hero-title,
    .gallery-hero-title {
        font-size: 2.5rem;
    }

    .milestones-grid,
    .boutiques-grid,
    .innovation-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.wide {
        grid-column: span 1;
    }

    .filters-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-form-container {
        padding: 2rem;
    }
    /* ===== WEBLOG PAGE STYLES ===== */

    /* In pages-rtl.css, update weblog styles to be more specific */
 






/*   =======Articles========  */



/* Login Page Styles - Yellow & Black Theme */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 20px;
    background-color: #000000;
}

.login-card {
    background: #ffffff;
    border: 2px solid #000000;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: 8px 8px 0 #000000;
}

.login-title {
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: bold;
    border-bottom: 2px solid #ffd700;
    padding-bottom: 10px;
}

.login-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    color: #000000;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #000000;
    background: #ffffff;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

    .form-control:focus {
        outline: none;
        border-color: #ffd700;
        background-color: #fffdf0;
    }

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-check-input {
    margin-left: 8px;
    transform: scale(1.2);
    border: 2px solid #000000;
}

    .form-check-input:checked {
        background-color: #ffd700;
        border-color: #000000;
    }

.form-check-label {
    color: #000000;
    font-size: 14px;
}

.btn {
    padding: 6px 12px;
   
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 1px 1px 0 #000000;
    width: 100%;
    border-radius:inherit;
    border-radius:0px;
}
.btn-share {
    padding: 6px 6px;
    border: 1px solid #000000;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    
    width: 100%;
}

.btn-primary {
    background-color: #ffd700;
    color: #000000;
}

    .btn-primary:hover {
        background-color: #e6c200;
        transform: translate(-2px, -2px);
        box-shadow: 6px 6px 0 #000000;
    }

.btn-outline-primary {
    background-color: #ffffff;
    color: #000000;
}

    .btn-outline-primary:hover {
        background-color: #ffd700;
        transform: translate(-2px, -2px);
        box-shadow: 6px 6px 0 #000000;
    }

.btn-block {
    display: block;
    width: 100%;
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
    color: #000000;
    font-weight: bold;
}

    .divider::before,
    .divider::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 45%;
        height: 1px;
        background-color: #000000;
    }

    .divider::before {
        left: 0;
    }

    .divider::after {
        right: 0;
    }

.login-links {
    text-align: center;
    margin-top: 20px;
}

    .login-links a {
        display: block;
        color: #000000;
        text-decoration: none;
        margin-bottom: 10px;
        font-size: 14px;
        transition: color 0.3s ease;
    }

        .login-links a:hover {
            color: #ffd700;
            text-decoration: underline;
        }

.text-danger {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.form-text {
    color: #666666;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

/* Responsive Design */
@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
        margin: 10px;
    }

    .login-title {
        font-size: 20px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Focus states for accessibility */
.btn:focus,
.form-control:focus,
.form-check-input:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Loading state for buttons */
.btn-loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success state */
.form-control.is-valid {
    border-color: #198754;
}

/* Error state */
.form-control.is-invalid {
    border-color: #dc3545;
}
