
/* Base Body Styling - Applying the Primary Background */
body {
    font-family: 'Poppins', sans-serif;
    background-color: white;
    color:#090a2d; /* Light Gray Body Text */
    margin: 0;
}

/* --- CONTACT SECTION STYLES --- */
.contact-section {
    padding: 60px 5%;
    background-color: white;/* Primary Background */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    
    background: #e9f0ec; /* Dark Charcoal/Form Background */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* --- INFO PANEL STYLES (Left Column) --- */
.contact-info-panel {
    background-color: #ececf3; /* Dark Charcoal */
    color: #090a2d; /* Light Gray Body Text */
    padding: 40px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.panel-title {
    color: #090a2d; /* Off-White Headings */
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.panel-subtitle {
    color: #090a2d;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #117d7d; /* Electric Cyan */
}

.info-details h4 {
    color: #090a2d;
    margin: 0 0 5px 0;
    font-weight: 600;
    font-size: 1rem;
}

.info-details a, 
.info-details p {
    color:#090a2d;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
}

.info-details a:hover {
    color: #035e03; 
}

.social-links-contact {
    margin-top: 20px;
}

.social-links-contact a {
    color: #090a2d;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: color 0.3s;
}

.social-links-contact a:hover {
    color: #329d9d; /* Electric Cyan on social hover */
}


/* --- FORM CONTAINER STYLES (Right Column) --- */
.contact-form-container {
    padding: 40px;
}

.form-title {
    color: #090a2d;
    font-size: 2rem;
    margin-bottom: 5px;
}

.form-subtitle {
    color: #090a2d;
    margin-bottom: 30px;
    line-height: 1.6;
}

.project-form {
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
}

.form-group {
    width: calc(50% - 10px);
    margin-bottom: 15px;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    color: #090a2d;
    display: block;
    font-weight: 700;
    margin-bottom: 7px;
    font-size: 0.95rem;
}

/* === FORM INPUT STYLES === */
.project-form input,
.project-form textarea,
.project-form select {
    width: 80%;
    padding: 12px;
    
    background-color: #2C3053; /* Darker Input Field Background */
    color: #FFFFFF; /* White Text inside inputs */
    
    border: 2px solid #444766; /* Subtle Border Color */
    border-radius: 8px;
    font-size: 1rem;
    
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15); 
    transition: border-color 0.3s, box-shadow 0.3s;
}

/* Placeholder text color */
.project-form input::placeholder,
.project-form textarea::placeholder {
    color: #E0E0E0;
    opacity: 0.6;
}

/* Focus State (Electric Cyan Glow) */
.project-form input:focus,
.project-form textarea:focus,
.project-form select:focus {
     color: #FFFFFF; /* Electric Cyan border */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15), 
                0 0 0 3px rgba(0, 255, 255, 0.2); 
    outline: none;
}

.project-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* --- Submit Button --- */
.submit-cta {
    background-color: #117d7d;; /* Button/Link Primary Blue */
    color: #FFFFFF;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.submit-cta:hover {
    background-color: #013030;; /* Hover color (Electric Cyan) */
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border:2px solid white;
}

/* --- NEW STYLES FOR CURRENCY INPUT GROUP --- */
.currency-input-group {
    display: flex;
    align-items: center;
    gap: 10px; /* Small gap between the currency selector and the amount input */
}

.currency-input-group .currency-select {
    /* Make the currency selector smaller */
    flex-shrink: 0;
    width: 35%; /* Adjust width to fit currency codes */
    
    /* Inherit the standard input styles */
    padding: 12px;
    background-color: #2C3053; 
    color: #FFFFFF;
    border: 2px solid #444766;
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15); 
}

.currency-input-group input[type="number"] {
    /* Ensure the number input takes the remaining space */
    flex-grow: 1; 
    
    /* Inherit the standard input styles */
    padding: 12px;
    background-color: #2C3053; 
    color: #FFFFFF;
    border: 2px solid #444766;
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15); 
}

/* Ensure focus styles work on both new elements */
.currency-input-group .currency-select:focus,
.currency-input-group input[type="number"]:focus {
    border-color: #00FFFF;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15), 
                0 0 0 3px rgba(0, 255, 255, 0.2); 
    outline: none;
}

/* --- Responsive Adjustments --- */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr; 
    }
    
    .contact-info-panel {
        order: 2;
    }

    .form-group {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .contact-info-panel,
    .contact-form-container {
        padding: 30px 20px;
    }
}


/* Container for the trail elements */
#trail-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    /* Crucial: Do not block clicks */
    z-index: 9999;
    cursor: none;
    /* Hide the default cursor in the area */
}

/* Style for the individual trail dots created by JS */
.trail-dot {
    position: absolute;
    width: 10px;
    /* Starting size */
    height: 10px;
    background-color: #56CCF2;
    /* Trail color */
    border-radius: 50%;
    opacity: 0.8;

    /* Animation definition */
    animation: fade-shrink 0.6s ease-out forwards;
}
/* The CSS animation that causes the trail to disappear */
@keyframes fade-shrink {
    0% {
        transform: scale(1);
        /* Start at full size */
        opacity: 0.8;
    }

    100% {
        transform: scale(0.1);
        /* Shrink almost completely */
        opacity: 0;
        /* Fade out */
    }
}