/* Contact Page Styles */

/* Ensure body has black background consistent with main site */
body {
    background-color: var(--black, #000000);
    color: var(--white, #ffffff);
}

/* Plain-looking link (used for address text that remains clickable) */
.link-plain {
    color: inherit !important;
    text-decoration: none !important;
}
.link-plain:hover,
.link-plain:focus {
    color: inherit !important;
    text-decoration: none !important;
}

/* Menu Hero Section - Contact Page */
.menu-hero-simple {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white, #ffffff);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--white, #ffffff);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Schoolbell', cursive;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dutch-white, #f6ddbf);
    line-height: 1.4;
    opacity: 0.9;
}

.hero-tagline {
    margin-top: 20px;
}

.tagline-text {
    font-size: 1.1rem;
    color: var(--atomic-tangerine, #f59b78);
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .menu-hero-simple {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .tagline-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Quick Contact Cards */
.quick-contact {
    padding: 80px 0;
    background: var(--black, #000000);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(246, 221, 191, 0.2);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    color: var(--white, #ffffff);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(245, 155, 120, 0.2);
    border-color: rgba(245, 155, 120, 0.4);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--atomic-tangerine, #f59b78);
    font-family: 'Schoolbell', cursive;
}

.contact-card p {
    color: var(--dutch-white, #f6ddbf);
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f59b78, #e67e22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--white, #ffffff);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(360deg);
}

.contact-action-btn {
    background: linear-gradient(135deg, #f59b78, #e67e22);
    color: var(--white, #ffffff);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-action-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 155, 120, 0.4);
}

/* Responsive Design for Contact Cards */
@media (max-width: 1200px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-card {
        padding: 25px 15px;
        margin: 0 10px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
    }
    
    .contact-card p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    
    /* Fix map container for mobile */
    .map-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .map-info-card {
        margin-top: 20px;
    }
    
    /* Form adjustments */
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        width: 100%;
    }
    
    /* Social reviews section */
    .social-content {
        flex-direction: column;
    }
    
    .social-feed, .reviews-section {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-card {
        padding: 20px 15px;
        margin: 0 5px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    /* Fix for mobile viewport */
    html, body {
        width: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--black, #000000);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--white, #ffffff);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--white, #ffffff);
    max-width: 600px;
    margin: 0 auto;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin: 0 15px;
}

/* Ensure map is responsive */
.map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.map-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.interactive-map {
    height: 400px;
    background: #ecf0f1;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.interactive-map:hover {
    transform: scale(1.02);
}

.map-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: var(--white, #ffffff);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 280px;
}

.map-pin {
    position: relative;
    display: inline-block;
    font-size: 3rem;
    color: #e67e22;
    margin-bottom: 15px;
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 2px solid #e67e22;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.map-info h4 {
    font-size: 1.3rem;
    color: var(--white, #ffffff);
    margin-bottom: 10px;
}

.map-info p {
    color: var(--white, #ffffff);
    margin-bottom: 20px;
}

.map-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.map-btn {
    background: #f59b78;
    color: var(--white, #ffffff);
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.map-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 155, 120, 0.4);
}

.location-highlights h3 {
    font-size: 1.5rem;
    color: var(--white, #ffffff);
    margin-bottom: 25px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--white, #ffffff);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(245, 155, 120, 0.1);
    transform: translateX(5px);
}

.highlight-item i {
    font-size: 1.5rem;
    color: #e67e22;
    margin-right: 15px;
    margin-top: 5px;
}

.highlight-item h4 {
    font-size: 1.1rem;
    color: var(--white, #ffffff);
    margin-bottom: 5px;
}

.highlight-item p {
    color: var(--white, #ffffff);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Full-Width Map Section */
.map-section-fullwidth {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: var(--black, #000000);
}

.map-container-fullwidth {
    position: relative;
    width: 100%;
    height: 100%;
}

.interactive-map-fullwidth {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.interactive-map-fullwidth iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(30%) contrast(1.2);
    transition: filter 0.3s ease;
}

.interactive-map-fullwidth:hover iframe {
    filter: grayscale(0%) contrast(1);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
}

.map-info-card {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(246, 221, 191, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    color: var(--white, #ffffff);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateX(0);
    transition: all 0.3s ease;
}

.map-info-card:hover {
    transform: translateX(10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.map-info-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-info-header h2 {
    font-size: 2.5rem;
    color: var(--atomic-tangerine, #f59b78);
    margin-bottom: 10px;
    font-family: 'Schoolbell', cursive;
}

.map-info-header p {
    color: var(--dutch-white, #f6ddbf);
    font-size: 1.1rem;
    opacity: 0.9;
}

.location-details {
    margin-bottom: 30px;
}

.location-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(246, 221, 191, 0.05);
    border-radius: 10px;
    border-left: 3px solid var(--atomic-tangerine, #f59b78);
    transition: all 0.3s ease;
}

.location-item:hover {
    background: rgba(246, 221, 191, 0.1);
    transform: translateX(5px);
}

.location-item i {
    color: var(--atomic-tangerine, #f59b78);
    font-size: 1.5rem;
    margin-top: 5px;
    min-width: 20px;
}

.location-item h4 {
    color: var(--white, #ffffff);
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.location-item p {
    color: var(--dutch-white, #f6ddbf);
    line-height: 1.5;
    margin: 0;
}

.map-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.map-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Schoolbell', cursive;
}

.map-btn.primary {
    background: linear-gradient(135deg, var(--atomic-tangerine, #f59b78), var(--portland-orange, #fc583e));
    color: var(--white, #ffffff);
    box-shadow: 0 5px 15px rgba(245, 155, 120, 0.3);
}

.map-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 155, 120, 0.4);
}

.map-btn.secondary {
    background: transparent;
    color: var(--atomic-tangerine, #f59b78);
    border: 2px solid var(--atomic-tangerine, #f59b78);
}

.map-btn.secondary:hover {
    background: var(--atomic-tangerine, #f59b78);
    color: var(--white, #ffffff);
    transform: translateY(-2px);
}

/* Animated Map Marker */
.map-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(245, 155, 120, 0.3);
    border-radius: 50%;
    animation: mapPulse 2s infinite;
}

.marker-icon {
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--atomic-tangerine, #f59b78);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white, #ffffff);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

@keyframes mapPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Responsive Design for Map */
@media (max-width: 768px) {
    .map-section-fullwidth {
        height: 80vh;
        min-height: 500px;
    }
    
    .map-overlay {
        justify-content: center;
        align-items: flex-end;
        padding-bottom: 40px;
    }
    
    .map-info-card {
        max-width: 90%;
        padding: 30px 20px;
    }
    
    .map-info-header h2 {
        font-size: 2rem;
    }
    
    .map-actions {
        flex-direction: column;
    }
    
    .map-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .map-info-card {
        padding: 20px 15px;
    }
    
    .location-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .location-item i {
        margin-top: 0;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--black, #000000);
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.form-intro h2 {
    font-size: 2.2rem;
    color: var(--white, #ffffff);
    margin-bottom: 20px;
}

.form-intro p {
    color: var(--white, #ffffff);
    line-height: 1.6;
    margin-bottom: 30px;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white, #ffffff);
}

.feature-item i {
    color: #e67e22;
    font-size: 1.1rem;
}

.contact-form-wrapper {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(246, 221, 191, 0.2);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

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

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dutch-white, #f6ddbf);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(246, 221, 191, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(246, 221, 191, 0.1);
    color: var(--white, #ffffff);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(246, 221, 191, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--atomic-tangerine, #f59b78);
    background: rgba(246, 221, 191, 0.15);
    box-shadow: 0 0 0 3px rgba(245, 155, 120, 0.1);
}

.form-group select option {
    background: var(--black, #000000);
    color: var(--white, #ffffff);
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--dutch-white, #f6ddbf);
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #f59b78;
    border-color: #f59b78;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white, #ffffff);
    font-size: 12px;
    font-weight: bold;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #f59b78, #e67e22);
    color: var(--white, #ffffff);
    border: none;
    padding: 18px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #e67e22, #d35400);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 155, 120, 0.4);
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text,
.submit-btn.loading .btn-icon {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: block;
}

/* Social Media & Reviews Section */
.social-reviews {
    padding: 80px 0;
    background: var(--black, #000000);
}

.social-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.social-feed {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.social-card {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(246, 221, 191, 0.2);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(245, 155, 120, 0.2);
    border-color: rgba(245, 155, 120, 0.3);
}

.social-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.social-header i {
    font-size: 1.2rem;
}

.social-card.instagram .social-header i {
    color: #e4405f;
}

.social-card.facebook .social-header i {
    color: #1877f2;
}

.social-card.twitter .social-header i {
    color: #1da1f2;
}

.social-header span {
    font-weight: 600;
    color: var(--white, #ffffff);
}

.social-image {
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.social-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.social-content-text p {
    color: var(--white, #ffffff);
    line-height: 1.6;
    margin-bottom: 15px;
}

.social-stats {
    display: flex;
    gap: 20px;
}

.social-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--white, #ffffff);
    font-size: 0.9rem;
}

.reviews-section h3 {
    font-size: 1.8rem;
    color: var(--white, #ffffff);
    margin-bottom: 30px;
    text-align: center;
}

.review-carousel {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
}

.review-card.active {
    opacity: 1;
    transform: translateX(0);
}

.review-stars {
    margin-bottom: 20px;
}

.review-stars i {
    color: #f1c40f;
    font-size: 1.2rem;
    margin: 0 2px;
}

.review-card p {
    font-style: italic;
    color: var(--dutch-white, #f6ddbf);
    line-height: 1.6;
    margin-bottom: 20px;
}

.reviewer strong {
    color: var(--atomic-tangerine, #f59b78);
    display: block;
    margin-bottom: 5px;
}

.reviewer span {
    color: var(--dutch-white, #f6ddbf);
    font-size: 0.9rem;
}

.review-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.review-nav-btn {
    background: #f59b78;
    color: var(--white, #ffffff);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-nav-btn:hover {
    background: #e67e22;
    transform: scale(1.1);
}

.review-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #f59b78;
    transform: scale(1.2);
}

/* Footer Styles - Copied from Index Page */
.footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(246, 221, 191, 0.05) 100%);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(246, 221, 191, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--dutch-white);
    font-size: 1.1rem;
}

.footer-links h4,
.footer-social h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    color: var(--dutch-white);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--atomic-tangerine);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--dutch-white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--atomic-tangerine);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(246, 221, 191, 0.1);
}

.footer-bottom p {
    color: var(--dutch-white);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-social {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-links a:hover {
        transform: none;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .map-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-right {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .map-placeholder {
        padding: 20px;
        min-width: 250px;
    }
    
    .floating-contact-elements {
        display: none;
    }
}
