/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.5), rgba(0, 0, 0, 0.4)), url('../images/contact_us.jpeg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 174, 17, 0.1) 0%, transparent 25%, rgba(255, 174, 17, 0.1) 50%, transparent 75%, rgba(255, 174, 17, 0.1) 100%);
    animation: stripe-move 6s linear infinite;
}

@keyframes stripe-move {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.contact-hero .container {
    margin-top: 76px;
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    /* margin-bottom: 20px; */
    color: #ffae11;
}

.contact-hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}

.contact-section {
    padding: 80px 0;
    background: #0d0d0d;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 25% 25%, rgba(255, 174, 17, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 174, 17, 0.08) 0%, transparent 50%);
    animation: contact-glow 4s ease-in-out infinite alternate;
}

@keyframes contact-glow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.contact-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffae11;
    border-radius: 50%;
    animation: particle-float 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 40%;
    left: 60%;
    animation-delay: 6s;
}

@keyframes particle-float {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.5);
        opacity: 1;
    }
}

.contact-form {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid #ffae11;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(255, 174, 17, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 174, 17, 0.1), transparent);
    animation: rotate-glow 4s linear infinite;
}

@keyframes rotate-glow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.contact-form > * {
    position: relative;
    z-index: 2;
}

.contact-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(255, 174, 17, 0.3);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.contact-image:hover img {
    transform: scale(1.1);
}

.contact-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 174, 17, 0.3), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.contact-image:hover::after {
    opacity: 1;
}

.contact-info {
    padding: 40px 0;
}

.contact-info h3 {
    color: #ffae11;
    font-size: 24px;
    line-height: 2rem;
   
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    color: #ccc;
}

.contact-item i {
    color: #ffae11 !important;
    font-size: 20px;
    margin-right: 15px;
    width: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    color: #ffae11;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    background: #2d2d2d;
    border: 1px solid #444;
    color: #fff;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: #333;
    border-color: #ffae11;
    color: #fff;
    box-shadow: 0 0 0 2px rgba(255, 174, 17, 0.1);
}

.form-control::placeholder {
    color: #888;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-contact {
    background: linear-gradient(135deg, #ffae11 0%, #e69d00 100%);
    color: #000;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #e69d00 0%, #cc8800 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 174, 17, 0.3);
}

.stats-section {
    background: #111;
    padding: 60px 0;
    text-align: center;
}

.stat-item {
    margin-bottom: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffae11;
    display: block;
}

.stat-label {
    color: #ccc;
    font-size: 16px;
    margin-top: 10px;
}

/* Mobile Responsive Styles */
@media only screen and (max-width: 1200px) {
    .contact-hero h1 {
        margin-top: 50px;
        font-size: 42px;
    }

    .contact-hero p {
        font-size: 16px;
    }

    .contact-form {
        padding: 35px;
    }

    .contact-info {
        padding: 35px 0;
    }

    .contact-info h3 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 991px) {
    .contact-hero {
        height: 70vh;
        padding: 20px 0;
    }

    .contact-hero h1 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .contact-hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-form {
        padding: 30px;
        margin-bottom: 30px;
    }

    .contact-info {
        padding: 30px 0;
    }

    .contact-info h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .contact-item {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .contact-item i {
        font-size: 18px;
        margin-right: 12px;
        width: 25px;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }

    textarea.form-control {
        min-height: 100px;
    }

    .btn-contact {
        padding: 12px 35px;
        font-size: 15px;
    }

    .contact-image {
        margin-bottom: 25px;
    }

    .stats-section {
        padding: 40px 0;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .contact-hero {
        height: 60vh;
    }

    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-hero p {
        font-size: 13px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-form {
        padding: 25px 20px;
        margin-bottom: 25px;
    }

    .contact-form h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }

    .contact-info {
        padding: 25px 0;
    }

    .contact-info h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .contact-item {
        margin-bottom: 15px;
        font-size: 13px;
    }

    .contact-item i {
        font-size: 16px;
        margin-right: 10px;
        width: 20px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-control {
        padding: 8px 10px;
        font-size: 13px;
    }

    textarea.form-control {
        min-height: 80px;
    }

    .btn-contact {
        padding: 10px 30px;
        font-size: 14px;
    }

    .contact-image {
        margin-bottom: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }

    /* Disable complex animations on mobile */
    .contact-particles,
    .particle,
    .contact-section::before,
    .contact-form::before {
        display: none;
    }

    .contact-form {
        position: static;
    }

    .contact-image:hover img {
        transform: scale(1.02);
    }
}

/* Contact Images Container Styles */
.contact-images-container {
    /* margin-bottom: 30px; */
}

.contact-images-container .contact-image {
    /* margin-bottom: 20px; */
}

.contact-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(255, 174, 17, 0.3);
    transition: all 0.5s ease;
    position: relative;
}

.contact-img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 45px rgba(255, 174, 17, 0.4);
}

/* Mobile responsive styles for contact images */
@media screen and (max-width: 991px) {
    .contact-images-container .contact-image {
        margin-bottom: 15px;
    }

    .contact-img {
        height: 130px;
    }
}

@media screen and (max-width: 767px) {
    .contact-img {
        height: 110px;
    }

    .contact-images-container {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 576px) {
    .contact-img {
        height: 90px;
    }

    .contact-images-container .contact-image {
        margin-bottom: 10px;
    }
}
