/*Contact PAGE*/
/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(128, 0, 128, 0.4), rgba(216, 0, 216, 0.4));
    padding: 80px 0 30px;
    text-align: center;
}
        
.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 45px;
    color: white;
    margin-bottom: 20px;
}
        
.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}



/* Contact Page */
.contact-section {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}
        
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
        
/* Contact Info */        
.contact-info-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 35px;
    color: #d800d8;
    margin-bottom: 30px;
}
        
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 15px;
    background: rgba(50, 15, 54, 0.3);
    border-radius: 15px;
    border: 2px solid rgba(128, 0, 128, 0.2);
    transition: border-color 0.3s ease;
}
        
.contact-item:hover {
    border-color: #d800d8;
}
        
.contact-icon-wrapper {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #800080, #d800d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}
        
.contact-icon {
    font-size: 15px;
    color: white;
}
        
.contact-details {
    flex: 1;
}
        
.contact-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: white;
    margin-bottom: 8px;
}
        
.contact-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #cccccc;
    line-height: 1.5;
}
        
.contact-link {
    color: #d800d8;
    text-decoration: none;
    transition: color 0.3s ease;
}
        
.contact-link:hover {
    color: white;
}
        
/* Social Media */
.social-media {
    margin-top: 30px;
}
        
.social-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: white;
    margin-bottom: 20px;
}
        
.social-icons {
    display: flex;
    gap: 20px;
}
        
.social-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #800080, #d800d8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease;
}
        
.social-icon:hover {
    transform: scale(1.1);
    background: #800080;
}
        
/* Contact Form */
.contact-form {
    background: rgba(50, 15, 54, 0.5);
    padding: 30px;
    border-radius: 20px;
    border: 2px solid rgba(128, 0, 128, 0.3);
}
        
.form-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}
        
.form-group {
    margin-bottom: 15px;
}
        
.form-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: white;
    margin-bottom: 5px;
    display: block;
}
        
.form-input,
.form-textarea {
    width: 100%;
    padding: 13px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(128, 0, 128, 0.3);
    border-radius: 10px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    transition: border-color 0.3s ease;
}

        
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #d800d8;
}
        
.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
        
.form-textarea {
    height: 100px;
    resize: vertical;
}
        
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
        
.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #800080, #d800d8);
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}
        
.submit-btn:hover {
    transform: scale(1.01);
}

/* Style dropdown options */
#service option {
    background-color: rgba(199, 14, 199, 0.2); /* background color */
    color: white; /* text color */
    border-radius: 50px; /* reduce radius */
}

/* Hover effect for options */
#service option:hover {
    background-color: rgba(216, 0, 216, 0.5);
    color: white;
    border-radius: 50px; /* reduced radius */
}

/* Selected option */
#service option:checked {
    background-color: rgba(216, 0, 216, 0.8);
    color: white;
    border-radius: 5px; /* reduced radius */
}




        
/* Office Hours */
.office-hours {
    background: rgba(128, 0, 128, 0.4);
    padding: 30px 0;
}
        
.office-hours-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}
        
.office-hours-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 30px;
    color: white;
    margin-bottom: 10px;
}
        
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 10px;
}
        
.hours-item {
    padding: 20px 10px;
    background: rgba(128, 0, 128, 0.1);
    border-radius: 15px;
    border: 2px solid #d800d8;
}
        
.hours-day {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #d800d8;
    margin-bottom: 5px;
}
        
.hours-time {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #cccccc;
}



