/* ============================================
   CONTACT PAGE STYLES - Lovette Jallow
   Cream/Tan/Brown Theme (Matches home.css)
   ============================================ */

/* Font Faces */
@font-face {
    font-family: "Playfair Display";
    font-weight: 500;
    font-display: swap;
    src: var(--lj-font-65d0c3b53fd6) format("woff2"),
         var(--lj-font-aed59634dc34) format("woff");
}

@font-face {
    font-family: "Playfair Display";
    font-weight: 900;
    font-display: swap;
    src: var(--lj-font-a8e193d32df5) format("woff2"),
         var(--lj-font-1d0ad30173bd) format("woff");
}

@font-face {
    font-family: "Inclusive Sans";
    font-weight: 400;
    font-display: swap;
    src: var(--lj-font-e99f2dc4c893) format("woff2"),
         var(--lj-font-e99f2dc4c893) format("woff");
}

@font-face {
    font-family: "Inclusive Sans";
    font-weight: 500;
    font-display: swap;
    src: var(--lj-font-e99f2dc4c893) format("woff2"),
         var(--lj-font-e99f2dc4c893) format("woff");
}

@font-face {
    font-family: "Inclusive Sans";
    font-weight: 600;
    font-display: swap;
    src: var(--lj-font-e99f2dc4c893) format("woff2"),
         var(--lj-font-e99f2dc4c893) format("woff");
}

/* CSS Variables - Matching home.css color theme */
:root {
    --color-primary: #D2B48C;
    --color-primary-dark: #995A3B;
    --color-primary-light: #FCF1DD;
    --color-text: #17110A;
    --color-text-light: #4a4a4a;
    --color-text-muted: #666;
    --color-bg: #FCF1DD;
    --color-bg-light: #F8F5F0;
    --color-border: #e0d5c8;
    --font-heading: "Playfair Display", serif;
    --font-body: "Inclusive Sans", sans-serif;
    --font-ui: "Playfair Display", serif;
    --container-max: 1200px;
    --spacing-section: 100px;
}

/* ============================================
   CONTACT HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background-image: var(--lj-img-93cf6965d14c);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
}

.hero-content {
    max-width: 1100px;
    padding: 0 100px;
    margin-right: auto;
    transform: translateY(-40%);
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    margin-bottom: 32px;
    margin-top: 80px;
    display: block;
    opacity: 1;
    visibility: visible;
    z-index: 10;
    position: relative;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    color: #ffffff;
    margin-bottom: 48px;
    white-space: normal;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background: var(--color-primary);
    color: var(--color-bg);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(210, 180, 140, 0.15);
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(153, 90, 59, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background: #fff;
    color: var(--color-primary-dark);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--color-primary);
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
    mix-blend-mode: difference;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--color-bg);
    padding: 30px 0;
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 920px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 180px;
    gap: 6px;
    padding: 0 30px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:nth-child(2) .stat-number {
    margin-top: -0.3em;
}

.stat-number {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    min-height: 1.2em;
}

.stat-number .count {
    color: var(--color-text);
}

.stat-number .suffix {
    color: var(--color-primary);
    font-size: 0.5em;
    line-height: 1;
    margin-top: 0.1em;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(16, 16, 16, 0.65);
}

/* ============================================
   GET IN TOUCH SECTION
   ============================================ */
.get-in-touch-section {
    background: var(--color-bg-light);
    padding: var(--spacing-section) 0;
}

.get-in-touch-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.get-in-touch-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary-dark);
    background: var(--color-primary-light);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.get-in-touch-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--color-text);
    margin: 0 0 20px;
    line-height: 1.2;
}

.get-in-touch-header h2 em {
    font-style: italic;
    color: var(--color-primary-dark);
}

.get-in-touch-header p {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 32px;
    text-decoration: none;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(153, 90, 59, 0.1);
    border-color: var(--color-primary);
}

.contact-method-card:hover .contact-method-arrow {
    transform: translateX(4px);
    color: var(--color-primary-dark);
}

.contact-method-location {
    cursor: default;
}

