/* Arina Beauty Footer Styles - Black Background */
.arina-footer {
    background: #000000;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

/* Subtle gold accent line at top */
.arina-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #B8860B, #D4AF37, #B8860B);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

/* Brand Column */
.brand-column {
    max-width: 300px;
}

.footer-logo {
    height: auto;
    width: 150px;
    margin-bottom: 20px;
    
}

.brand-description {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: #B8860B;
    transform: translateY(-3px);
    color: #ffffff;
}

/* Footer Titles */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #B8860B;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: #B8860B;
    padding-left: 5px;
}

/* Contact Info List */
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #cccccc;
}

.contact-info-list li i {
    color: #B8860B;
    font-size: 16px;
    margin-top: 2px;
    min-width: 18px;
}

.contact-info-list a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-list a:hover {
    color: #B8860B;
}

/* Newsletter Section */
.newsletter-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.newsletter-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #ffffff;
}

.newsletter-content p {
    font-size: 14px;
    color: #cccccc;
}

.newsletter-form {
    flex: 1;
    max-width: 400px;
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input-group input:focus {
    border-color: #B8860B;
}

.newsletter-input-group input::placeholder {
    color: #888888;
}

.newsletter-input-group button {
    background: #B8860B;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.newsletter-input-group button:hover {
    background: #D4AF37;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 20px;
    font-size: 13px;
    color: #888888;
}

.copyright p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #B8860B;
}

.separator {
    color: #444444;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-grid {
        gap: 30px;
    }
    
    .newsletter-section {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .arina-footer {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .brand-column {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-title::after {
        
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info-list li {
        justify-content: start;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input-group button {
        width: 100%;
    }
}


//* Contact Page Styles - Fixed Layout (Flexbox Only) */
.contact-page-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FDF8F3 0%, #FFF8F0 100%);
    font-family: 'Inter', sans-serif;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2C1810;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.contact-header h1 span {
    color: #B8860B;
}

.contact-header p {
    font-size: 18px;
    color: #7A6C5D;
}

/* TWO COLUMN LAYOUT - Flexbox Side by Side */
.contact-two-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

/* Left Column - Contact Info */
.contact-info-column {
    flex: 1;
    min-width: 280px;
}

/* Right Column - Contact Form */
.contact-form-column {
    flex: 1;
    min-width: 280px;
}

/* Cards Styling */
.contact-card,
.form-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.contact-card:hover,
.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(184, 134, 11, 0.1);
}

.contact-card h3,
.form-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.contact-card > p,
.form-card > p {
    color: #7A6C5D;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Contact Items */
.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(184, 134, 11, 0.1);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: #B8860B;
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 5px;
}

.contact-text p,
.contact-text a {
    font-size: 14px;
    color: #7A6C5D;
    text-decoration: none;
}

.contact-text a:hover {
    color: #B8860B;
}

/* Social Links */
.contact-social h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2C1810;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(184, 134, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B8860B;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #B8860B;
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Contact Form 7 Styling */
.form-card .wpcf7-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-card .wpcf7-form .form-group {
    flex: 1;
    min-width: 200px;
}

.form-card .wpcf7-form input,
.form-card .wpcf7-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #E8D8C5;
    border-radius: 12px;
    background: #FDF8F3;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.form-card .wpcf7-form input:focus,
.form-card .wpcf7-form textarea:focus {
    outline: none;
    border-color: #B8860B;
}

.form-card .wpcf7-form .wpcf7-submit {
    background: #B8860B;
    color: #FFFFFF;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.form-card .wpcf7-form .wpcf7-submit:hover {
    background: #8B6508;
    transform: translateY(-2px);
}

/* Map Section - Full Width Below */
.contact-map-section {
    width: 100%;
}

.contact-map {
    width: 100%;
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive - Flexbox only */
@media (max-width: 992px) {
    .contact-two-columns {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-page-section {
        padding: 50px 15px;
    }
    
    .contact-header h1 {
        font-size: 32px;
    }
    
    /* Flexbox column direction on mobile */
    .contact-two-columns {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info-column,
    .contact-form-column {
        flex: auto;
        width: 100%;
    }
    
    .contact-card,
    .form-card {
        padding: 25px;
    }
    
    .contact-map {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-card,
    .form-card {
        padding: 20px;
    }
    
    .contact-item {
        gap: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
    
    .contact-icon i {
        font-size: 18px;
    }
}

/* Mobile Fixed Shop Now Button - Shows only on mobile (Black & Gold Theme) */
.mobile-fixed-shop-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #000000;
    padding: 10px 20px;
    text-align: center;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    border-top: 1px solid rgba(184, 134, 11, 0.3);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.mobile-shop-now-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #B8860B;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Poppins', 'Inter', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mobile-shop-now-btn:hover {
    background: #D4AF37;
    transform: scale(1.02);
    color: #000000;
}

.mobile-shop-now-btn i {
    font-size: 14px;
    color: white;
}

/* Show only on mobile devices (Tablets and Phones) */
@media (max-width: 768px) {
    .mobile-fixed-shop-btn {
        display: block;
    }
    
    /* Add padding to bottom of body so content isn't hidden behind button */
    body {
        padding-bottom: 70px !important;
    }
}

/* Optional: Hide on very small phones if too large */
@media (max-width: 480px) {
    .mobile-shop-now-btn {
        padding: 10px 16px;
        font-size: 14px;
    }
    .mobile-fixed-shop-btn {
        padding: 8px 15px;
    }
    body {
        padding-bottom: 60px !important;
    }
}