/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9fafb;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.text-gold {
    color: #FFD700;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #1A2235, #2A3B54);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    color: #FFD700;
    font-size: 1.75rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A2235;
    font-family: 'Montserrat', sans-serif;
}

.logo-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    color: #1A2235;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: #FFD700;
    color: #1A2235;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-link.active {
    background-color: #1A2235;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-menu-btn {
    display: block;
    padding: 0.5rem;
    border: none;
    background: none;
    color: #1A2235;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: #f3f4f6;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
    border-top: 1px solid #e5e7eb;
}

.nav-mobile.active {
    display: flex;
}

.nav-link-mobile {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    color: #1A2235;
    transition: all 0.3s ease;
}

.nav-link-mobile:hover {
    background-color: #FFD700;
    color: #1A2235;
}

.nav-link-mobile.active {
    background-color: #1A2235;
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Hero Sections */
.hero {
    background: linear-gradient(135deg, #1A2235, #2A3B54);
    color: white;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    padding: 5rem 0 8rem;
}

.hero-text {
    space-y: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
}

.btn-primary {
    background-color: #FFD700;
    color: #1A2235;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #FFE55C;
    transform: scale(1.05);
}

.btn-secondary {
    border: 2px solid #FFD700;
    color: #FFD700;
    background: transparent;
}

.btn-secondary:hover {
    background-color: #FFD700;
    color: #1A2235;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.hero-brands {
    position: relative;
}

.brands-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
}

.brands-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 1.5rem;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.brand-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.brand-item:hover {
    background: rgba(255, 255, 255, 0.3);
}

.brand-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.brand-item h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.brand-item p {
    font-size: 0.875rem;
    color: #d1d5db;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1A2235, #2A3B54);
    color: white;
    padding: 5rem 0;
}

.page-hero-content {
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1.5rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto;
}

.hero-icon {
    width: 4rem;
    height: 4rem;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.hero-icon i {
    color: #1A2235;
    font-size: 2rem;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background-color: #FFD700;
}

.stat-item:hover .stat-icon i {
    color: #1A2235;
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    background-color: #1A2235;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.stat-icon i {
    color: #FFD700;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1A2235;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* Upcoming Brands */
.upcoming-brands {
    padding: 4rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1A2235;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 32rem;
    margin: 0 auto;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.upcoming-item {
    background: linear-gradient(135deg, #f9fafb, #f3f4f6);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    border: 2px dashed #FFD700;
    transition: all 0.3s ease;
}

.upcoming-item:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.upcoming-icon {
    width: 4rem;
    height: 4rem;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.upcoming-icon i {
    color: #1A2235;
    font-size: 2rem;
}

.upcoming-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A2235;
    margin-bottom: 0.5rem;
}

.upcoming-item p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #FFD700;
    color: #1A2235;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
}

/* Quick Links */
.quick-links {
    padding: 4rem 0;
    background-color: #1A2235;
    color: white;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.quick-link-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

.quick-link-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.quick-link-item i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.quick-link-item:hover i {
    transform: scale(1.1);
}

.quick-link-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.quick-link-item p {
    color: #d1d5db;
}

/* About Page Styles */
.mission-section, .vision-section {
    padding: 4rem 0;
}

.mission-section {
    background: white;
}

.vision-section {
    background: #f9fafb;
}

.mission-content, .vision-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.section-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.icon-wrapper {
    width: 3rem;
    height: 3rem;
    background-color: #FFD700;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper i {
    color: #1A2235;
    font-size: 1.75rem;
}

.vision-icon {
    background-color: #1A2235;
}

.vision-icon i {
    color: #FFD700;
}

.prose p {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.quote-box {
    background-color: #FFD700;
    color: #1A2235;
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
}

.vision-quote {
    background-color: #1A2235;
    color: white;
}

.quote-box p {
    font-size: 1.125rem;
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

.image-wrapper {
    background: linear-gradient(135deg, #1A2235, #2A3B54);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.vision-image-wrapper {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.image-wrapper img {
    width: 100%;
    border-radius: 0.5rem;
    opacity: 0.9;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: scale(1.05);
}

.value-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #1A2235, #2A3B54);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.value-icon i {
    color: #FFD700;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.value-item:hover .value-icon i {
    color: #1A2235;
}

.value-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A2235;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Objectives Section */
.objectives-section {
    padding: 4rem 0;
    background-color: #1A2235;
    color: white;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.objective-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.objective-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.objective-number {
    width: 2rem;
    height: 2rem;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A2235;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.objective-item p {
    color: #e5e7eb;
    line-height: 1.6;
}

/* Stores Page */
.current-stores, .upcoming-stores {
    padding: 4rem 0;
}

.current-stores {
    background: white;
}

.upcoming-stores {
    background: #f9fafb;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.store-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.store-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.store-image {
    position: relative;
}

.store-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: all 0.3s ease;
}

.store-card:hover .store-image img {
    transform: scale(1.05);
}

.store-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #FFD700;
    color: #1A2235;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.store-content {
    padding: 1.5rem;
}

.store-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A2235;
    margin-bottom: 0.75rem;
}

.store-content > p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.store-features h4 {
    font-weight: 600;
    color: #1A2235;
    margin-bottom: 0.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    color: #FFD700;
    font-size: 1rem;
}

.feature-item span {
    font-size: 0.875rem;
    color: #6b7280;
}

.upcoming-brand {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #FFD700;
    transition: all 0.3s ease;
}

.upcoming-brand:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.upcoming-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.upcoming-brand h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A2235;
    margin-bottom: 0.5rem;
}

.upcoming-category {
    display: inline-block;
    background-color: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.upcoming-brand p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.upcoming-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.upcoming-date i {
    color: #FFD700;
}

.upcoming-date span {
    font-size: 0.875rem;
    color: #6b7280;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background-color: #1A2235;
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Gallery Styles */
.gallery-filter, .posts-filter {
    padding: 2rem 0;
    background-color: #f9fafb;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    color: #1A2235;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.filter-btn:hover {
    background-color: #FFD700;
    color: #1A2235;
}

.filter-btn.active {
    background-color: #1A2235;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.gallery-section {
    padding: 4rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 3rem;
}

.gallery-info {
    padding: 1rem;
}

.gallery-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1A2235;
    margin-bottom: 0.25rem;
}

.gallery-category {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2235;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 64rem;
    max-height: 100%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute;
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-info {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0.5rem;
    padding: 1rem;
    color: white;
}

.lightbox-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.lightbox-info p {
    color: #d1d5db;
    margin: 0;
}

/* Posts Page */
.featured-post {
    padding: 4rem 0;
    background: white;
}

.featured-badge {
    margin-bottom: 2rem;
}

.featured-badge span {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2235;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.featured-post-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.featured-post-image {
    position: relative;
}

.featured-post-image img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #1A2235;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.featured-post-content {
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-post-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1A2235;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.featured-post-content > p {
    color: #6b7280;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1A2235;
    font-weight: 600;
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    color: #FFD700;
}

.posts-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.post-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.post-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(-2px);
}

.post-image {
    position: relative;
}

.post-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
    transition: all 0.3s ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A2235;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.post-card:hover .post-content h3 {
    color: #FFD700;
}

.post-content > p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.post-author {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Newsletter */
.newsletter-section {
    padding: 4rem 0;
    background-color: #1A2235;
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 32rem;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 24rem;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: none;
    color: #374151;
    outline: none;
}

.newsletter-form input:focus {
    box-shadow: 0 0 0 2px #FFD700;
}

.newsletter-form button {
    padding: 0.75rem 2rem;
    background-color: #FFD700;
    color: #1A2235;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #FFE55C;
}

/* Contact Page */
.contact-info-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-info-item {
    text-align: center;
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    background-color: #1A2235;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    color: #FFD700;
    font-size: 2rem;
}

.contact-info-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A2235;
    margin-bottom: 0.5rem;
}

.contact-info-item p {
    color: #6b7280;
}

.contact-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-category {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-category:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.category-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.category-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.category-icon.green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.category-icon.purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.category-icon.orange {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.category-icon i {
    color: white;
    font-size: 1.5rem;
}

.contact-category h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A2235;
    margin-bottom: 0.5rem;
}

.contact-category > p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.contact-details h4 {
    font-weight: 600;
    color: #1A2235;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.contact-details h4:first-child {
    margin-top: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.contact-item i {
    font-size: 1rem;
}

.contact-item a {
    color: #2563eb;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item .fab.fa-whatsapp {
    color: #10b981;
}

/* Form Styles */
.contact-form-section, .query-form-section {
    padding: 4rem 0;
    background: white;
}

.contact-form, .query-form-container {
    background: #f9fafb;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.query-form-container {
    background: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    border-radius: 1rem;
    max-width: 64rem;
    margin: 0 auto;
}

.form-header {
    background: linear-gradient(135deg, #1A2235, #2A3B54);
    padding: 2rem;
    color: white;
}

.form-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: #d1d5db;
}

.query-form {
    padding: 2rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-large {
    grid-column: span 2;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1A2235;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.2);
}

.form-group textarea {
    resize: none;
}

.form-help {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.form-checkbox input {
    margin-top: 0.25rem;
    width: 1rem;
    height: 1rem;
    accent-color: #FFD700;
}

.form-checkbox label {
    font-size: 0.875rem;
    color: #6b7280;
}

.form-checkbox .link {
    color: #1A2235;
    cursor: pointer;
}

.form-checkbox .link:hover {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    padding-top: 1rem;
}

/* Response Time */
.response-time-section {
    padding: 3rem 0;
    background-color: #1A2235;
    color: white;
}

.response-time-content {
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.response-time-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.response-time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.response-time-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 1rem;
}

.response-time-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.priority-low { color: #10b981; }
.priority-medium { color: #f59e0b; }
.priority-high { color: #ef4444; }
.priority-urgent { color: #dc2626; }

.response-time-item p {
    font-size: 0.875rem;
    color: #d1d5db;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: #f9fafb;
}

.map-container {
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    width: 100%;
    height: 16rem;
    background-color: #e5e7eb;
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.map-placeholder i {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.map-address {
    font-size: 0.875rem;
    color: #6b7280;
}

/* Footer */
.footer {
    background-color: #1A2235;
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

.footer-main {
    grid-column: span 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-icon i {
    color: #1A2235;
    font-size: 1.75rem;
}

.footer-logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.footer-logo-subtitle {
    color: #FFD700;
    font-size: 0.875rem;
    margin: 0;
}

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1A2235;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.contact-info .contact-item i {
    color: #FFD700;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-info .contact-item p {
    color: #d1d5db;
    font-size: 0.875rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

.footer-bottom-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #FFD700;
}

.footer-bottom-links p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .newsletter-form {
        flex-direction: row;
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .footer-bottom-links {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .quick-links-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .mission-content, .vision-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-post-card {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .nav-desktop {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .page-title {
        font-size: 4rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .page-title {
        font-size: 5rem;
    }
}

/* Utility Classes */
.hidden {
    display: none;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Filter Animation */
.gallery-item.filtered-out,
.post-card.filtered-out {
    display: none;
}

.gallery-item.filtered-in,
.post-card.filtered-in {
    display: block;
    animation: fadeIn 0.5s ease;
}