/* Modern, Clean Design System */
:root {
    --primary-blue: #2c4a6b;
    --primary-dark: #1a3a5c;
    --primary-light: #3a5a7b;
    --logo-blue: #1e3a5f; /* Extracted from your logo */
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.07);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.1);
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Typography - Modern & Bold */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

h1 { font-size: 4rem; margin-bottom: 1.5rem; }
h2 { font-size: 3rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.75rem; }

p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Modern Header - Simplified & Clean */
header {
    background: var(--white);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
}

.header-logo img {
    height: 60px;
    width: auto;
}

/* Header Phone - More Prominent */
.header-contact {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: 3rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    background: var(--gray-50);
    border-radius: 100px;
    transition: var(--transition);
}

.header-phone:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.phone-icon {
    width: 20px;
    height: 20px;
}

/* Simplified Navigation */
.header-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.header-nav a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.header-nav a:hover {
    color: var(--primary-blue);
}

.header-nav a.active {
    color: var(--primary-blue);
}

.header-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 2px;
}

/* Navigation CTA - Modern Pill Button */
.nav-cta {
    background: var(--primary-blue);
    color: var(--white) !important;
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Remove social from header - cleaner look */
.header-social {
    display: none;
}

/* Mobile Menu - Minimalist */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section - Full Height, Clean - KEEP ORIGINAL FOR HOME PAGE */
.hero {
    position: relative;
    background-image: url('https://images.squarespace-cdn.com/content/v1/675f6769e4994f5c8f7c18e3/03f335b5-970d-4321-9b2e-65dc58763790/iStock-2075822611.jpg?format=1500w');
    background-size: cover;
    background-position: center;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 3rem;
}

/* Hero Typography - Bold & Modern */
.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff !important;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.6);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    font-weight: 500;
    color: #ffffff !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7), 0 0 20px rgba(0,0,0,0.5);
}

/* NEW STYLE: Service Page Hero - Logo Blue Background */
.hero-dock {
    background: linear-gradient(rgba(30, 58, 95, 0.8), rgba(30, 58, 95, 0.8)), 
                url('images/dock-hero.jpg') center/cover;
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

/* Trust Badges - Simplified */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.95rem;
    font-weight: 500;
}

/* Service Buttons - Moved to separate section */
.service-buttons {
    display: none; /* Remove from hero for cleaner look */
}

/* Hero CTA - Single Focus */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.contact-button {
    background: var(--white);
    color: var(--primary-blue);
    padding: 1.25rem 3rem;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-block;
    box-shadow: var(--shadow-lg);
}

.contact-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.phone-button {
    background: transparent;
    color: var(--white);
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255,255,255,0.8);
}

.phone-button:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Section Spacing - Generous */
section {
    padding: 6rem 0;
}

/* Value Props Section - Clean Cards */
.value-props {
    padding: 6rem 0;
    background: var(--gray-50);
}

.value-props h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 4rem;
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.prop-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.prop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.prop-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.prop-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Featured Services - Minimal Design */
.featured-services {
    padding: 6rem 0;
    background: var(--white);
}

.featured-services h2 {
    font-size: 3rem;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-card li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-700);
    line-height: 1.6;
}

.service-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.learn-more {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Service Areas - Clean Layout */
.service-areas {
    padding: 6rem 0;
    background: var(--gray-50);
}

.service-areas h2 {
    font-size: 3rem;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-areas > div > p {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--gray-600);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.area-column ul {
    list-style: none;
    text-align: center;
}

.area-column li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    font-weight: 500;
    transition: var(--transition);
}

.area-column li:hover {
    color: var(--primary-blue);
}

/* Process Grid - Modern Cards */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.process-step h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.process-step p {
    color: var(--gray-600);
}

/* FAQ Section - Clean Design */
.faq-section {
    margin: 6rem 0;
}

.faq-section h2 {
    font-size: 3rem;
    color: var(--gray-900);
    margin-bottom: 3rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--gray-200);
    background: var(--white);
}

.faq-item h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.faq-item p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* Page Content */
.page-content {
    padding: 6rem 0;
    min-height: 60vh;
}

/* About Page */
.about-hero, .contact-hero, .portfolio-hero {
    text-align: center;
    margin-bottom: 6rem;
}

/* Hero Sections for About and Portfolio Pages - UPDATED WITH LOGO BLUE */
.page-hero {
    position: relative;
    background: linear-gradient(rgba(30, 58, 95, 0.8), rgba(30, 58, 95, 0.8)), 
                url('https://images.squarespace-cdn.com/content/v1/675f6769e4994f5c8f7c18e3/03f335b5-970d-4321-9b2e-65dc58763790/iStock-2075822611.jpg?format=1500w') center/cover;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 4rem;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: none; /* Removed since we're using the gradient in the main background */
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 3rem;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.8), 0 0 30px rgba(0,0,0,0.6);
}

