/****************************************************/
/* FOOTER SECTION */
/****************************************************/

/* Footer Base Styles */
.footer-section {
    background-color: #892716;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.footer-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* Footer Background Image */
.footer-bg-image {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 20rem;
    height: 6rem;
    z-index: 1;
    border-radius: 0.5rem;
    overflow: hidden;
}

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

/* Footer Content */
.footer-content {
    position: relative;
    z-index: 2;
    padding: 12rem 2rem 5rem 2rem;
}

/* Contact Section */
.contact-section {
    margin-bottom: 8rem;
}

/* Two Column Layout */
.contact-two-columns {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: center;
}

.contact-left-column,
.contact-right-column {
    flex: 1;
}

.contact-left-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-right-column {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Contact Description */
.contact-description {
    text-align: left;
}

.contact-description p {
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #f4e7de;
    line-height: 1.6;
    margin: 0 0 1rem;
    opacity: 0.9;
}

.contact-title {
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 6rem;
    font-weight: bold;
    color: #f4e7de;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0;
}

.contact-subtitle {
    font-family: 'CS_Rachel', 'Inter', serif;
    font-size: 4rem;
    font-weight: 400;
    color: #f4e7de;
    line-height: 1.2;
    margin: 1rem 0 0 0;
    letter-spacing: 0.02em;
}

/* Contact Form */
.contact-form-container {
    max-width: 30rem;
    margin: 0 auto;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    gap: 1rem;
}

.form-row:first-child {
    grid-template-columns: 1fr 1fr;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background-color: #f4e7de;
    border: none;
    border-radius: 0.25rem;
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #892716;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(244, 231, 222, 0.5);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #892716;
    opacity: 0.7;
}

.form-textarea {
    resize: vertical;
    min-height: 8rem;
}

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.checkbox-input {
    display: none;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #dca893;
    line-height: 1.4;
}

.checkbox-custom {
    width: 1.2rem;
    height: 1.2rem;
    border: 2px solid #dca893;
    border-radius: 0.2rem;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-input:checked + .checkbox-label .checkbox-custom {
    background-color: #dca893;
    border-color: #dca893;
}

.checkbox-input:checked + .checkbox-label .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0.4rem;
    height: 0.7rem;
    border: solid #892716;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg);
}

.checkbox-text {
    flex: 1;
}

/* Form Submit Button */
.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background-color: #dca893;
    border: none;
    border-radius: 0.25rem;
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #892716;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    justify-content: center;
}

.form-submit:hover {
    background-color: #f4e7de;
    transform: translateY(-2px);
}

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

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Form Validation */
.form-input.error,
.form-textarea.error {
    border: 2px solid #ff6b6b;
    background-color: #ffe5e5;
}

.error-message {
    color: #ff6b6b;
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background-color: rgba(255, 107, 107, 0.1);
    border-radius: 0.25rem;
    border-left: 3px solid #ff6b6b;
}

.success-message {
    color: #4caf50;
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 0.25rem;
    border-left: 3px solid #4caf50;
    text-align: center;
}

/* Footer Contact Info */
.footer-contact-info {
    text-align: left;
    margin: 0;
}

.footer-contact-title {
    font-family: 'CS_Rachel', 'Inter', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #f4e7de;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
    letter-spacing: 0.02em;
}

.footer-contact-address {
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: #f4e7de;
    line-height: 1.5;
    margin: 0;
    opacity: 0.9;
}

/* Footer Brand */
.footer-brand {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo {
    position: relative;
    display: inline-block;
    width: 300px;
}

.footer-logo-image {
    height: auto;
    width: auto;
    max-width: 100%;
}

.footer-logo-text {
    font-family: 'CS_Rachel', 'Inter', serif;
    font-size: 3rem;
    font-weight: 400;
    color: #f4e7de;
    line-height: 1.1;
    margin: 0;
    text-transform: lowercase;
    letter-spacing: 0.05em;
}

.footer-logo-text .logo-line {
    display: block;
}

.footer-logo-decoration {
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: #f4e7de;
    opacity: 0.3;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    border-top: 1px solid rgba(244, 231, 221, 0.2);
    margin-top: 2rem;
}

/* Footer Disclaimer */
.footer-disclaimer {
    flex-shrink: 0;
    z-index: 1;
}

.disclaimer-text {
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #f4e7de;
    opacity: 0.7;
    line-height: 1.4;
}

/* Scroll to Top Button */
.footer-scroll-top {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-top-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s ease;
    opacity: 0.8;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.scroll-top-btn:focus {
    outline: 2px solid #f4e7de;
    outline-offset: 4px;
    border-radius: 4px;
}

.scroll-top-btn svg {
    display: block;
    transition: all 0.3s ease;
}

.scroll-top-btn:hover svg {
    transform: scale(1.1);
}

/* Footer Legal */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    z-index: 1;
}

.legal-separator {
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 1rem;
    color: #f4e7de;
    opacity: 0.6;
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: center;
}

.footer-menu li {
    display: flex;
    align-items: center;
}

.footer-menu li:not(:first-child)::before {
    content: "/";
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 1rem;
    color: #f4e7de;
    opacity: 0.6;
    margin: 0 1rem;
}

.footer-menu li:not(:last-child) {
    margin-right: 0;
}

.footer-menu a,
.legal-link {
    font-family: 'Host_Grotesk', 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #f4e7de;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-menu a:hover,
.legal-link:hover {
    opacity: 1;
}

/* Animation States - REMOVED (now handled by smooth-animations.css) */
/* Footer animations are now controlled by smooth-animations.css using .in-view class */

/* Responsive Design */
@media (max-width: 575px) {
    .footer-content {
        padding: 10rem 1rem 4rem 1rem;
    }
    
    .contact-title {
        font-size: 3rem;
    }
    
    .contact-subtitle {
        font-size: 2rem;
    }
    
    .form-row:first-child {
        grid-template-columns: 1fr;
    }
    
    .contact-form-container {
        max-width: 100%;
    }
    
    .footer-bg-image {
        width: 15rem;
        height: 4rem;
        top: 1.5rem;
    }
    
    .footer-logo-image {
        height: 3.5rem;
    }
    
    .footer-logo-text {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-back-to-top {
        position: static;
        transform: none;
    }
    
    .back-to-top-btn:hover {
        transform: translateY(-3px);
    }
    
    .footer-legal {
        margin-left: 0;
    }
    
    .footer-contact-title {
        font-size: 1.5rem;
    }
    
    .footer-contact-address {
        font-size: 0.9rem;
    }
    
    /* Mobile specific styles */
    .contact-description {
        text-align: center;
    }
    
    .footer-contact-info {
        text-align: center;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .footer-content {
        padding: 11rem 1.5rem 4rem 1.5rem;
    }
    
    .contact-title {
        font-size: 4rem;
    }
    
    .contact-subtitle {
        font-size: 2.5rem;
    }
    
    .footer-bg-image {
        width: 18rem;
        height: 5rem;
    }
    
    .footer-logo-text {
        font-size: 2.5rem;
    }
    
    .footer-contact-title {
        font-size: 1.7rem;
    }
    
    .footer-contact-address {
        font-size: 0.95rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .footer-content {
        padding: 12rem 2rem 4rem 2rem;
    }
    
    /* Two Column Layout for Tablet */
    .contact-two-columns {
        flex-direction: row;
        gap: 4rem;
        align-items: flex-start;
        text-align: left;
    }
    
    .contact-left-column {
        flex: 1;
        text-align: left;
    }
    
    .contact-right-column {
        flex: 1;
        justify-content: flex-start;
    }
    
    .contact-title {
        font-size: 4rem;
    }
    
    .contact-subtitle {
        font-size: 2.5rem;
    }
    
    .contact-form-container {
        max-width: 100%;
        width: 100%;
    }
    
    .footer-bg-image {
        width: 22rem;
        height: 6rem;
    }
    
    .footer-contact-title {
        font-size: 1.4rem;
    }
    
    .footer-contact-address {
        font-size: 0.9rem;
    }
    
    .contact-description p {
        font-size: 0.95rem;
    }
    
    /* Tablet specific styles - keep centered */
    .contact-description {
        text-align: center;
    }
    
    .footer-contact-info {
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .footer-content {
        padding: 13rem 3rem 5rem 3rem;
    }
    
    /* Two Column Layout for Desktop */
    .contact-two-columns {
        flex-direction: row;
        gap: 5rem;
        align-items: flex-start;
        text-align: left;
    }
    
    .contact-left-column {
        flex: 1;
        text-align: left;
        max-width: 45%;
    }
    
    .contact-right-column {
        flex: 1;
        justify-content: flex-start;
        max-width: 55%;
    }
    
    .contact-title {
        font-size: 5.5rem;
    }
    
    .contact-subtitle {
        font-size: 4rem;
    }
    
    .contact-form-container {
        max-width: 100%;
        width: 100%;
    }
    
    .footer-bg-image {
        width: 25rem;
        height: 7rem;
    }
    
    .footer-logo-text {
        font-size: 3.5rem;
    }
    
    .footer-contact-title {
        font-size: 1.6rem;
    }
    
    .footer-contact-address {
        font-size: 1rem;
    }
    
    .contact-description p {
        font-size: 1.1rem;
    }
}

@media (min-width: 1200px) {
    .footer-content {
        padding: 6rem 4rem 0rem 4rem;
    }
    
    /* Enhanced Two Column Layout for Large Desktop */
    .contact-two-columns {
        gap: 6rem;
    }
    
    .contact-left-column {
        max-width: 42%;
    }
    
    .contact-right-column {
        max-width: 58%;
    }
    
    .contact-title {
        font-size: 4.5rem;
        line-height: 0.9;
    }
    
    .contact-subtitle {
        font-size: 5.5rem;
        margin: 0;
        line-height: 1;
    }
    
    .footer-bg-image {
        width: 28rem;
        height: 8rem;
    }
    
    .footer-logo-text {
        font-size: 4rem;
    }
    
    .footer-contact-title {
        font-size: 1.8rem;
    }
    
    .footer-contact-address {
        font-size: 1.1rem;
    }
    
    .contact-description p {
        font-size: 1.2rem;
    }
}

@media (min-width: 1400px) {
    .footer-content {
        padding: 10rem 5rem 0rem 5rem;
    }
    
    /* Premium Two Column Layout for Extra Large Desktop */
    .contact-two-columns {
        gap: 7rem;
    }
    
    .contact-left-column {
        max-width: 40%;
    }
    
    .contact-right-column {
        max-width: 60%;
    }
    
    .contact-title {
        font-size: 5rem;
        letter-spacing: 0;
    }
    
    .contact-subtitle {
        font-size: 4rem;
        line-height: 1;
        margin: 0;
    }
    
    .footer-bg-image {
        width: 30rem;
        height: 9rem;
    }
    
    .footer-contact-title {
        font-size: 2rem;
    }
    
    .footer-contact-address {
        font-size: 1.2rem;
    }
    
    .contact-description p {
        font-size: 1.1rem;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .footer-section,
    .contact-title,
    .contact-subtitle,
    .contact-form,
    .footer-brand,
    .footer-contact-info,
    .contact-two-columns,
    .contact-description {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    .form-submit,
    .back-to-top-btn,
    .legal-link {
        transition: none !important;
    }
}



