/* ============================= */
/* Home Contact Page - Fully Isolated Styles */
.home-contact-page {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #111111;
    line-height: 1.4;
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: auto;
    margin-top: 20px;
}

.home-contact-page * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Container */
.home-contact-container {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 10px;
    margin-top: 20px;
}

/* ============================= */
/* Info Panel */
.home-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}


.home-contact-item:hover {
    transform: translateX(5px);
}

/* Container for the emoji/icon */
.home-contact-icon {
    background-color: #FFC000;
    width: 40px; 
    height: 40px; 
    border-radius: 50%;
    flex-shrink: 0;

    /* This is the secret for vertical centering */
    display: flex !important;
    align-items: center !important;    /* Vertical */
    justify-content: center !important; /* Horizontal */
    
    /* Reset text-based spacing that pushes things down */
    line-height: 0 !important;
    padding: 0;
    overflow: hidden;
}

/* The actual emoji or FontAwesome <i> tag */
.home-contact-icon i {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
    font-style: normal;
    
    /* Emojis are often bottom-heavy due to font baselines.
       If it still looks 1px too high, change 0px to 1px or 2px. */
    transform: translateY(0px); 
    
    /* Ensure the icon font doesn't have a huge line-height */
    line-height: 1 !important;
    font-size: 1.2rem;
}

.home-contact-icon:hover {
    transform: scale(1.1);
}

.home-contact-content {
    display: flex;
    flex-direction: column;
}

.home-contact-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #555555;
    margin-bottom: 3px;
    font-weight: 500;
}

.home-contact-link {
    color: #111111;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.home-contact-link:hover {
    color: #FFC000;
}

/* Social Links */
.home-contact-social {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

.home-contact-social-link {
    background-color: #111111;
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px; /* Made the social icons slightly bigger */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.home-contact-social-link:hover {
    background-color: #FFC000;
    color: #111111;
    transform: translateY(-2px);
}

/* ============================= */
/* Contact Form */
.home-contact-form-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 192, 0, 0.2);
    position: relative;
    transition: box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.home-contact-form-card:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.2);
}

.home-contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.home-contact-form-group {
    position: relative;
}

.home-contact-form-input,
.home-contact-form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #eee;
    border-radius: 6px;
    background: #fafafa;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
}

.home-contact-form-textarea {
    min-height: 100px;
    resize: none;
}

.home-contact-form-label {
    position: absolute;
    top: 8px;
    left: 12px;
    font-size: 0.85rem;
    color: #999;
    pointer-events: none;
    transition: all 0.2s ease;
    background: #fff;
    padding: 0 4px;
    font-family: 'Inter', sans-serif;
}

.home-contact-form-input:focus,
.home-contact-form-textarea:focus {
    outline: none;
    border-color: #FFC000;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(255, 192, 0, 0.1);
}

.home-contact-form-input:focus ~ .home-contact-form-label,
.home-contact-form-textarea:focus ~ .home-contact-form-label,
.home-contact-form-input:not(:placeholder-shown) ~ .home-contact-form-label,
.home-contact-form-textarea:not(:placeholder-shown) ~ .home-contact-form-label {
    top: -8px;
    font-size: 0.75rem;
    color: #111111;
}

/* Terms & Checkbox */
.home-contact-form-terms {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.home-contact-form-terms input {
    width: 14px;
    height: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.home-contact-form-terms label {
    cursor: pointer;
    flex: 1;
}

.home-contact-form-terms a {
    color: #FFC000;
    text-decoration: none;
}

/* Submit Button */
.home-contact-form-submit {
    width: 100%;
    background: #FFC000;
    color: #111111;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.home-contact-form-submit:hover:not(:disabled) {
    background: #111111;
    color: #ffffff;
    transform: scale(1.05);
}

.home-contact-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success/Error Message */
.home-contact-message {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
    display: none;
    opacity: 0;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    min-width: 180px;
    text-align: center;
    z-index: 10;
}

.home-contact-message.success {
    background: #28a745;
}

.home-contact-message.error {
    background: #dc3545;
}

/* ============================= */
/* MAIN HEADING - .home-contact-title */
.home-contact-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 3px;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-transform: uppercase;
    line-height: 1.4;
    background: linear-gradient(90deg, rgb(255, 192, 0), rgb(255, 135, 0));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(255, 192, 0, 0.8), 0 0 30px rgba(255, 192, 0, 0.5);
    -webkit-text-stroke: 1px #000;
    margin-bottom: 20px;
    transition: text-shadow 0.3s ease, box-shadow 0.3s ease;
}

.home-contact-title:hover {
    text-shadow: 0 0 25px rgba(255, 192, 0, 1), 0 0 50px rgba(255, 192, 0, 0.7), 0 0 80px rgba(255, 135, 0, 0.5);
}

.home-contact-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 3px;
    margin: 12px auto 0;
    border-radius: 2px;
    background: rgb(255, 192, 0);
    box-shadow: 0 0 6px rgba(255, 192, 0, 0.6);
    transition: width 0.3s ease, box-shadow 0.3s ease;
}

