:root {
    /* Colors - both naming conventions for compatibility */
    --primary: #c15125;
    --secondary: #8d7725;
    --accent: #1c789c;
    --text: #1f2937;
    --bg: #ffffff;
    --primary-color: #c15125;
    --secondary-color: #8d7725;
    --accent-color: #1c789c;
    --text-color: #1f2937;
    --background-color: #ffffff;
    --gradient-start: #c15125;
    --gradient-end: #d6ce29;
    --primary-rgb: 193, 81, 37;
    --secondary-rgb: 141, 119, 37;
    --accent-rgb: 28, 120, 156;
    
    /* Contrast-safe text colors */
    --card-text: #1f2937;
    --primary-contrast: #ffffff;
    --secondary-contrast: #ffffff;
    --gradient-text: #ffffff;
    
    /* Grays */
    --white: #ffffff;
    --gray-100: #f7fafc;
    --gray-200: #edf2f7;
    --gray-300: #e2e8f0;
    --gray-600: #718096;
    --gray-800: #2d3748;
    --black: #1a1a1a;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Radius */
    --border-radius: 0;
    --border-radius-lg: calc(0 * 2);
    --border-radius-sm: calc(0 / 2);
    --radius: 0;
    --radius-lg: calc(0 * 2);
}

/* ========================================
   {{brand_name}} - Professional Website Template
   Generated by EMD Website Generator
   ======================================== */

/* CSS Variables */
:root {
    --primary: {{primary_color}};
    --secondary: {{secondary_color}};
    --accent: {{accent_color}};
    --text: {{text_color}};
    --bg: {{bg_color}};
    --white: #ffffff;
    --gray-100: #f7fafc;
    --gray-200: #edf2f7;
    --gray-300: #e2e8f0;
    --gray-400: #cbd5e0;
    --gray-500: #a0aec0;
    --gray-600: #718096;
    --gray-700: #4a5568;
    --gray-800: #2d3748;
    --gray-900: #1a202c;
    --shadow: 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);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
}

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

a:hover {
    color: var(--secondary);
}

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

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--gray-300);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.btn-light {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-light:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

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

.nav-menu a {
    color: var(--gray-700);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--gray-700);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 700px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-content .tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-content .btn {
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--gray-100);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.25rem;
}

.feature-content h4 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Services Section */
.services-preview,
.services-page {
    padding: 100px 0;
}

.services-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.services-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid var(--gray-200);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.75rem;
}

.service-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-600);
}

/* About Section */
.about-preview {
    padding: 100px 0;
    background: var(--gray-100);
}

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

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* About Page */
.about-section {
    padding: 100px 0;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-image-large img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-text h2 {
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.about-description {
    color: var(--gray-600);
    line-height: 1.8;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background: var(--gray-100);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mv-card {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.mv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
}

.mv-card h3 {
    color: var(--text);
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--gray-600);
}

/* Why Us */
.why-us {
    padding: 100px 0;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--gray-100);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    color: var(--text);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--gray-600);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 0.25rem;
    color: var(--text);
}

.contact-text p {
    color: var(--gray-600);
}

.contact-text a {
    color: var(--gray-600);
}

.contact-text a:hover {
    color: var(--primary);
}

.social-links h4 {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-200);
    color: var(--gray-700);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h2 {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.testimonial-quote {
    position: relative;
}

.testimonial-quote i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-quote p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gray-700);
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-top: 1px solid var(--gray-200);
}

