/* ==========================================================================
   ELEGANT SITE FOOTER
   ========================================================================== */
.elegant-site-footer {
    background-color: #00122e; /* A very deep, classic navy blue */
    color: #94a3b8;
    font-family: 'Poppins', sans-serif;
    padding: 80px 0 30px 0;
}

.ef-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.text-orange { color: #b87333 !important; }
.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 30px; }

/* --- Top CTA Section --- */
.ef-cta-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
}

.ef-cta-headline {
    font-family: 'Teko', sans-serif;
    font-size: 48px;
    color: #ffffff;
    font-weight: 400;
    margin: 0;
    letter-spacing: 1px;
}

.ef-btn-outline {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 30px; /* Elegant pill shape */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ef-btn-outline:hover {
    background-color: #b87333;
    border-color: #b87333;
    color: #ffffff;
}

/* --- Delicate Dividers --- */
.ef-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08); /* Barely visible, highly elegant line */
}

/* --- Main Grid --- */
.ef-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    padding: 70px 0;
}

/* --- Typography & Links --- */
.ef-heading {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 25px 0;
}

.ef-desc {
    font-size: 14px;
    line-height: 1.8;
    margin: 20px 0 25px 0;
    max-width: 300px;
}

.ef-logo {
    max-height: 45px;
}

/* Socials */
.ef-socials {
    display: flex;
    gap: 20px;
}

.ef-socials a {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ef-socials a:hover {
    color: #b87333;
}

/* List Links */
.ef-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ef-links li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.ef-links li a:hover {
    color: #ffffff;
}

/* Contact Text */
.ef-contact-text {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.ef-contact-text a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ef-contact-text a:hover {
    color: #b87333;
}

/* --- Minimalist Newsletter Input --- */
.ef-input-line {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 8px;
    transition: border-color 0.3s ease;
}

.ef-input-line:focus-within {
    border-color: #b87333;
}

.ef-input-line input {
    flex-grow: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 13px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    padding: 0;
}

.ef-input-line input::placeholder {
    color: #6c7a87;
    font-weight: 300;
}

.ef-input-line button {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.ef-input-line button:hover {
    color: #b87333;
}

/* --- Bottom Copyright Area --- */
.ef-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 13px;
    color: #6c7a87;
}

.ef-legal a {
    color: #6c7a87;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ef-legal a:hover, .ef-legal a.text-white:hover {
    color: #b87333 !important;
}

.text-white { color: #ffffff; }

.ef-dot {
    display: inline-block;
    width: 3px;
    height: 3px;
    background-color: #6c7a87;
    border-radius: 50%;
    margin: 0 10px;
    vertical-align: middle;
}

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
    .ef-cta-section { flex-direction: column; text-align: center; gap: 25px; }
    .ef-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
    .ef-desc { max-width: 100%; }
}

@media (max-width: 767px) {
    .elegant-site-footer { padding: 60px 0 20px 0; }
    .ef-cta-headline { font-size: 38px; }
    .ef-grid { grid-template-columns: 1fr; gap: 40px; padding: 50px 0; }
    .ef-bottom { flex-direction: column; gap: 15px; text-align: center; }
}