:root {
    --primary-color: #272727;
    --secondary-color: #8c8c8c;
    --third-color: #272727;
    --border: #ecf1f5;
}



/* breadcrumb area in all inner pages */
.breadcrumb-area {
    position: relative;
    background-image: url('../img/bestop11.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
}

.breadcrumb-area::before {
    content: "";
    position: absolute;
    background-color: rgba(0, 0, 0, 0.7);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.breadcrumb-content h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: slideDown 0.6s ease-out;

}

.breadcrumb-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb-content li {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    display: inline;
    margin-right: 5px;
    text-transform: capitalize;
}



















/* contact form start */




.contact-container {
    position: relative;
    padding: 40px 80px 80px 80px;
}

.form-head {
    text-align: center;
    animation: slideDown 0.6s ease-out;
    padding-bottom: 40px;
}

.form-head h2 {
    font-size: 36px;
    font-weight: 700;
}

.form-head p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 480px;
    margin: 0 auto;
}

.form-container {
    background: linear-gradient(to bottom,
            rgba(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.9) 50%,
            rgba(0, 0, 0, 0.75) 100%);
    z-index: 0;



    border-radius: 25px;
    padding: 40px 30px;
    animation: slideUp 0.6s ease-out 0.2s both;
    position: relative;
    overflow: hidden;
    color: #fff;
}



.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}



.form-grid {
    display: grid;
    gap: 1.5rem;
    align-items: center;
}



.form-row {
    display: grid;
    gap: 1rem;
}


@media (min-width: 640px) {
    .form-row.two-cols {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.025em;
    transition: color 0.2s ease;

}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 10px 20px;
    border: 1px solid rgb(154, 154, 154);
    border-radius: 10px;
    font-size: 16px;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    font-weight: 400;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.2);
    transform: translateY(-1px);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: var(--accent-gold);
}

.form-textarea {
    resize: vertical;
    height: 80px;
    font-family: 'Inter', sans-serif;
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.2rem;
    padding-right: 3rem;
    appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    background: rgb(120, 117, 117);
    color: #ffffff;
    padding: 10px 30px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
    width: fit-content;
}

.submit-btn:hover {
    transform: translateY(-2px);
    background-color: black;
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}



@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}


@media (max-width: 640px) {
    .header h1 {
        font-size: 2rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

}

/* contact form end */











/* social media  */

.social-container {
    border-radius: 30px;
    align-items: center;
    text-align: center;
    display: flex;
    justify-content: center;
    animation: slideUp 0.6s ease-out 0.4s both;

    background: linear-gradient(to bottom,
            rgba(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.8) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;

}


.social-row {
    align-items: center;
    text-align: center;
    border-radius: 25px;
    padding-top: 10px;
}




.social-row i {
    font-size: 45px;
    font-weight: 200;
    transition: color 0.3s ease;
    color: white;
    padding-bottom: 30px;
}



.social-row .col-2:hover i {
    transition: all 0.3s ease;
}



.social-row .col-2:hover i {
    transform: scale(1.05);
}







@media (max-width: 768px) {
    .social-container {
        margin-top: 20px;
    }


    .social-row {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding-top: 20px;
    }

    .social-row a {
        font-size: 24px;
        color: #333;
        text-decoration: none;
        transition: transform 0.3s ease;
        width: auto;
        height: auto;
    }

    .social-row a:hover {
        transform: scale(1.2);
        color: #0077b5;
        /* example hover color */
    }
}
















/* map section  */

.map-area {
    padding: 0px;
    padding-top: 30px;
}

.map-area iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 25px;

}












/* responsive */

@media (max-width:992px) {
    .contact-container {
        padding: 40px;
    }
}


@media (max-width:768px) {

    .contact-container {
        padding: 40px 20px;
    }
}


@media (max-width:575px) {

    .contact-container {
        padding: 40px 20px;
    }
}


















/* cta section */
.cta-container {
    padding: 40px;



    background: linear-gradient(to top,
            rgb(0, 0, 0) 0%,
            rgba(0, 0, 0, 0.9) 50%,
            rgba(0, 0, 0, 0.6) 100%);
    z-index: 0;
}

.cta-msg p {
    font-size: 36px;
    font-weight: 700;
    color: rgb(255, 255, 255);
}


.cta-btn a {
    padding: 15px 23px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    background-color: #25D366;
    color: white;
    transition: all 0.2s ease;
}


.cta-btn:hover a {
    transform: scale(1.03);
}


.cta-btn i {
    color: #ffffff;
    margin-right: 15px;
    font-size: 20px;
    margin-right: 15px;
    font-size: 20px;
    animation: quickJerkShake 0.3s infinite ease-in-out;

}



@keyframes quickJerkShake {
    0% {
        transform: rotate(0 deg);
    }

    20% {
        transform: rotate(-15deg);
    }

    40% {
        transform: rotate(15deg);
    }

    60% {
        transform: rotate(-15deg);
    }

    80% {
        transform: rotate(15deg);
    }

    100% {
        transform: rotate(0 deg);
    }


}