/* Dry Pond Notary - Navy & Gold Theme */
:root { --navy: #1a2744; --gold: #c9a227; --white: #ffffff; --gray: #f8fafc; }
body { font-family: 'Inter', sans-serif; margin: 0; color: #333; line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header { background: var(--white); box-shadow: 0 2px 5px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.navbar { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.logo-text { font-size: 1.5rem; font-weight: 700; color: var(--navy); text-decoration: none; }
.nav-menu { display: flex; gap: 20px; list-style: none; }
.nav-link { text-decoration: none; color: #333; font-weight: 500; }
.nav-phone { background: var(--navy); color: var(--white) !important; padding: 8px 15px; border-radius: 5px; }

/* Hero */
.hero { background: var(--navy); color: var(--white); padding: 5rem 0; text-align: center; }
.hero-title { font-size: 3rem; margin-bottom: 1rem; }
.btn-primary { background: var(--gold); color: var(--navy); padding: 1rem 2rem; text-decoration: none; font-weight: 700; border-radius: 5px; display: inline-block; }

/* Services */
.services { padding: 4rem 0; background: var(--gray); }
.section-title { text-align: center; color: var(--navy); margin-bottom: 2rem; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.service-card { background: var(--white); padding: 2rem; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.service-card h3 { color: var(--gold); margin-top: 0; }

/* Footer */
.footer { background: #0f172a; color: #cbd5e1; text-align: center; padding: 2rem 0; margin-top: auto; }

/* Mobile */
.mobile-sticky-bar { display: none; position: fixed; bottom: 0; width: 100%; background: var(--gold); padding: 15px; text-align: center; }
.mobile-call-btn { color: var(--navy); font-weight: 800; text-decoration: none; font-size: 1.2rem; }
@media (max-width: 768px) {
    .nav-menu { display: none; } /* Simplified mobile menu for now */
    .mobile-sticky-bar { display: block; }
    .hero-title { font-size: 2rem; }
}

/* Contact Form Styles */
.contact-section { padding: 4rem 0; background: var(--white); }
.contact-form { max-width: 600px; margin: 0 auto; background: var(--gray); padding: 2rem; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--navy); }
.form-group input, .form-group textarea { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: 5px; font-family: inherit; box-sizing: border-box; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold); outline: none; }