/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
}

p {
    margin-bottom: 16px;
}

h2, h3, h4 {
    line-height: 1.3;
}

ul, ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

li {
    margin-bottom: 6px;
}

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

/* Header & Navigation */
.header {
    background: #ffffff;
    color: #1a472a;
    padding: 10px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    border-bottom: 3px solid #1a472a;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 22px;
    color: #fff;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    color: #1a472a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff6b35;
}

.phone-btn {
    background: #ff6b35;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.phone-btn:hover {
    background: #e55a2b;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #1a472a;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a472a 0%, #2d5f3f 100%);
    color: #fff;
    padding: 60px 0;
}

.hero h2 {
    color: #fff !important;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffd700;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkmark {
    color: #ffd700;
    font-size: 20px;
}

.cta-btn-large {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
    transition: background 0.3s;
}

.cta-btn-large:hover {
    background: #e55a2b;
}

/* Form Container */
.form-container {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.form-container h3 {
    color: #1a472a;
    margin-bottom: 10px;
    font-size: 26px;
}

.form-subtitle {
    color: #666;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a472a;
}

.submit-btn {
    width: 100%;
    background: #ff6b35;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #e55a2b;
}

/* Sections */
section {
    padding: 60px 0;
}

.alt-bg {
    background: #f8f9fa;
}

section h2 {
    font-size: 36px;
    color: #1a472a;
    margin-bottom: 20px;
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #555;
}

/* Grid Layouts */
.benefits-grid,
.services-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card,
.service-card,
.value-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.benefit-card:hover,
.service-card:hover {
    transform: translateY(-5px);
}

.benefit-icon,
.service-card-icon {
    font-size: 42px;
    margin-bottom: 12px;
    display: block;
}

.benefit-card h3,
.service-card h3,
.value-card h3 {
    color: #1a472a;
    margin-bottom: 12px;
    font-size: 22px;
    line-height: 1.3;
}

.service-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-card-features {
    list-style: none;
    margin: 0 0 20px 0;
    padding: 0;
    border-top: 1px solid #eee;
    padding-top: 16px;
}

.service-card-features li {
    padding: 5px 0 5px 20px;
    position: relative;
    color: #444;
    font-size: 15px;
}

.service-card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a472a;
    font-weight: bold;
}

.service-card .cta-btn {
    display: block;
    text-align: center;
    margin: 0;
}

.service-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    display: inline-block;
}

.service-link:hover {
    text-decoration: underline;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: start;
}

.step-number {
    background: #1a472a;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.step h3 {
    color: #1a472a;
    margin-bottom: 10px;
}

/* CTA Sections */
.cta-section,
.final-cta {
    text-align: center;
    background: #1a472a;
    color: #fff;
    padding: 50px;
    border-radius: 10px;
    margin-top: 50px;
}

.cta-section h3,
.final-cta h2 {
    color: #fff;
    margin-bottom: 15px;
}

.cta-btn,
.cta-btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin: 10px;
    transition: all 0.3s;
}

.cta-btn {
    background: #ff6b35;
    color: #fff;
}

.cta-btn:hover {
    background: #e55a2b;
}

.cta-btn-secondary {
    background: #fff;
    color: #1a472a;
}

.cta-btn-secondary:hover {
    background: #f0f0f0;
}

/* Footer */
.footer {
    background: #1a472a;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer h3 {
    color: #ffd700;
    margin-bottom: 15px;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 8px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #2d5f3f;
    padding-top: 20px;
    text-align: center;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a472a 0%, #2d5f3f 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

/* Blog Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.blog-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: left;
}

.blog-card h2 a {
    color: #1a472a;
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: #ff6b35;
}

.blog-meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.read-more {
    color: #ff6b35;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

/* Blog Post */
.blog-post {
    padding: 60px 0;
}

.post-header {
    margin-bottom: 40px;
}

.post-header h1 {
    color: #1a472a;
    font-size: 42px;
    margin-bottom: 15px;
}

.post-meta {
    color: #666;
    font-size: 16px;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
}

.post-content h2 {
    color: #1a472a;
    font-size: 32px;
    margin: 40px 0 20px;
    text-align: left;
}

.post-content h3 {
    color: #1a472a;
    font-size: 24px;
    margin: 30px 0 15px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
    margin: 20px 0 20px 30px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content a {
    color: #ff6b35;
    text-decoration: underline;
}

.post-content a:hover {
    color: #e55a2b;
}

.lead {
    font-size: 20px;
    color: #555;
    font-weight: 500;
}

.blog-cta {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin: 40px 0;
}

.related-posts {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #ddd;
}

.related-posts ul {
    list-style: none;
    margin: 20px 0 0 0;
}

.related-posts li {
    margin-bottom: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        order: 2;
    }

    .nav-wrapper {
        position: relative;
    }

    .logo {
        order: 1;
    }

    .nav-contact {
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .nav-menu {
        display: none;
        order: 4;
        width: 100%;
        margin-top: 15px;
    }

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

    .nav-menu ul {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 10px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero h2 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    section h2 {
        font-size: 28px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .post-header h1 {
        font-size: 32px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 26px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
}
