/**
 * Home Page - Fine Art Gallery Redesign
 * Elegant, emotional, and artistic styling for AnuGallery
 */

/* ============================================
   Hero Section - Full Screen Immersive
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(59, 57, 64, 0.7) 0%,
        rgba(59, 57, 64, 0.4) 50%,
        rgba(240, 169, 81, 0.2) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
}

.hero-tagline {
    font-family: 'Martel', Georgia, serif;
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #f0a951;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-family: 'Martel', Georgia, serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s ease;
}

.hero-btn-primary {
    background: #f0a951;
    color: #fff;
    border: 2px solid #f0a951;
}

.hero-btn-primary:hover {
    background: transparent;
    color: #f0a951;
    transform: translateY(-2px);
}

.hero-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.hero-btn-outline:hover {
    background: #fff;
    color: #3b3940;
    border-color: #fff;
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.hero-scroll-indicator a:hover {
    color: #f0a951;
}

.hero-scroll-indicator .scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    margin-top: 0.5rem;
    position: relative;
}

.hero-scroll-indicator .scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #f0a951;
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Responsive Hero */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 90vh;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-tagline {
        font-size: 0.875rem;
        letter-spacing: 2px;
    }
    .hero-btn {
        padding: 0.875rem 2rem;
        font-size: 0.8rem;
    }
}

/* ============================================
   About Artist Section - Emotional Storytelling
   ============================================ */
.about-artist-section {
    padding: 8rem 0;
    background: #fff;
    position: relative;
}

.about-artist-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #f0a951, transparent);
}

.about-content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image-container {
    flex: 0 0 45%;
    position: relative;
}

.about-image-frame {
    position: relative;
    overflow: hidden;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid #f0a951;
    z-index: -1;
}

.about-image-frame img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(10%);
    transition: filter 0.5s ease;
}

.about-image-frame:hover img {
    filter: grayscale(0%);
}

.about-text-container {
    flex: 1;
}

.section-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f0a951;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 60px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 2px;
    background: #f0a951;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #3b3940;
    line-height: 1.3;
    margin-bottom: 2rem;
}

.about-lead {
    font-family: 'Martel', Georgia, serif;
    font-size: 1.25rem;
    color: #f0a951;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-description {
    font-family: 'Martel', Georgia, serif;
    font-size: 1rem;
    color: #5f5f61;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.about-cta {
    margin-top: 2.5rem;
}