.page-hero p {
    font-size: 1.25rem;
    color: #ffffff !important;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.about-hero h1, .contact-hero h1, .portfolio-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.about-hero p, .contact-hero p, .portfolio-hero p {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Team Section */
.team-section {
    margin-bottom: 6rem;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-member:hover {
    box-shadow: var(--shadow-md);
}

.member-info h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.member-info h3 {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-weight: 500;
}

.member-info p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

/* Contact Form - Modern Inputs */
.contact-form-section {
    margin-bottom: 6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.contact-form h2 {
    margin-bottom: 2rem;
    color: var(--gray-900);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    background: var(--gray-50);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--gray-800);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(44, 74, 107, 0.1);
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.submit-button {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-info {
    padding: 2rem 0;
}

.info-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.info-card h2, .info-card h3 {
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.contact-detail p {
    color: var(--gray-600);
    line-height: 1.7;
}

.contact-detail a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-detail a:hover {
    color: var(--primary-dark);
}

/* Portfolio */
.portfolio-grid {
    margin-bottom: 6rem;
}

.service-category {
    margin-bottom: 6rem;
}

.service-category h2 {
    font-size: 2.5rem;
    color: var(--gray-900);
    margin-bottom: 3rem;
    text-align: center;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.project-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 74, 107, 0.95), rgba(26, 58, 92, 0.95));
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    padding: 2rem;
    text-align: center;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.project-info p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* CTA Section - Gradient Background */
.cta-section {
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 24px;
    margin: 6rem auto;
    max-width: 1100px;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-buttons .contact-button {
    background: var(--white);
    color: var(--primary-blue);
}

.cta-buttons .contact-button:hover {
    background: var(--gray-50);
    transform: translateY(-3px);
}

.phone-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 1.25rem 2.5rem;
    border: 2px solid rgba(255,255,255,0.8);
    border-radius: 100px;
    transition: var(--transition);
    display: inline-block;
}

.phone-link:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.cta-features {
    margin-bottom: 2rem;
}

.cta-features p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer - Dark & Clean */
footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-social {
    margin-top: 1.5rem;
}

.footer-social a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    margin-right: 1rem;
}

.footer-social a:hover {
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Special Sections */
.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    margin-bottom: 2rem;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-card .rating {
    color: #ffc107;
    margin-bottom: 1rem;
    font-weight: 600;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    color: var(--gray-600);
    font-style: normal;
    font-weight: 500;
}

.urgency-note {
    background: linear-gradient(135deg, #fff3cd, #ffe8a1);
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.urgency-note strong {
    color: var(--gray-900);
}

/* Service Detail Sections */
.service-detail {
    background: var(--gray-50);
    padding: 3rem;
    border-radius: 16px;
    margin: 3rem 0;
    border: 1px solid var(--gray-200);
}

.service-detail h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.service-detail ul {
    list-style: none;
    margin-top: 1.5rem;
}

.service-detail li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-700);
    line-height: 1.7;
}

.service-detail li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Pricing Box */
.pricing-box {
    background: var(--white);
    border: 2px solid var(--primary-blue);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin: 3rem auto;
    max-width: 500px;
    box-shadow: var(--shadow-md);
}

.pricing-box h3 {
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.price-range {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin: 1rem 0;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    .header-inner {
        padding: 0 1.5rem;
    }

    .header-logo img {
        height: 50px;
    }

    .header-contact {
        display: none;
    }

    .header-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        border-top: 1px solid var(--gray-200);
        box-shadow: var(--shadow-lg);
    }

    .header-nav.active {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .trust-badges {
        gap: 1rem;
    }

    .badge {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }

    .props-grid,
    .services-grid,
    .areas-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 4rem 0;
    }

    .cta-section {
        padding: 3rem 2rem;
        margin: 4rem auto;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .contact-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Animations - Subtle */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card, .prop-card, .team-member, .project-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Performance */
img {
    loading: lazy;
    decoding: async;
}

/* Accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Skip to content */
.skip-to-content {
    position: absolute;
    left: -9999px;
    z-index: 999;
    padding: 1rem 2rem;
    background: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 0 0 8px 0;
}

.skip-to-content:focus {
    left: 0;
}

/* Print Styles */
@media print {
    header, footer, .mobile-menu, .hero, .cta-section {
        display: none;
    }
    
    .page-content {
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        color: black;
    }
}