/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 12 December,2025, 18:07:16
    Author     : Peter Dickson
*/

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, rgba(101, 67, 33, 0.8) 0%, rgba(139, 69, 19, 0.8) 100%), 
                url('../../images/eggs_contact.jpg') no-repeat center center fixed;
    background-size: cover;
    padding: 100px 0 60px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'pacificoregular', cursive;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: 'rubiklight', sans-serif;
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Contact Container */
.contact-container {
    padding: 60px 15px;
    position: relative;
    z-index: 1;
}

/* Contact Cards */
.contact-info-card,
.contact-form-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #333;
    height: 100%;
    transition: all 0.3s ease;
}

.contact-info-card:hover,
.contact-form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-body {
    padding: 2.5rem;
}

/* Contact Info Card - Changed background to white */
.contact-info-title {
    font-family: 'pacificoregular', cursive;
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #909090; /* Changed to black */
}

.brand-39 {
    color: #e67e22;
}

.about-section p {
    font-family: 'rubiklight', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444; /* Darker color for better contrast on white */
    margin-bottom: 1.5rem;
}

.section-heading {
    font-family: 'rubiklight', sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: #e67e22;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

/* Contact Details */
.contact-details {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 12px 15px;
    background: rgba(230, 126, 34, 0.1);
    border-radius: 8px;
    border-left: 3px solid #e67e22;
}

.contact-icon {
    color: #e67e22;
    font-size: 1.2rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    color: #333;
    font-family: 'rubiklight';
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
}

.contact-item p {
    margin: 0;
    color: #555;
    font-size: 0.95rem;
}

/* Social Section */
.social-section {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.social-section p {
    color: #444;
    font-family: 'rubiklight';
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(230, 126, 34, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e67e22;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(230, 126, 34, 0.3);
}

.social-icon:hover {
    background: #e67e22;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
    border-color: #e67e22;
}

/* Contact Form Card */
.form-title {
    font-family: 'rubiklight', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

/* Original Form Styles */
.original-contact-form {
    background: transparent;
}

.original-contact-form .form-group {
    margin-bottom: 1.5rem;
}

.original-contact-form label {
    font-family: 'rubiklight', sans-serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.original-contact-form .form-control,
.original-contact-form .form-control-md {
    background: rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: #333;
    padding: 12px 15px;
    font-family: 'rubiklight';
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.original-contact-form select.form-control-md {
    background: rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: #333;
    padding: 12px 15px;
    font-family: 'rubiklight';
    font-size: 1rem;
    height: auto;
}

.original-contact-form .form-control:focus,
.original-contact-form .form-control-md:focus {
    background: rgba(0, 0, 0, 0.08);
    border-color: #e67e22;
    box-shadow: 0 0 0 0.2rem rgba(230, 126, 34, 0.2);
    color: #333;
    outline: none;
}

.original-contact-form .form-control::placeholder,
.original-contact-form .form-control-md::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.original-contact-form select.form-control-md {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23e67e22' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 16px;
    padding-right: 40px;
    background-color: rgba(0, 0, 0, 0.05) !important;
}

/* CTA Button */
.cta4 {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    border: whitesmoke !important;
    border-radius: 8px;
    padding: 14px 30px;
    color: white;
    font-family: 'rubiklight';
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta4:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
    color: white;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

/* Form Validation */
.form-control.is-invalid,
.form-control-md.is-invalid {
    border-color: #dc3545;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid #dc3545;
    color: #721c24;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    font-family: 'rubiklight';
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info-card,
.contact-form-card {
    animation: fadeInUp 0.6s ease-out;
}

.contact-info-card {
    animation-delay: 0.1s;
}

.contact-form-card {
    animation-delay: 0.2s;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        padding: 40px 15px;
    }
    
    .card-body {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-info-card {
        margin-bottom: 30px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        padding: 60px 0 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 10px;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .cta4 {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Remove old styles */
.contact-content,
.contact-form {
    display: none;
}

/* Remove old background overlay */
body:after {
    display: none;
}