:root {
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --text-black: #0A0A0A;
    --text-gray: #475569;
    --text-light-gray: #94A3B8;
    --accent-blue: #3B82F6;
    --accent-blue-hover: #2563EB;
    --border-color: #E2E8F0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
    color: var(--text-black);
    background-color: var(--bg-white);
}

body {
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Typography Utilities */
.highlight {
    color: var(--accent-blue);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-blue);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--accent-blue-hover);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary:disabled {
    background-color: var(--text-light-gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: var(--border-radius-lg);
}

.btn-block {
    width: 100%;
}

/* Header */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-black);
    letter-spacing: -0.5px;
}

.blue-dot {
    color: var(--accent-blue);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-black);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-black);
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.hero-subtext {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-black);
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image {
    width: 100%;
    height: auto;
    transform: scale(1.05);
    transition: transform 10s ease-out;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(10,10,10,0.2), transparent);
}

/* Section Shared */
.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
}

/* Quote Section */
.quote-section {
    padding: 5rem 0;
}

.bento-calculator {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.bento-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.bento-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background-color: var(--text-black);
    color: var(--bg-white);
    font-weight: 700;
    border-radius: 50%;
}

.step-header h3 {
    margin: 0;
    font-size: 1.125rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-black);
}

input[type="text"], input[type="tel"], input[type="date"], select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
    background-color: var(--bg-white);
}

input:focus, select:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    margin: 0;
}

.checkbox-label input {
    accent-color: var(--accent-blue);
    width: 1rem;
    height: 1rem;
}

.estimate-card {
    background-color: var(--text-black);
    color: var(--bg-white);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem 2rem;
    position: sticky;
    top: 6rem;
    box-shadow: var(--shadow-xl);
}

.estimate-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
}

.estimate-label {
    color: var(--text-light-gray);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.estimate-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.estimate-details {
    list-style: none;
    margin-bottom: 2rem;
}

.estimate-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.estimate-disclaimer {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: var(--text-light-gray);
    margin-bottom: 0;
    text-align: center;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(59, 130, 246, 0.1);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Why Section */
.why-section {
    padding: 6rem 0;
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.trust-icon {
    color: var(--accent-blue);
}

.trust-quote {
    background-color: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--accent-blue);
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.trust-quote blockquote {
    font-style: italic;
    font-weight: 600;
    color: var(--text-black);
    font-size: 1.125rem;
}

.why-image-wrapper {
    position: relative;
}

.why-image {
    border-radius: var(--border-radius-xl);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-xl);
}

.decorator-box {
    position: absolute;
    top: 2rem;
    right: -2rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-blue);
    border-radius: var(--border-radius-xl);
    z-index: 1;
}

/* Map Section */
.map-section {
    padding: 6rem 0;
    background-color: var(--text-black);
    color: var(--bg-white);
}

.map-wrapper {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
}

.map-image {
    width: 100%;
    height: auto;
    opacity: 0.8;
}

.map-overlay {
    position: absolute;
    top: 2rem;
    left: 2rem;
    max-width: 400px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255,255,255,0.1);
}

.map-overlay h2 {
    color: var(--bg-white);
    margin-bottom: 0.5rem;
}

.map-overlay p {
    color: var(--text-light-gray);
    margin: 0;
}

.pulse-dot-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pulse-dot {
    width: 16px;
    height: 16px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 48px;
    height: 48px;
    background-color: var(--accent-blue);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}

@keyframes pulse {
    0% { transform: scale(0.5); opacity: 0.8; }
    100% { transform: scale(2); opacity: 0; }
}

/* Footer */
.footer {
    background-color: var(--bg-light);
    padding: 4rem 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-contact p {
    margin-bottom: 0.25rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-links a {
    color: var(--text-black);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent-blue);
}

.footer-right {
    display: flex;
    justify-content: flex-end;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--text-black);
    color: var(--bg-white);
    border-radius: 50%;
}

.social-icon:hover {
    background-color: var(--accent-blue);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.footer-bottom {
    background-color: var(--text-black);
    color: var(--text-light-gray);
    padding: 1.5rem 0;
    font-size: 0.875rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: inherit;
}

.tracking-note {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .bento-calculator { grid-template-columns: 1fr; }
    .estimate-card { position: static; margin-top: 2rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-container { grid-template-columns: 1fr; }
    .decorator-box { display: none; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-toggle { display: block; }
    .navbar .btn { display: none; }
    
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { align-items: center; }
    .hero { padding-top: 6rem; }
    
    .bento-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    
    .trust-grid { grid-template-columns: 1fr; }
    
    .map-overlay { position: static; max-width: 100%; border-radius: 0; }
    
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .footer-links { align-items: center; }
    .footer-right { justify-content: center; }
    .footer-bottom .container { flex-direction: column; gap: 1rem; text-align: center; }
}
