:root {
    --uprankly-teal: #36cae8;
    --uprankly-bg: #e0f7f6;
    --uprankly-dark-teal: #78ead3;
}


body {
    background: linear-gradient(180deg, var(--uprankly-bg) 0%, #ffffff 100%)!important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
}

/* Navbar Styling */
.navbar-brand { font-weight: 800; color: #333; }
.nav-link { color: #555; font-weight: 500; margin: 0 10px; }
.btn-contact { 
    background-color: var(--uprankly-teal); 
    color: white; 
    border-radius: 8px;
    padding: 8px 25px;
}

/* Main Card Styling */
.contact-main-card {
    border: none;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    background: white;
}

/* Left Sidebar (Teal) */
.contact-info-panel {
    background-color: var(--uprankly-teal);
    color: white;
    padding: 50px;
    position: relative;
}

/* Decorative circle in the teal panel */
.teal-circle {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* Right Form Styling */
.form-panel {
    padding: 50px;
}

.contact_us_form span{
    margin-bottom: 25px!important;
}

.uprankly-input {
    border: none;
    border-bottom: 2px solid #eee;
    border-radius: 0;
    padding: 10px 0;
    margin-bottom: 5px;
    background: transparent;
}

.uprankly-input:focus {
    box-shadow: none;
    border-bottom-color: var(--uprankly-teal);
}

.input-label {
    font-size: 0.8rem;
    color: #999;
    font-weight: 600;
}

.btn-send {
    background-color: var(--uprankly-teal);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

footer a { color: #888; text-decoration: none; font-size: 0.85rem; }