@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    --primary-hsl: 232, 47%, 21%; /* Dark Slate Blue */
    --accent-hsl: 32, 98%, 53%; /* Vibrant Orange/Gold */
    --surface-hsl: 220, 20%, 97%; /* Light grey/blue background */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    
    --bg-gradient: linear-gradient(135deg, hsl(220, 20%, 97%) 0%, hsl(0, 0%, 100%) 100%);
    --primary-gradient: linear-gradient(135deg, hsl(232, 47%, 21%) 0%, hsl(240, 50%, 30%) 100%);
    
    --text-main: #1e293b;
    --text-muted: #64748b;
    
    --shadow-soft: 0 10px 40px -10px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 40px -10px rgba(0,0,0,0.15);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: hsl(var(--primary-hsl));
}

/* Glassmorphism Header */
.main-header-area {
    background: var(--glass-bg) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: var(--transition-smooth);
}

.main-menu nav ul li a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-main) !important;
    transition: var(--transition-smooth);
    position: relative;
}

.main-menu nav ul li a:hover {
    color: hsl(var(--accent-hsl)) !important;
}

.main-menu nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: hsl(var(--accent-hsl));
    transition: var(--transition-smooth);
}

.main-menu nav ul li a:hover::after {
    width: 100%;
}

/* Sections & Typography */
.section_title h3 {
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section_title h5 {
    color: var(--text-muted) !important;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Cards & Products */
.single_product, .card, .Estimate_info, .single_location {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    padding: 2rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.single_product:hover, .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* Buttons */
.boxed-btn3, .boxed-btn3-line, button[type="submit"] {
    background: var(--primary-gradient);
    color: #ffffff !important;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 20px rgba(33, 29, 113, 0.2);
    cursor: pointer;
    display: inline-block;
}

.boxed-btn3:hover, .boxed-btn3-line:hover, button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(33, 29, 113, 0.3);
    background: linear-gradient(135deg, hsl(240, 50%, 30%) 0%, hsl(232, 47%, 21%) 100%);
}

/* Image Animations */
img {
    transition: var(--transition-smooth);
}

.single_product:hover img {
    transform: scale(1.05);
}

/* Footer Overhaul */
.footer {
    background: hsl(var(--primary-hsl)) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding-top: 3rem;
}

.Estimate_area {
    background: var(--primary-gradient) !important;
    border-radius: 24px;
    margin: 2rem auto;
    max-width: 1200px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    overflow: hidden;
}

.Estimate_info h3 {
    color: #fff !important;
}

.Estimate_info p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.input_field input, .input_field textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    padding: 12px;
    width: 100%;
    transition: var(--transition-smooth);
}

.input_field input:focus, .input_field textarea:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: hsl(var(--accent-hsl));
    outline: none;
    box-shadow: 0 0 0 4px rgba(253, 155, 33, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--surface-hsl);
}
::-webkit-scrollbar-thumb {
    background: hsl(var(--primary-hsl));
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: hsl(240, 50%, 30%);
}
