/* ===================================
   CSS RESET & BASE STYLES
   =================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgb(22, 22, 22);
    background-color: rgb(255, 255, 255);
}

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: rgb(212, 84, 67);
    color: white;
    padding: 8px;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    position: sticky;
    top: 0;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: rgb(22, 22, 22);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: rgb(212, 84, 67);
}

.btn-login {
    padding: 8px 24px;
    background-color: rgb(212, 84, 67);
    color: white;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-login:hover {
    background-color: rgb(190, 70, 55);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: rgb(22, 22, 22);
    transition: 0.3s;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .btn-login {
        margin-top: 10px;
    }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    position: relative;
    height: 600px;
    background: url('../images/4ebd86b408624341912c9560e5c4cc87.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .hero {
        height: 400px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

/* ===================================
   SECTIONS - GENERAL
   =================================== */

section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 28px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: rgb(92, 100, 108);
}

.section-intro {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: rgb(92, 100, 108);
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 22px;
    }
}

/* ===================================
   INTRO SECTION
   =================================== */

.intro {
    background-color: rgb(240, 240, 240);
}

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

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
}

.intro-content a {
    color: rgb(212, 84, 67);
    font-weight: 600;
}

.intro-content a:hover {
    text-decoration: underline;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services {
    background-color: rgb(255, 255, 255);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background-color: rgb(255, 255, 255);
    padding: 40px 30px;
    border: 1px solid rgb(240, 240, 240);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgb(212, 84, 67);
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: rgb(64, 64, 64);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   EXPERTISE SECTION
   =================================== */

.expertise {
    background-color: rgb(240, 240, 240);
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.tech-card {
    background-color: rgb(255, 255, 255);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tech-card img {
    height: 80px;
    width: auto;
    margin: 0 auto 20px;
    object-fit: contain;
}

.tech-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgb(22, 22, 22);
}

.tech-card .tech-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: rgb(92, 100, 108);
}

.tech-card ul {
    text-align: left;
    margin-left: 20px;
    list-style: disc;
}

.tech-card li {
    font-size: 15px;
    line-height: 1.8;
    color: rgb(64, 64, 64);
}

@media (max-width: 768px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   CLIENTS SECTION
   =================================== */

.clients {
    background-color: rgb(255, 255, 255);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.client-card {
    background-color: rgb(255, 255, 255);
    padding: 30px;
    border: 1px solid rgb(240, 240, 240);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.client-logo {
    height: 60px;
    width: auto;
    margin: 0 auto 20px;
    object-fit: contain;
}

.client-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgb(22, 22, 22);
    text-align: center;
}

.client-tagline,
.client-industry {
    font-size: 14px;
    font-weight: 600;
    color: rgb(212, 84, 67);
    text-align: center;
    margin-bottom: 15px;
}

.client-challenge,
.client-solution {
    font-size: 15px;
    line-height: 1.7;
    color: rgb(64, 64, 64);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   PRICING SECTION
   =================================== */

.pricing {
    background-color: rgb(240, 240, 240);
}

.pricing-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 17px;
    line-height: 1.8;
    color: rgb(64, 64, 64);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background-color: rgb(255, 255, 255);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card.featured {
    border: 3px solid rgb(212, 84, 67);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: rgb(22, 22, 22);
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: rgb(212, 84, 67);
    margin-bottom: 30px;
}

.price span {
    font-size: 18px;
    font-weight: 400;
    color: rgb(128, 128, 128);
}

.features {
    text-align: left;
    margin: 30px 0;
    list-style: none;
}

.features li {
    padding: 10px 0;
    border-bottom: 1px solid rgb(240, 240, 240);
    font-size: 15px;
    line-height: 1.6;
}

.features li:before {
    content: "✓ ";
    color: rgb(212, 84, 67);
    font-weight: bold;
    margin-right: 8px;
}

.pricing-disclaimer {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 14px;
    color: rgb(92, 100, 108);
    font-style: italic;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   QUOTE FORM SECTION
   =================================== */

.quote-form {
    position: relative;
    background: url('../images/11062b_02f3dbceab3f4181a0ea4767efbf280d~mv2.jpg') center/cover no-repeat;
    color: white;
}

.quote-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 22, 22, 0.8);
}

.quote-form .container {
    position: relative;
    z-index: 1;
}

.quote-form .section-title {
    color: white;
}

.quote-form .section-subtitle,
.form-instructions {
    color: rgb(191, 191, 191);
}

.contact-form {
    max-width: 700px;
    margin: 40px auto 0;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid rgb(191, 191, 191);
    border-radius: 4px;
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgba(255, 255, 255, 0.95);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(212, 84, 67);
}

.form-message {
    background-color: rgb(212, 84, 67);
    color: white;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about {
    position: relative;
    background: url('../images/311602d9fa83404588db6a0837e0136a.jpg') center/cover no-repeat;
    color: white;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 22, 22, 0.75);
}

.about .container {
    position: relative;
    z-index: 1;
}

.about .section-title {
    color: white;
}

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

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact {
    position: relative;
    background: url('../images/60bd704e313d485c8e9549dcd30fac8d.jpg') center/cover no-repeat;
    color: white;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(22, 22, 22, 0.8);
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact .section-title {
    color: white;
}

.contact-grid {
    max-width: 800px;
    margin: 40px auto 0;
}

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

.office {
    margin-bottom: 30px;
}

.office h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: rgb(212, 84, 67);
}

.office p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-details {
    margin: 40px 0;
}

.contact-details p {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-details a {
    color: rgb(212, 84, 67);
}

.contact-details a:hover {
    text-decoration: underline;
}

.social-media {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.social-media a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-media a:hover {
    transform: scale(1.1);
}

.social-media img {
    width: 40px;
    height: 40px;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: rgb(212, 84, 67);
    color: white;
}

.btn-primary:hover {
    background-color: rgb(190, 70, 55);
    transform: scale(1.02);
}

.btn-read-more {
    background-color: transparent;
    border: 2px solid rgb(212, 84, 67);
    color: rgb(212, 84, 67);
}

.btn-read-more:hover {
    background-color: rgb(212, 84, 67);
    color: white;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: rgb(22, 22, 22);
    color: white;
    padding: 30px 0;
    text-align: center;
}

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

.footer p {
    font-size: 14px;
}

.footer a {
    color: white;
    font-size: 14px;
}

.footer a:hover {
    color: rgb(212, 84, 67);
}

@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===================================
   BLOG PAGE STYLES
   =================================== */

.blog-header {
    background-color: rgb(240, 240, 240);
    padding: 60px 0;
    text-align: center;
}

.blog-header h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
}

.blog-header p {
    font-size: 18px;
    color: rgb(92, 100, 108);
}

.blog-filters {
    background-color: rgb(255, 255, 255);
    padding: 30px 0;
}

.filter-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background-color: rgb(240, 240, 240);
    color: rgb(64, 64, 64);
    border: none;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background-color: rgb(212, 84, 67);
    color: white;
}

.filter-btn.active {
    background-color: rgb(212, 84, 67);
    color: white;
}

.blog-posts {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background-color: rgb(255, 255, 255);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-content {
    padding: 30px;
}

.blog-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: rgb(22, 22, 22);
    line-height: 1.4;
}

.blog-excerpt {
    margin-bottom: 20px;
}

.blog-excerpt p {
    font-size: 16px;
    line-height: 1.6;
    color: rgb(92, 100, 108);
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

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

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: rgb(22, 22, 22);
}

.blog-meta {
    font-size: 14px;
    color: rgb(128, 128, 128);
    margin-bottom: 20px;
}

.meta-separator {
    margin: 0 8px;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-header h1 {
        font-size: 36px;
    }
}
