/* styles.css */
:root {
    --charcoal: #2F3E46;
    --bronze: #875D3A;
    --slate: #4A5C6A;
    --accent: #C45C2C;
    --light: #F8F9FA;
    --text: #2D3436;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: var(--charcoal);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.header h1 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.tagline {
    color: var(--bronze);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 3rem 0;
}

.content-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.text-content ul {
    list-style: none;
    margin: 1.5rem 0;
}

.text-content li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.text-content strong {
    color: var(--accent);
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.1);
}

/* Services */
.services {
    padding: 3rem 0;
}

.service-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-card h3 {
    color: var(--bronze);
    margin-bottom: 1rem;
}

/* Trust Signals */
.trust-signals {
    background: var(--charcoal);
    color: white;
    padding: 3rem 0;
}

.trust-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 1.5rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button.secondary {
    background: var(--slate);
}

/* Footer */
.footer {
    background: var(--slate);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer a {
    color: white;
    text-decoration: none;
}

.services-list {
    margin: 1rem 0;
    opacity: 0.9;
}

/* Floating CTA */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: var(--accent);
    color: white;
    padding: 1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (min-width: 768px) {
    .content-grid {
        flex-direction: row;
        align-items: center;
    }
    
    .text-content {
        flex: 1;
    }
    
    .image-content {
        flex: 1;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 15px;
    }
    
    .floating-cta {
        display: block;
    }
    
    .header h1 {
        font-size: 1.75rem;
    }
}