.contact-method-location:hover {
    transform: none;
    box-shadow: none;
    border-color: var(--color-border);
}

.contact-method-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    border-radius: 12px;
    flex-shrink: 0;
    color: var(--color-primary-dark);
}

.contact-method-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-method-label {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
}

.contact-method-value {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 500;
    color: var(--color-text);
}

.contact-method-arrow {
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}
/* ============================================
   CONTACT FORM SECTION
   ============================================ */
.contact-form-section {
    background: #ffffff;
    padding: var(--spacing-section) 0;
}

.contact-form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.contact-form-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-form-info {
    margin-top: -10px;
}

.contact-form-info h2 {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 900;
    color: var(--color-text);
    margin: 0 0 20px;
    line-height: 1.2;
}

.contact-form-info h2 em {
    font-style: italic;
    color: var(--color-primary-dark);
}

.contact-form-info > p {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-light);
    margin: 0 0 40px;
}

.contact-form-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-feature-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    border-radius: 50%;
    color: var(--color-primary-dark);
    flex-shrink: 0;
}

.contact-feature span {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
}

.contact-form-quote {
    background: var(--color-bg-light);
    border-radius: 16px;
    padding: 28px;
    border-left: none;
}

.contact-form-quote blockquote {
    font-family: var(--font-body);
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-text);
    margin: 0 0 12px;
}

.contact-form-quote cite {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    font-style: normal;
}

