:root {
    --primary-blue: #003366;
    --secondary-orange: #f7941d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --text-dark: #333333;
    --text-muted: #6c757d;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navbar */
.sticky-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link {
    color: var(--primary-blue);
    font-weight: 500;
    padding: 10px 15px;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary-orange);
}

.btn-primary-custom {
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 5px;
    border: none;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background-color: var(--secondary-orange);
    color: var(--white);
}

.btn-outline-custom {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline-custom:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* Hero Section */
.hero-section {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-image-container img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
    height: 100%;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-orange);
    margin-bottom: 20px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--secondary-orange);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* EMI Calculator */
.calculator-container {
    background: var(--primary-blue);
    color: white;
    padding: 40px;
    border-radius: 20px;
}

.form-range::-webkit-slider-thumb {
    background: var(--secondary-orange);
}

/* Footer */
.footer {
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-orange);
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: var(--primary-blue);
    color: white;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--secondary-orange);
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-buttons a {
    display: block;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    color: white;
    margin-top: 15px;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.whatsapp-btn { background: #25d366; }
.call-btn { background: var(--primary-blue); }
.back-to-top { 
    background: var(--secondary-orange);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.floating-buttons a:hover {
    transform: scale(1.1);
    color: white;
}

/* Contact Page Specific */
.contact-form-wrapper {
    border-color: #eee !important;
}

.info-card {
    transition: 0.3s;
    border-color: #eee !important;
}

.info-card:hover {
    border-color: var(--primary-blue) !important;
    transform: translateX(10px);
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f7ff !important;
    color: var(--primary-blue) !important;
}

.form-control-lg {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
}

.form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}