.home-contact-title:hover::after {
    width: 130px;
    box-shadow: 0 0 12px rgba(255, 192, 0, 1);
}

/* SUB HEADING - .home-contact-subtitle */
.home-contact-subtitle {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.5px;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    line-height: 1.4;
    color: #b36b00;
    text-shadow: 0 0 4px #ffb347;
    margin-top: 6px;
    opacity: 0.95;
    animation: pulse-glow 3s infinite alternate;
}

/* Pulse Glow Animation */
@keyframes pulse-glow {
    0% { text-shadow: 0 0 4px #ffb347; }
    50% { text-shadow: 0 0 8px #ffb347; }
    100% { text-shadow: 0 0 4px #ffb347; }
}

/* ============================= */
/* Responsive */
@media (max-width: 992px) {
    .home-contact-container { grid-template-columns: 1fr; gap: 15px; }
    .home-contact-form-card { padding: 15px; }
    .home-contact-title { font-size: 28px; }
    .home-contact-item { gap: 6px; }
}

@media (max-width: 768px) {
    .home-contact-page { padding: 10px 0; }
    .home-contact-container { gap: 20px; padding: 0 15px; }
    .home-contact-title { font-size: 28px; letter-spacing: 2px; }
    .home-contact-title::after { width: 80px; }
    .home-contact-subtitle { font-size: 16px; letter-spacing: 0.4px; }
    .home-contact-form-card { padding: 20px; }
    .home-contact-form-submit { font-size: 0.9rem; padding: 10px; }
}

@media (max-width: 480px) {
    .home-contact-title { font-size: 22px; letter-spacing: 1.5px; }
    .home-contact-title::after { width: 60px; }
    .home-contact-subtitle { font-size: 14px; letter-spacing: 0.3px; }
}







/* ============================= */
/* ICON CENTERING (THE CIRCLES) */
.home-contact-icon-circle {
    background-color: #FFC000;
    width: 42px; /* Slightly larger for better presence */
    height: 42px;
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;    /* Vertical Center */
    justify-content: center !important; /* Horizontal Center */
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 192, 0, 0.2);
    transition: all 0.3s ease;
}

.home-contact-icon-circle i {
    color: #111111;
    font-size: 1.1rem;
    line-height: 1 !important; /* Forces icon to stay centered */
    margin: 0 !important;
}

/* ============================= */
/* BEAUTIFUL CONTENT STYLING */
.home-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    transition: transform 0.2s ease;
}

.home-contact-content {
    display: flex;
    flex-direction: column;
}

/* Small, elegant label above the value */
.home-contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #888888;
    letter-spacing: 1.2px;
    margin-bottom: 2px;
    font-weight: 500;
}

/* Bold, Premium Name and Links */
.home-contact-name, 
.home-contact-link {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111111;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Address and general text */
.home-contact-text {
    font-size: 0.95rem;
    color: #333333;
    line-height: 1.4;
    font-weight: 500;
}

/* ============================= */
/* HOVER EFFECTS */
.home-contact-item:hover .home-contact-icon-circle {
    transform: scale(1.1);
    background-color: #111111;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.home-contact-item:hover .home-contact-icon-circle i {
    color: #FFC000;
}

.home-contact-link:hover {
    color: #FFC000;
}

/* ============================= */
/* SEND MESSAGE BUTTON UPGRADE */
.home-contact-form-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.home-contact-form-submit i {
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.home-contact-form-submit:hover i {
    transform: translateX(5px) translateY(-3px); /* Subtle "launch" animation */
}