.btn-artistic {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3b3940;
    border: 2px solid #3b3940;
    background: transparent;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-artistic:hover {
    background: #3b3940;
    color: #fff;
}

.btn-artistic .btn-icon {
    transition: transform 0.3s ease;
}

.btn-artistic:hover .btn-icon {
    transform: translateX(5px);
}

/* Responsive About */
@media (max-width: 991px) {
    .about-artist-section {
        padding: 5rem 0;
    }
    .about-content-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
    .about-image-container {
        flex: 0 0 100%;
        max-width: 500px;
    }
    .about-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .about-artist-section {
        padding: 4rem 0;
    }
    .about-title {
        font-size: 1.75rem;
    }
    .about-lead {
        font-size: 1.1rem;
    }
    .about-image-frame::before {
        top: 15px;
        left: 15px;
        right: -15px;
        bottom: -15px;
    }
}

/* ============================================
   Art Showcase Section - Gallery Preview
   ============================================ */
.art-showcase-section {
    padding: 8rem 0;
    background: #f6f6f8;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-header .section-label {
    padding-left: 0;
    margin-bottom: 1rem;
}

.section-header .section-label::before {
    display: none;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #3b3940;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-family: 'Martel', Georgia, serif;
    font-size: 1.1rem;
    color: #5f5f61;
    line-height: 1.8;
}

.art-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.art-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.art-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.art-card-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.art-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.art-card:hover .art-card-image img {
    transform: scale(1.08);
}

.art-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(59, 57, 64, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.art-card:hover .art-card-overlay {
    opacity: 1;
}

.art-card-content {
    padding: 2rem;
}

.art-card-category {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f0a951;
    margin-bottom: 0.75rem;
}

.art-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b3940;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.art-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.art-card-title a:hover {
    color: #f0a951;
}

.art-card-description {
    font-family: 'Martel', Georgia, serif;
    font-size: 0.95rem;
    color: #5f5f61;
    line-height: 1.8;
}

.art-cta-wrapper {
    text-align: center;
    margin-top: 4rem;
}

/* Responsive Art Grid */
@media (max-width: 991px) {
    .art-showcase-section {
        padding: 5rem 0;
    }
    .section-header {
        margin-bottom: 3rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .art-showcase-section {
        padding: 4rem 0;
    }
    .art-grid {
        grid-template-columns: 1fr;
    }
    .art-card-image {
        height: 250px;
    }
    .art-card-content {
        padding: 1.5rem;
    }
    .art-card-title {
        font-size: 1.25rem;
    }
}

/* ============================================
   Quote/Philosophy Section
   ============================================ */
.philosophy-section {
    padding: 8rem 0;
    background: #3b3940;
    position: relative;
    overflow: hidden;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23f0a951" stroke-width="0.3" opacity="0.1"/></svg>');
    background-size: 200px 200px;
    opacity: 0.5;
}

.philosophy-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 4rem;
    color: #f0a951;
    opacity: 0.5;
    margin-bottom: 2rem;
}

.philosophy-quote {
    font-family: 'Martel', Georgia, serif;
    font-size: 2rem;
    font-style: italic;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.philosophy-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f0a951;
}

.philosophy-divider {
    width: 60px;
    height: 2px;
    background: #f0a951;
    margin: 1.5rem auto 0;
}

/* Responsive Quote */
@media (max-width: 991px) {
    .philosophy-section {
        padding: 5rem 0;
    }
    .philosophy-quote {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .philosophy-section {
        padding: 4rem 0;
    }
    .philosophy-quote {
        font-size: 1.25rem;
    }
    .quote-icon {
        font-size: 3rem;
    }
}

/* ============================================
   Call to Action Section
   ============================================ */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0a951 0%, #ca7711 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-family: 'Martel', Georgia, serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: inline-flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cta {
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn-cta-primary {
    background: #fff;
    color: #3b3940;
    border: 2px solid #fff;
}

.btn-cta-primary:hover {
    background: transparent;
    color: #fff;
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-cta-outline:hover {
    background: #fff;
    color: #3b3940;
    border-color: #fff;
}

/* Responsive CTA */
@media (max-width: 767px) {
    .cta-section {
        padding: 4rem 0;
    }
    .cta-title {
        font-size: 1.75rem;
    }
    .cta-description {
        font-size: 1rem;
    }
    .btn-cta {
        padding: 0.875rem 2rem;
        font-size: 0.8rem;
    }
}

/* ============================================
   Utilities and Animations
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom scrollbar for the page */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f6f6f8;
}

::-webkit-scrollbar-thumb {
    background: #f0a951;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ca7711;
}

/* Smooth reveal animations */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   Contact Page - Artistic Redesign
   ============================================ */

/* Hero Section */
.contact-hero {
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(59, 57, 64, 0.75) 0%,
        rgba(59, 57, 64, 0.5) 50%,
        rgba(240, 169, 81, 0.25) 100%
    );
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 2rem;
}

.contact-hero-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #f0a951;
    margin-bottom: 1rem;
}

.contact-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.contact-hero-subtitle {
    font-family: 'Martel', Georgia, serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .contact-hero {
        min-height: 280px;
    }
    .contact-hero-title {
        font-size: 2rem;
    }
    .contact-hero-subtitle {
        font-size: 1rem;
    }
}

/* Introduction Section */
.contact-intro-section {
    padding: 5rem 0 4rem;
    background: #fff;
    text-align: center;
}

.contact-intro-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-intro-icon {
    margin-bottom: 1.5rem;
}

.contact-intro-icon i {
    font-size: 2rem;
    color: #f0a951;
    opacity: 0.8;
}

.contact-intro-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #3b3940;
    margin-bottom: 1.5rem;
}

.contact-intro-text {
    font-family: 'Martel', Georgia, serif;
    font-size: 1.1rem;
    color: #5f5f61;
    line-height: 1.9;
}

@media (max-width: 767px) {
    .contact-intro-section {
        padding: 3rem 0 2rem;
    }
    .contact-intro-title {
        font-size: 1.5rem;
    }
    .contact-intro-text {
        font-size: 1rem;
    }
}

/* Main Contact Section */
.contact-main-section {
    padding: 4rem 0 6rem;
    background: #f6f6f8;
}

.contact-main-section .row {
    align-items: stretch;
}