.newsletter-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-text h2 {
    font-size: 2.25rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.newsletter-text p {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.newsletter-form {
    margin-top: 2rem;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    font-size: 1rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    background: var(--white);
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.newsletter-input-group .btn {
    flex-shrink: 0;
    padding: 14px 32px;
    white-space: nowrap;
}

.newsletter-input-group .btn i {
    margin-left: 8px;
    transition: var(--transition);
}

.newsletter-input-group .btn:hover i {
    transform: translateX(4px);
}

.newsletter-privacy {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

.newsletter-privacy a {
    color: var(--primary);
    text-decoration: underline;
}

.newsletter-privacy a:hover {
    color: var(--secondary);
}

/* Dark theme newsletter variant */
.newsletter.dark {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    border-top: 1px solid var(--gray-700);
}

.newsletter.dark .newsletter-text h2 {
    color: var(--white);
}

.newsletter.dark .newsletter-text p {
    color: var(--gray-300);
}

.newsletter.dark .newsletter-input {
    background: var(--gray-800);
    border-color: var(--gray-600);
    color: var(--white);
}

.newsletter.dark .newsletter-input::placeholder {
    color: var(--gray-400);
}

.newsletter.dark .newsletter-privacy {
    color: var(--gray-400);
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text .last-updated {
    color: var(--gray-500);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-text h2 {
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.legal-text ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-text ul li {
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    list-style: disc;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 80px 0 30px;
}

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

.footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--gray-700);
    border-radius: var(--radius);
    background: var(--gray-800);
    color: var(--white);
    font-size: 0.875rem;
}

.footer-newsletter-form input::placeholder {
    color: var(--gray-400);
}

.footer-newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.footer-newsletter-form .btn-sm {
    padding: 10px 16px;
    font-size: 0.875rem;
}

.footer-contact-info {
    margin-top: 1rem;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--gray-400);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-400);
}

.footer-contact i {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-500);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-grid,
    .about-main,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        display: none;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 1rem;
        border-bottom: 1px solid var(--gray-200);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .tagline {
        font-size: 1.25rem;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .services-grid,
    .features-grid,
    .process-grid,
    .mv-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 12px 24px;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }
}



/* Dynamic Design Overrides */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

/* Base Styles */
* { box-sizing: border-box; }
body { 
    font-family: var(--font-body); 
    color: var(--card-text, #1a1a1a); 
    background: var(--background-color, #ffffff); 
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6 { 
    font-family: var(--font-heading); 
    color: var(--card-text, #1a1a1a); 
    line-height: 1.3;
    margin-bottom: 1rem;
}
p { 
    color: #4b5563; 
    margin-bottom: 1rem;
}
a { 
    color: var(--primary); 
    text-decoration: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--card-text, #1a1a1a);
    text-align: center;
    margin-bottom: 1rem;
}
.section-subtitle {
    color: #6b7280;
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}
.text-center { text-align: center; }
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}
.btn-primary {
    background: var(--primary);
    color: var(--primary-contrast, white);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}
.btn-secondary {
    background: var(--secondary);
    color: var(--secondary-contrast, white);
}
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--primary-contrast, white);
}

/* Navigation */
.navbar {
    background: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navbar .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}
.navbar .nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}
.navbar .nav-menu a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
.navbar .nav-menu a:hover {
    color: var(--primary);
}
.navbar .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #374151;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer h3, .footer h4 {
    color: white;
    margin-bottom: 1rem;
}
.footer p {
    color: rgba(255,255,255,0.7);
}
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer ul li {
    margin-bottom: 0.5rem;
}
.footer ul a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}
.footer ul a:hover {
    color: white;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* Page header (for inner pages) */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}
.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

