/* ===== Core Styles ===== */
:root {
    --primary: #2a5c8d;
    --secondary: #e67e22;
    --dark: #2c3e50;
    --light: #f8f9fa;
    --highlight: #f1c40f;
    --text: #333;
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ===== Trust Badges ===== */
.trust-badges {
    background: var(--dark);
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero h1 strong {
    color: var(--highlight);
}

.subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===== Navigation ===== */
.sticky-nav {
    position: sticky;
    top: 0;
    background: white;
    box-shadow: var(--shadow);
    z-index: 100;
}

.sticky-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 1rem 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.sticky-nav a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s;
}

.sticky-nav a:hover {
    background: var(--primary);
    color: white;
}

/* ===== Sections ===== */
.section {
    padding: 4rem 0;
}

.alt-bg {
    background: #fff;
}

.cta-section {
    text-align: center;
    background: var(--primary);
    color: white;
}

.cta-section h2 {
    color: white;
}

/* ===== Images ===== */
.feature-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 5px solid white;
    margin: 1.5rem 0;
}

/* ===== Service Grid ===== */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-grid article {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.service-grid article:hover {
    transform: translateY(-5px);
}

/* ===== Buttons ===== */
.cta-button {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: bold;
    margin: 1rem 0;
    transition: all 0.3s;
    text-align: center;
}

.cta-button:hover {
    background: #d35400;
    transform: scale(1.05);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* ===== Typography ===== */
h1, h2, h3 {
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary);
}

h3 {
    font-size: 1.5rem;
    color: var(--dark);
}

/* ===== Reviews ===== */
blockquote {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    max-width: 600px;
    margin: 2rem auto;
}

blockquote::before {
    content: '"';
    font-size: 4rem;
    position: absolute;
    top: -10px;
    left: 10px;
    color: rgba(0,0,0,0.1);
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: bold;
    color: var(--primary);
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    .hero { padding: 2rem 0; }
    .section { padding: 3rem 0; }
    .sticky-nav ul { gap: 0.5rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    .trust-badges { flex-direction: column; gap: 5px; }
    .cta-button { display: block; width: 100%; }
}