.contact-main-section .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #fff;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-form-header {
    margin-bottom: 2.5rem;
}

.contact-form-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b3940;
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    font-family: 'Martel', Georgia, serif;
    font-size: 0.95rem;
    color: #9e9ea0;
}

/* Artistic Form Styling */
.contact-artistic-form .form-row-custom {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-artistic-form .form-group-custom {
    flex: 1;
    position: relative;
    margin-bottom: 1.5rem;
}

.contact-artistic-form .form-group-full {
    flex: 1 1 100%;
}

.form-input-artistic,
.form-textarea-artistic {
    width: 100%;
    padding: 1rem 0;
    font-family: 'Martel', Georgia, serif;
    font-size: 1rem;
    color: #3b3940;
    background: transparent;
    border: none;
    border-bottom: 1px solid #cacacd;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-textarea-artistic {
    resize: vertical;
    min-height: 120px;
}

.form-input-artistic:focus,
.form-textarea-artistic:focus {
    border-bottom-color: #f0a951;
}

.form-label-artistic {
    position: absolute;
    left: 0;
    top: 1rem;
    font-family: 'Martel', Georgia, serif;
    font-size: 1rem;
    color: #9e9ea0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-input-artistic:focus + .form-label-artistic,
.form-input-artistic:not(:placeholder-shown) + .form-label-artistic,
.form-textarea-artistic:focus + .form-label-artistic,
.form-textarea-artistic:not(:placeholder-shown) + .form-label-artistic {
    top: -0.75rem;
    font-size: 0.75rem;
    color: #f0a951;
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #f0a951;
    transition: width 0.3s ease;
}

.form-input-artistic:focus ~ .form-line,
.form-textarea-artistic:focus ~ .form-line {
    width: 100%;
}

.form-submit-wrapper {
    margin-top: 2rem;
    text-align: center;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    background: #f0a951;
    border: 2px solid #f0a951;
    cursor: pointer;
    transition: all 0.4s ease;
}

.contact-submit-btn:hover {
    background: #3b3940;
    border-color: #3b3940;
    transform: translateY(-2px);
}

.contact-submit-btn i {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 767px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    .contact-artistic-form .form-row-custom {
        flex-direction: column;
        gap: 0;
    }
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    background: #fff;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-info-header {
    margin-bottom: 2rem;
}

.contact-info-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b3940;
    margin-bottom: 1rem;
}

.contact-info-divider {
    width: 50px;
    height: 3px;
    background: #f0a951;
}

/* Contact Info Cards */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #f0f0f2;
}

.contact-info-card:last-of-type {
    border-bottom: none;
}

.contact-info-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 169, 81, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1rem;
    color: #f0a951;
}

.contact-info-details {
    flex: 1;
}

.contact-info-label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #9e9ea0;
    margin-bottom: 0.25rem;
}

.contact-info-value {
    font-family: 'Martel', Georgia, serif;
    font-size: 0.95rem;
    color: #3b3940;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-value:hover {
    color: #f0a951;
}

/* Social Links */
.contact-social-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #f0f0f2;
}

.contact-social-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #3b3940;
    margin-bottom: 1rem;
}

.contact-social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.contact-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f6f6f8;
    border-radius: 50%;
    color: #5f5f61;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background: #f0a951;
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .contact-info-wrapper {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .contact-info-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* Map Section */
.contact-map-section {
    padding: 5rem 0;
    background: #fff;
}

.contact-map-wrapper {
    text-align: center;
}

.contact-map-header {
    margin-bottom: 2rem;
}

.contact-map-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #f0a951;
    margin-bottom: 0.5rem;
}

.contact-map-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #3b3940;
}

.contact-map-frame {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-map-frame iframe {
    display: block;
    -webkit-filter: grayscale(30%) contrast(1.1);
    filter: grayscale(30%) contrast(1.1);
    -webkit-transition: -webkit-filter 0.5s ease;
    transition: filter 0.5s ease;
}

.contact-map-frame:hover iframe {
    -webkit-filter: grayscale(0%) contrast(1);
    filter: grayscale(0%) contrast(1);
}

@media (max-width: 767px) {
    .contact-map-section {
        padding: 3rem 0;
    }
    .contact-map-title {
        font-size: 1.5rem;
    }
    .contact-map-frame iframe {
        height: 250px;
    }
}

/* Alert Styling for Contact Page */
.contact-alert {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