.contact-form-wrapper {
    background: var(--color-bg-light);
    border-radius: 24px;
    padding: 48px;
    border: 1px solid var(--color-border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label,
.form-group .label {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    background: #ffffff;
    border: 2px solid var(--color-border);
    border-radius: 10px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(210, 180, 140, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}
/* Submit Button */
.submit-button-wrapper {
    margin-top: 8px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px 32px;
    background: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(153, 90, 59, 0.35);
}

.btn-submit .btn-icon {
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(4px);
}

.btn-submit .loading {
    display: none;
}

.btn-submit .loading svg {
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn-submit.submitting .text,
.btn-submit.submitting .btn-icon {
    display: none;
}

.btn-submit.submitting .loading {
    display: inline-flex;
}

.form-disclaimer {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--color-text-muted);
    text-align: center;
    margin: 16px 0 0;
}
/* ============================================
   FOOTER STYLES
   ============================================ */
.site-footer {
    background: #000;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
}

.footer-brand h6 {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-brand h6 a {
    color: #fff;
    text-decoration: none;
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.footer-contact span {
    font-family: var(--font-body);
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--color-primary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

.footer-bottom p {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}
/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content {
        padding: 0 60px;
    }
    
    .stats-grid {
        gap: 40px;
    }
    
    .stats-grid {
        gap: 40px;
    }
    
    .stat-item {
        min-width: 150px;
        padding: 0 20px;
    }
    
    .get-in-touch-container,
    .contact-form-container,
    .footer-container {
        padding: 0 32px;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form-info {
        text-align: center;
    }
    
    .contact-form-features {
        align-items: center;
    }
    
    .contact-form-quote {
        text-align: left;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --spacing-section: 60px;
    }
    
    /* Mobile hero - match home page pattern */
    .hero-section {
        min-height: 100vh;
        min-height: 100svh;
        padding: 0;
        background-image: none !important;
        background-color: #000 !important;
        display: flex;
        align-items: flex-end;
    }

    .hero-section::before,
    .hero-section::after {
        display: none !important;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 24px 144px;
        justify-content: flex-end;
        text-align: center;
        max-width: 100%;
        min-height: 100vh;
        min-height: 100svh;
        z-index: 2;
    }

    .hero-content {
        padding: 0;
        transform: none !important;
        max-width: 100%;
        z-index: 2;
        text-align: center;
        margin-right: 0;
        margin-left: 0;
    }

    .hero-eyebrow {
        font-size: 11px;
        margin-top: 0;
        margin-bottom: 14px;
        letter-spacing: 0.12em;
        color: #D2B48C;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 40px);
        margin-bottom: 20px;
        line-height: 1.15;
        color: #fff;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        flex: 1;
        text-align: center;
        padding: 11px 13px;
        font-size: 14px;
    }

    .hero-buttons .btn-secondary {
        color: #fff;
        border-color: rgba(255, 255, 255, 0.5);
        background: transparent;
    }

    .scroll-indicator {
        bottom: 80px;
        color: rgba(255, 255, 255, 0.7);
    }

    .stats-section {
        padding: 16px 0;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 8px 4px;
        max-width: 100%;
    }

    .stat-item {
        padding: 12px 4px;
        border-right: none;
        min-width: auto;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-number .suffix {
        font-weight: 900;
        font-family: var(--font-body);
    }

    .stat-label {
        font-size: 0.55rem;
        letter-spacing: 0.08em;
    }

    .get-in-touch-container,
    .contact-form-container,
    .footer-container {
        padding: 0 20px;
    }
    
    .get-in-touch-header {
        margin-bottom: 40px;
    }
    
    .get-in-touch-header h2 {
        font-size: 28px;
    }
    
    .get-in-touch-header p {
        font-size: 16px;
    }
    
    .contact-method-card {
        padding: 20px 24px;
    }
    
    .contact-method-icon {
        width: 48px;
        height: 48px;
    }
    
    .contact-method-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .contact-method-label {
        font-size: 11px;
    }
    
    .contact-method-value {
        font-size: 15px;
    }
    
    .contact-form-info h2 {
        font-size: 28px;
    }

    .contact-form-features {
        align-items: stretch;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-feature {
        width: 100%;
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 14px;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
    }

    .contact-feature span {
        text-align: left;
    }
    
    .contact-form-wrapper {
        padding: 28px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-form {
        gap: 20px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="email"],
    .form-group input[type="tel"],
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 16px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .btn-submit {
        padding: 16px 24px;
        font-size: 15px;
    }
    
    .site-footer {
        padding: 60px 0 32px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        margin-top: 40px;
        padding-top: 24px;
    }
}
/* Small Mobile */
@media (max-width: 480px) {
    .hero-container {
        padding: 0 20px calc(120px + env(safe-area-inset-bottom));
    }

    .hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.08em;
    }

    .hero-title {
        font-size: clamp(24px, 7vw, 34px);
        margin-bottom: 16px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 10px 11px;
        font-size: 13px;
    }

    .hero-content {
        padding: 0 16px;
    }

    .section-badge {
        font-size: 11px;
        padding: 6px 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 4px 2px;
    }

    .stat-item {
        padding: 8px 2px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.5rem;
        letter-spacing: 0.05em;
    }

    .get-in-touch-header h2 {
        font-size: 24px;
    }
    
    .contact-method-card {
        padding: 18px 20px;
        gap: 16px;
    }
    
    .contact-method-icon {
        width: 44px;
        height: 44px;
    }
    
    .contact-form-info h2 {
        font-size: 24px;
    }
    
    .contact-form-features {
        gap: 12px;
        align-items: stretch;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-feature {
        width: 100%;
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 12px;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
    }
    
    .contact-feature-icon {
        width: 28px;
        height: 28px;
    }
    
    .contact-feature span {
        font-size: 14px;
        text-align: left;
    }
    
    .contact-form-quote {
        padding: 20px;
    }
    
    .contact-form-quote blockquote {
        font-size: 14px;
    }
    
    .contact-form-wrapper {
        padding: 24px 20px;
        border-radius: 16px;
    }
}

@media (max-width: 360px) {
    .stats-grid {
        gap: 2px 0;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.45rem;
        letter-spacing: 0.03em;
    }
}


/* ============================================
   FONT AWESOME ICONS (FALLBACK)
   ============================================ */
.fab {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
    font-style: normal;
}

.fa-linkedin-in::before { content: "\f0e1"; }
.fa-instagram::before { content: "\f16d"; }
.fa-x-twitter::before { content: "\e61b"; }
.fa-youtube::before { content: "\f167"; }