/* ------------------------
   KEYFRAMES
------------------------- */
@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeftTop {
    0% {
        opacity: 0;
        transform: translate(-100px, -100px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

@keyframes slideInRightTop {
    0% {
        opacity: 0;
        transform: translate(100px, -100px);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0);
    }
}

/* ------------------------
   ANIMATION CLASSES
------------------------- */

/* For text line stagger effect */
.animate-line {
    opacity: 0;
    animation: fadeSlideUp 1s ease-in forwards;
}
.delay-0 { animation-delay: 0.2s; }
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 0.8s; }

/* Scroll animation base */
.scroll-animate {
    opacity: 0;
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    will-change: transform, opacity;
}

/* Animate from LEFT */
.animate-left { transform: translateX(-100px, -100px); }
.animate-left.in-view {
    opacity: 1;
    transform: translate(0 0);
}

/* Animate from RIGHT */
.animate-right { transform: translateX(100px, -100px); }
.animate-right.in-view {
    opacity: 1;
    transform: translate(0, 0);
}

/* Animate from TOP */
.animate-top { transform: translateY(-100px); }
.animate-top.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Animate from BOTTOM */
.animate-bottom { transform: translateY(100px); }
.animate-bottom.in-view {
    opacity: 1;
    transform: translateY(0);
}




/* ============================= */
/* Responsive Design Starts Here */
/* ============================= */

/* --- Tablet (768px and below) --- */
@media (max-width: 1024px) {
    .contact-hero {
        padding: 60px 0 20px;
    }
        
    .hero-title {
        font-weight: 800;
        font-size: 40px;
        margin-bottom: 10px;
}
        
    .hero-subtitle {
        font-weight: 400;
        font-size: 15px;
        max-width: 800px;
}

/* Contact Page */
.contact-section {
    padding: 30px 0;
    max-width: 1200px;
    margin: 0 auto;
}
        
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}
        
/* Contact Info */ 
.contact-info{
    margin: 0 20px;
}       
.contact-info-title {
    font-size: 25px;
    margin-bottom: 10px;
}
        
.contact-item {
    margin-bottom: 10px;
}

.contact-icon-wrapper {
    width: 30px;
    height: 30px;
    margin-right: 20px;
}
        
.contact-icon {
    font-size: 13px;
    color: white;
}
        
.contact-details {
    flex: 1;
}
        
.contact-label {
    font-size: 13px;
    margin-bottom: 3px;
}
        
.contact-value {
    font-size: 10px;
}
            
/* Social Media */
.social-media {
    margin-top: 15px;
}
        
.social-title {
    margin-bottom: 10px;
}
        
.social-icons {
    gap: 30px;
}
        
.social-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
}
           
/* Contact Form */
.contact-form {
    padding: 30px;
    border-radius: 20px;
    margin: 0 20px;
}
        
.form-title {
    font-size: 25px;
    margin-bottom: 15px;
}
        
.form-group {
    margin-bottom: 15px;
}
        
.form-label {
    font-size: 13px;
}
        
.form-input,
.form-textarea {
    width: 100%;
    padding: 10px 20px;
    font-size: 10px;

}
      
.submit-btn {
    font-size: 14px;
}



/* Office Hours */
.office-hours {
    padding: 20px 0;
}
        
.office-hours-container {
    padding: 0 30px;
}
        
.office-hours-title {
    font-size: 25px;
}
        
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}
        
.hours-item {
    border: 1.5px solid #d800d8;
}
        
.hours-day {
    font-size: 14px;
}
        
.hours-time {
    font-size: 12px;
 
}

}


/* --- Mobile (768px and below) --- */
@media (max-width: 768px) {
        .contact-hero {
        padding: 60px 0 20px;
    }
        
    .hero-title {
        font-size: 30px;
        margin-bottom: 8px;
}
        
    .hero-subtitle {
        font-size: 12px;
}


/* Contact Page */
.contact-section {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}
        
.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
        
/* Contact Info */ 
.contact-info{
    margin: 0 20px;
}       
.contact-info-title {
    font-size: 25px;
    margin-bottom: 10px;
}
        
.contact-item {
    margin-bottom: 10px;
}

.contact-icon-wrapper {
    width: 30px;
    height: 30px;
    margin-right: 20px;
}
        
.contact-icon {
    font-size: 13px;
    color: white;
}
        
.contact-details {
    flex: 1;
}
        
.contact-label {
    font-size: 13px;
    margin-bottom: 3px;
}
        
.contact-value {
    font-size: 10px;
}
            
/* Social Media */
.social-media {
    margin-top: 15px;
}
        
.social-title {
    margin-bottom: 10px;
}
        
.social-icons {
    gap: 30px;
}
        
.social-icon {
    width: 30px;
    height: 30px;
    font-size: 15px;
}
           
/* Contact Form */
.contact-form {
    padding: 30px;
    border-radius: 20px;
    margin: 0 20px;
}
        
.form-title {
    font-size: 25px;
    margin-bottom: 15px;
}
        
.form-group {
    margin-bottom: 15px;
}
        
.form-label {
    font-size: 13px;
}
        
.form-input,
.form-textarea {
    width: 100%;
    padding: 10px 20px;
    font-size: 10px;

}
      
.submit-btn {
    font-size: 14px;
}

/* Office Hours */
.office-hours {
    padding: 20px 0;
}
        
.office-hours-container {
    padding: 0 100px;
}
        
.office-hours-title {
    font-size: 25px;
}
        
.hours-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
        
.hours-item {
    border: 1.5px solid #d800d8;
}
        
.hours-day {
    font-size: 14px;
}
        
.hours-time {
    font-size: 12px;
 
}

}