/* Legal content pages */
.legal-content {
    padding: 4rem 0;
}
.legal-text {
    max-width: 800px;
    margin: 0 auto;
}
.legal-text h2 {
    color: var(--card-text, #1a1a1a);
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.legal-text p {
    color: #4b5563;
    line-height: 1.8;
}
.legal-text ul {
    color: #4b5563;
    padding-left: 1.5rem;
}
.last-updated {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Contact page */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--card-text, #1a1a1a);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #e5e7eb;
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .navbar .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .navbar .nav-menu.active {
        display: flex;
    }
    .navbar .menu-toggle {
        display: flex;
    }
    .about-preview .about-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Header Styles: minimal-hamburger */
.navbar .nav-menu { display: none; }
.navbar .menu-toggle { display: flex !important; }
.navbar { background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

/* Hero Styles: angled-split */
/* Hero text visibility */
.hero .hero-content h1 { color: white; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.hero .hero-content p, .hero .hero-content .tagline, .hero .hero-content .subtitle { color: rgba(255,255,255,0.9); }
.hero .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); z-index: 1; }
.hero .hero-content { position: relative; z-index: 10; }
.hero { position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; right: -20%; top: 0; bottom: 0; width: 60%; background: #c15125; transform: skewX(-10deg); }
.hero .hero-overlay { display: none; }
.hero .hero-content { text-align: left; max-width: 50%; }
.hero .hero-content h1, .hero .hero-content p { color: #1f2937; text-shadow: none; }
.hero { background-color: #ffffff; background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='#c15125' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero .hero-overlay { display: none; }
.hero .hero-content h1 { color: #1f2937; text-shadow: none; }
.hero .hero-content p { color: #1f2937; }
.hero .hero-bg { display: none; }
.hero .btn-primary { background: transparent; border: 2px solid #c15125; color: #c15125; }
.hero .btn-primary:hover { background: #c15125; color: white; }

/* Section Styles */
.features .features-grid { counter-reset: feature; display: flex; flex-direction: column; gap: 1.5rem; }
.features .feature-card::before { counter-increment: feature; content: counter(feature, decimal-leading-zero); font-size: 3rem; font-weight: 800; color: #c1512520; position: absolute; left: -2rem; top: 0; }
.services-preview .services-grid, .services-page .services-grid-large { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.services-preview .service-card { background: #ffffff; padding: 2rem; border-radius: 0; transition: transform 0.3s, box-shadow 0.3s; }
.services-preview .service-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.cta { margin: -4rem 2rem 2rem; position: relative; z-index: 20; }
.cta .container { background: #c15125; border-radius: 0; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.footer { background: linear-gradient(135deg, #c15125, #8d7725); color: white; }
.footer a { color: rgba(255,255,255,0.9); }

/* Animation & Effects */
@keyframes zoomIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.hero, section { animation: zoomIn 0.5s ease-out; }
.feature-card, .service-card, .btn, a { transition: all 0.3s ease; }
/* Service Icons */
.service-icon { 
    width: 70px; 
    height: 70px; 
    background: linear-gradient(135deg, #c1512515, #1c789c15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: #c15125;
}
.service-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}
.service-card h3 { 
    color: var(--card-text, #1a1a1a); 
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}
.service-card p { 
    color: #4b5563; 
    font-size: 0.95rem;
    line-height: 1.6;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.services-preview {
    padding: 80px 0;
    background: var(--gray-100);
}
.services-preview .section-title {
    color: var(--card-text, #1a1a1a);
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
}
.services-preview .section-subtitle {
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

/* Feature Icons */
.feature-icon {
    width: 50px;
    height: 50px;
    background: #c15125;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-contrast, white);
    flex-shrink: 0;
}
.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.feature-content h4 {
    color: var(--card-text, #1a1a1a);
    margin-bottom: 0.5rem;
}
.feature-content p {
    color: #4b5563;
    font-size: 0.9rem;
}
.features {
    padding: 80px 0;
    background: var(--gray-100);
}
.features .section-title {
    color: var(--card-text, #1a1a1a);
    text-align: center;
    margin-bottom: 3rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

/* About preview */
.about-preview {
    padding: 80px 0;
    background: white;
}
.about-preview h2 {
    color: var(--card-text, #1a1a1a);
    font-size: 2rem;
    margin-bottom: 1rem;
}
.about-preview p {
    color: #4b5563;
    line-height: 1.8;
}
.about-preview .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-preview .about-image img {
    width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Testimonials styling */
.testimonials-section {
    padding: 80px 0;
    background: var(--gray-100);
}
.testimonials-section .section-title {
    color: var(--card-text, #1a1a1a);
    text-align: center;
    margin-bottom: 3rem;
}
.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
}
.testimonial-quote i {
    font-size: 2.5rem;
    color: #c15125;
    opacity: 0.3;
    margin-bottom: 1rem;
    display: block;
}
.testimonial-quote p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #374151;
    font-style: italic;
    margin-bottom: 1.5rem;
}
.author-info strong {
    display: block;
    color: #1a1a1a;
    font-size: 1.1rem;
}
.author-info span {
    color: #c15125;
    font-size: 0.9rem;
}

/* Stats section - use gradient contrast */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #c15125, #8d7725);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gradient-text, white);
}
.stat-label {
    color: var(--gradient-text, white);
    opacity: 0.85;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #c15125, #8d7725);
    text-align: center;
}
.cta h2 {
    color: var(--gradient-text, white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}
.cta p {
    color: var(--gradient-text, white);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.cta .btn-secondary {
    background: white;
    color: #c15125;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}
.cta .btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Newsletter section */
.newsletter-section {
    padding: 80px 0;
    background: #ffffff;
}
.newsletter-section h2 {
    color: #1f2937;
}
.newsletter-section p {
    color: #1f2937;
    opacity: 0.8;
}


