/* ===== Bassmah Landing - Contact & Footer Styles ===== */

/* ===== CONTACT ===== */

.contact-section {
    background: linear-gradient(180deg, #f0fdf4 0%, #ecfdf5 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
    color: var(--dark);
}

.contact-deco {
    position: absolute;
    z-index: 1;
    opacity: 0.08;
    pointer-events: none;
}

.contact-deco svg {
    width: 100%;
    height: 100%;
}

.contact-deco.deco-rocket {
    width: 120px;
    height: 120px;
    top: 8%;
    right: 5%;
    transform: rotate(-15deg);
    animation: decoFloat1 6s ease-in-out infinite;
}

.contact-deco.deco-gift {
    width: 100px;
    height: 100px;
    bottom: 12%;
    left: 4%;
    animation: decoFloat2 7s ease-in-out infinite;
}

.contact-deco.deco-chart {
    width: 90px;
    height: 90px;
    top: 50%;
    right: 8%;
    animation: decoFloat3 5s ease-in-out infinite;
}

.contact-deco.deco-star {
    width: 60px;
    height: 60px;
    top: 15%;
    left: 10%;
    animation: decoFloat1 8s ease-in-out infinite;
}

.contact-deco.deco-target {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 12%;
    animation: decoFloat2 6s ease-in-out infinite;
}

.contact-deco.deco-medal {
    width: 70px;
    height: 70px;
    top: 60%;
    left: 6%;
    animation: decoFloat3 7s ease-in-out infinite;
}

.contact-top {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.contact-top .section-title {
    color: var(--dark);
}

.contact-top .section-subtitle {
    color: var(--text-light);
}

.contact-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    background: #fff;
    border-radius: 28px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.contact-card-header {
    background: linear-gradient(135deg, var(--accent), #1a8f4a);
    padding: 32px 40px;
    text-align: center;
}

.contact-card-header h3 {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 6px;
}

.contact-card-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.contact-card-body {
    padding: 40px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 15px 18px;
    border: 2px solid #e8ecf1;
    border-radius: 12px;
    font-size: 17px;
    font-family: 'Tajawal', sans-serif;
    transition: var(--transition);
    background: var(--light-bg);
    outline: none;
    color: var(--dark);
}

.form-group input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(39, 174, 96, 0.1);
    background: #fff;
}

.form-group input::placeholder {
    color: #94a3b8;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 20px;
    font-weight: 800;
    font-family: 'Tajawal', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 25px rgba(39, 174, 96, 0.3);
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(39, 174, 96, 0.4);
}

.contact-channels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.contact-channel {
    background: #fff;
    border: 2px solid #e8ecf1;
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
}

.contact-channel:hover {
    background: #fff;
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.contact-channel-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-channel-icon.cc-phone {
    background: rgba(39, 174, 96, 0.15);
}

.contact-channel-icon.cc-web {
    background: rgba(41, 128, 185, 0.15);
}

.contact-channel-icon.cc-wa {
    background: rgba(37, 211, 102, 0.15);
}

.contact-channel-icon svg {
    width: 24px;
    height: 24px;
}

.contact-channel span {
    display: block;
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.contact-channel a {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    transition: var(--transition);
}

.contact-channel:hover a {
    color: var(--accent);
}

/* ===== FOOTER ===== */

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 50px 0 24px;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo img {
    height: 45px;
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: rgba(255, 255, 255, 0.7);
}

.footer-social a:hover svg {
    fill: #fff;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.footer-links a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    text-align: center;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.4);
}
