body {
    font-family: 'Manrope', sans-serif;
}

.landing-section {
    height: 100vh;
    background-image: url('assets/heater-in-sauna-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.landing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.navbar {
    padding: 1rem 0;
    position: relative;
    z-index: 1000;
}

/* Index Page Navbar */
.navbar {
    background-color: transparent !important;
}

/* FAQ Page Navbar */
.faq-page .navbar {
    background-color: #000 !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin: 0 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
    font-size: 1.1rem;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-brand img {
    height: 65px;
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.coming-soon-content {
    position: relative;
    z-index: 1;
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.main-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.email-signup {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
    max-width: 500px;
    width: 100%;
}

.signup-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.signup-subtitle {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.signup-form .input-group {
    display: flex;
    gap: 10px;
}

.signup-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.8rem 1rem;
    font-size: 1rem;
}

.signup-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.1);
    outline: none;
}

.signup-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.signup-form .btn-primary {
    background-color: transparent;
    border: 1px solid white;
    padding: 0.8rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.signup-form .btn-primary:hover {
    background-color: white;
    color: black;
}

.signup-social {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.signup-social .social-icon {
    color: #fff;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.signup-social .social-icon:hover {
    color: #f8f9fa;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .email-signup {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .signup-form .input-group {
        flex-direction: column;
        width: 100%;
    }
    
    .signup-form .form-control {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .signup-form .btn-primary {
        width: 100%;
    }
}

.what-to-expect-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

.what-to-expect-section img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.what-to-expect-section img:hover {
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .what-to-expect-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-top: 2rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
}

.nordic-circuit-section {
    padding: 5rem 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.nordic-circuit-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    z-index: 0;
}

.circuit-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.circuit-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.circuit-steps {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.step {
    flex: 1;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step:hover::before {
    opacity: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Step-specific styles */
.sauna-step .step-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
}

.plunge-step .step-icon {
    background: linear-gradient(135deg, #4CAFE6 0%, #3a9bd6 100%);
}

.rest-step .step-icon {
    background: linear-gradient(135deg, #A3B18A 0%, #8d9b76 100%);
}

.repeat-step .step-icon {
    background: linear-gradient(135deg, #95A5A6 0%, #7f8c8d 100%);
}

.step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step:hover .step-icon-img {
    transform: scale(1.1) rotate(-5deg);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    transition: color 0.3s ease;
}

.step-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

/* Step-specific hover effects */
.sauna-step:hover .step-title {
    color: #ff6b6b;
}

.plunge-step:hover .step-title {
    color: #4CAFE6;
}

.rest-step:hover .step-title {
    color: #A3B18A;
}

.repeat-step:hover .step-title {
    color: #95A5A6;
}

@media (max-width: 991px) {
    .circuit-steps {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .circuit-title {
        font-size: 2.5rem;
        padding: 0 1rem;
    }
    
    .circuit-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .step {
        padding: 1.5rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .step-icon {
        width: 70px;
        height: 70px;
    }

    .step-icon-img {
        width: 45px;
        height: 45px;
    }
}

/* Features Section Styles */
.features-section {
    padding: 5rem 0;
    background-image: url('assets/picnic-area.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;
}

.slider-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 2;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

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

.slider-prev svg,
.slider-next svg {
    width: 24px;
    height: 24px;
    color: white;
}

.features-slider {
    display: flex;
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    width: 100%;
    min-height: 500px;
}

.feature-card {
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    padding: 2rem;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease;
    color: white;
}

.feature-card.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.feature-card.prev {
    transform: translateX(-100%);
}

.feature-card.next {
    transform: translateX(100%);
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    margin: 0 auto;
}

.feature-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1.2rem;
}

.feature-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: white;
    font-weight: normal;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .slider-container {
        padding: 0 1rem;
    }
    
    .slider-controls {
        display: none;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-title {
        font-size: 2rem;
    }
    
    .feature-list li {
        font-size: 1.1rem;
    }
}

.contact-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    z-index: 0;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.contact-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
    background-color: white;
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: linear-gradient(135deg, #333 0%, #222 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #222 0%, #111 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 0 1rem;
    }
}

.site-footer {
    background-color: #333;
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 100%);
    z-index: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.footer-logo img:hover {
    opacity: 0.8;
}

.footer-explore {
    flex: 1;
    min-width: 200px;
}

.footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.footer-links a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    text-decoration: none;
}

.social-icon:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    text-decoration: none;
}

.social-icon i {
    line-height: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 991px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-logo,
    .footer-explore,
    .footer-social {
        width: 100%;
        max-width: 300px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.faq-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    z-index: 0;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-question {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.question-mark {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.faq-answer {
    display: flex;
    gap: 1rem;
}

.answer-mark {
    font-size: 1.5rem;
    font-weight: 700;
    color: #666;
    line-height: 1.2;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-answer ul li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.faq-answer ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

@media (max-width: 991px) {
    .faq-section {
        padding: 4rem 0;
    }
    
    .faq-title {
        font-size: 2rem;
        padding: 0 1rem;
    }
    
    .faq-grid {
        padding: 0 1rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
}

/* FAQ Page Navbar */
.faq-page .navbar,
.faq-page .navbar-dark .navbar-nav .nav-link,
.faq-page .navbar-brand img,
.faq-page .navbar-toggler,
.faq-page .navbar-toggler-icon {
    /* Remove these styles as they're now handled by the general navbar styles above */
}

/* Contact Page Styles */
.contact-page .navbar {
    background-color: #000 !important;
}

.contact-page-content {
    position: relative;
    height: calc(100vh - 80px);
    display: flex;
    align-items: stretch;
    padding: 0;
    overflow: hidden;
}

.contact-image-section {
    position: relative;
    width: 30%;
    height: 100%;
    z-index: 1;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.contact-form-section {
    position: relative;
    z-index: 2;
    width: 70%;
    background: rgba(255, 255, 255, 0.98);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact-form-container {
    width: 100%;
    max-width: 600px;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form .form-control {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control:focus {
    border-color: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    outline: none;
}

.contact-form .form-control::placeholder {
    color: #999;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

.contact-form .submit-btn {
    background: linear-gradient(135deg, #333 0%, #222 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form .submit-btn:hover {
    background: linear-gradient(135deg, #222 0%, #111 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-form .submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .contact-page-content {
        flex-direction: column;
        height: calc(100vh - 80px);
        overflow: hidden;
    }

    .contact-image-section {
        width: 100%;
        height: 40vh;
        display: none;
    }

    .contact-form-section {
        width: 100%;
        height: 100%;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.98);
        overflow-y: auto;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }
}

html {
    scroll-behavior: smooth;
}

.footer-links a,
.footer-logo a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-logo a:hover {
    color: #fff;
    text-decoration: none;
}
