/* Reset y Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2b2b2b;
    overflow-x: hidden;
    background-color: #FAFAFA;
}

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

/* Header & Navigation */
.header {
    background: #F5F0E6;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 15px 0;
}

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

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

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #4B2C33;
}

/* Dropdown Submenu */
.nav-menu li {
    position: relative;
}

.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #F5F0E6;
    min-width: 200px;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    padding: 8px 0;
    list-style: none;
    z-index: 1001;
    margin-top: 10px;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #F5F0E6;
}

.nav-menu li:hover > .nav-dropdown {
    display: block;
}

.nav-dropdown li {
    position: relative;
}

.nav-dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #333 !important;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.nav-dropdown a:hover {
    background: #4B2C33;
    color: #fff !important;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.65)),
                url('images/hero-buildings.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    position: relative;
}

@media (max-width: 968px) {
    .hero {
        background-attachment: scroll;
    }
}

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

.hero-cta-box {
    background: rgba(0, 0, 0, 0.75);
    padding: 60px 80px;
    display: inline-block;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
    color: #ffffff;
}

.btn-primary {
    display: inline-block;
    background: #4B2C33;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Lora', serif;
    border-radius: 5px;
    transition: all 0.3s;
    border: 2px solid #4B2C33;
}

.btn-primary:hover {
    background: #3a2028;
    color: #fff;
    transform: translateY(-2px);
    border-color: #3a2028;
    box-shadow: 0 5px 15px rgba(75, 44, 51, 0.3);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #4B2C33;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Lora', serif;
    border-radius: 5px;
    transition: all 0.3s;
    border: 2px solid #4B2C33;
}

.btn-secondary:hover {
    background: #4B2C33;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(75, 44, 51, 0.3);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #444;
    line-height: 1.8;
}

/* Mission Vision Section */
.mission-vision {
    padding: 100px 0;
    background: #F5F0E6;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mv-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.mv-card:hover {
    transform: translateY(-10px);
}

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

.mv-content {
    padding: 30px;
}

.mv-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #4B2C33;
}

.mv-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.services-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.services-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.services-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #444;
}

.cta-banner {
    background: linear-gradient(135deg, #4B2C33, #3a2028);
    color: #fff;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
}

.cta-banner h3 {
    font-size: 2rem;
    font-weight: 600;
}

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

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 1.2rem;
    color: #555;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s;
    background: #fff;
    color: #333;
    -webkit-appearance: none;
    appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23888' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-group select option {
    background: #fff;
    color: #333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4B2C33;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #4B2C33;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Lora', serif;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #3a2028;
}

/* Calendly Widget */
#calendlyInline {
    min-height: 900px;
    height: 900px;
}

#calendlyInline .calendly-inline-widget,
#calendlyInline iframe {
    min-height: 900px !important;
    height: 900px !important;
    width: 100% !important;
}

@media (max-width: 768px) {
    #calendlyInline {
        min-height: 750px;
        height: 750px;
    }

    #calendlyInline .calendly-inline-widget,
    #calendlyInline iframe {
        min-height: 750px !important;
        height: 750px !important;
    }
}

.success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
    border: 1px solid #c3e6cb;
}

.success-message.show {
    display: block;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 0;
    text-align: center;
}

/* Newsletter Section */
.newsletter-section {
    margin-bottom: 35px;
}

.newsletter-section h3 {
    font-size: 1.5rem;
    color: #f5f5f5;
    margin-bottom: 10px;
    font-weight: 700;
}

.newsletter-section p {
    font-size: 1rem;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid #444;
    border-radius: 5px;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    background: #333;
    color: #f5f5f5;
    min-width: 0;
}

.newsletter-form input[type="email"]::placeholder {
    color: #888;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: #4B2C33;
}

.newsletter-form button {
    padding: 12px 25px;
    background: #4B2C33;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Lora', serif;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #3a2028;
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
        padding: 0 20px;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
        padding: 14px 25px;
    }
}

.footer-address {
    margin: 20px 0;
}

.footer-address p {
    color: #c0c0c0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-address a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-icon:hover img {
    transform: scale(1.2);
}

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

.footer-links a:hover {
    color: #F5F0E6;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

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

    .nav-dropdown {
        position: static;
        transform: none;
        box-shadow: none;
        min-width: 100%;
        margin-top: 0;
        display: none;
        background: #eee8dc;
        border-radius: 0;
        padding: 5px 0;
    }

    .nav-dropdown::before {
        display: none;
    }

    .nav-menu li:hover > .nav-dropdown {
        display: none;
    }

    .nav-menu li.dropdown-open > .nav-dropdown {
        display: block;
    }

    .nav-dropdown a {
        padding: 8px 20px;
        font-size: 13px !important;
    }

    /* Ocultar botón WhatsApp del nav en móvil (tenemos el flotante) */
    .whatsapp-btn {
        display: none;
    }

    .hamburger {
        display: flex;
        padding: 5px;
        border: 2px solid #333;
        border-radius: 5px;
    }

    .hamburger span {
        background: #333;
        width: 22px;
        height: 2.5px;
    }

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

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

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

    .hero {
        height: 70vh;
        align-items: flex-start;
        padding-top: 80px;
    }

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

    .hero-cta-box {
        padding: 40px 40px;
    }

    .about-content,
    .services-hero {
        grid-template-columns: 1fr;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-cta-box {
        padding: 30px 25px;
    }

    .about-text h2,
    .services-content h2 {
        font-size: 1.8rem;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .cta-banner h3 {
        font-size: 1.5rem;
    }
}

/* Hero Small Section */
.hero-small {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.65)),
                url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    position: relative;
}

@media (max-width: 968px) {
    .hero-small {
        background-attachment: scroll;
    }
}

.hero-small .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #F5F0E6;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Founder Section */
.founder-section {
    padding: 100px 0;
    background: #F5F0E6;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.founder-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #4B2C33;
}

.founder-text p {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.8;
}

/* About Content Section */
.about-content-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.about-content-section h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

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

.about-text-block h3 {
    font-size: 1.8rem;
    color: #4B2C33;
    margin-bottom: 20px;
}

.about-text-block h4 {
    font-size: 1.5rem;
    color: #4B2C33;
    margin: 30px 0 20px;
}

.about-text-block p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image-block img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.situation-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.situation-list li {
    font-size: 1.15rem;
    color: #333;
    padding: 12px 0 12px 40px;
    position: relative;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.situation-list li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 1.2rem;
    color: #4B2C33;
}

/* Scenarios Section */
.scenarios-section {
    padding: 100px 0;
    background: #F5F0E6;
}

.scenarios-section h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 60px;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.scenario-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #4B2C33;
    transition: transform 0.3s;
}

.scenario-card:hover {
    transform: translateX(10px);
}

.scenario-card p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
}

/* Methodology Section */
.methodology-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.methodology-section h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 30px;
}

.methodology-section h3 {
    font-size: 1.8rem;
    color: #4B2C33;
    text-align: center;
    margin-bottom: 50px;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

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

.methodology-icon {
    font-size: 2rem;
    color: #4B2C33;
    min-width: 40px;
}

.methodology-item p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
}

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

.methodology-conclusion p {
    font-size: 1.3rem;
    color: #4B2C33;
    margin-bottom: 20px;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #F5F0E6;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-images img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

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

.cta-text h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.3rem;
    color: #444;
    margin-bottom: 30px;
    font-weight: 600;
}

/* Services Grid Section */
.services-grid-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(75, 44, 51, 0.15);
}

.service-card h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    min-height: 60px;
}

.service-divider {
    width: 50px;
    height: 3px;
    background: #4B2C33;
    margin: 20px auto;
}

.service-link {
    color: #4B2C33;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: #3a2028;
}

/* Service Detail Section */
.service-detail-section {
    padding: 100px 0;
    background: #F5F0E6;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.service-detail-text h2 {
    font-size: 2.5rem;
    color: #4B2C33;
    margin-bottom: 25px;
}

.service-detail-text p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.service-list li {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.service-list li:before {
    content: "•";
    color: #4B2C33;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
}

/* Floating WhatsApp Button (mobile only) */
.floating-whatsapp-btn {
    display: none;
    position: fixed;
    bottom: 25px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.5);
    transition: all 0.3s;
    z-index: 9999;
}

.floating-whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.floating-whatsapp-btn svg {
    width: 30px;
    height: 30px;
    fill: white;
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .floating-whatsapp-btn {
        display: flex;
    }
}

/* Floating Subscribe Button */
.floating-subscribe-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 14px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    z-index: 999;
}

.floating-subscribe-btn:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.floating-subscribe-btn svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .floating-subscribe-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.industry-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(75, 44, 51, 0.15);
}

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

.industry-content {
    padding: 30px;
}

.industry-content h3 {
    font-size: 1.3rem;
    color: #4B2C33;
    margin-bottom: 12px;
}

.industry-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* Publications Section */
.publications-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.blog-page-title {
    font-size: 3rem;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 50px;
}

.publications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.publication-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.publication-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(75, 44, 51, 0.15);
}

.publication-image {
    position: relative;
    overflow: hidden;
}

.publication-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s;
}

.publication-card:hover .publication-image img {
    transform: scale(1.05);
}

.publication-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #4B2C33;
    color: #fff;
    padding: 5px 15px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.publication-content {
    padding: 30px;
}

.publication-date {
    font-size: 0.85rem;
    color: #4B2C33;
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.publication-content h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.publication-content p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.publication-author-line {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 15px;
}

.publication-read-more {
    color: #4B2C33;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.publication-card:hover .publication-read-more {
    color: #3a2028;
}

/* Article Page Styles */
.article-section {
    padding: 80px 0;
    background: #FAFAFA;
}

.article-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.article-back-link {
    color: #4B2C33;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.article-back-link:hover {
    color: #3a2028;
}

.article-source {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}

.article-original-source {
    background: #F5F0E6;
    border: 1px solid #ccc;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 35px;
}

.article-original-source a {
    color: #4B2C33;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.article-original-source a:hover {
    color: #3a2028;
}

.article-title {
    font-size: 2.5rem;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 40px;
    font-weight: 700;
}

.article-author {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: #F5F0E6;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 50px;
    border-left: 4px solid #4B2C33;
}

.article-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.author-info h3 {
    font-size: 1.1rem;
    color: #4B2C33;
    margin-bottom: 10px;
}

.author-info p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
}

.article-image-full {
    margin: 35px 0;
    border-radius: 10px;
    overflow: hidden;
}

.article-image-full img {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
    display: block;
    background: #f5f5f0;
    border-radius: 10px;
}

.article-body h2 {
    font-size: 1.6rem;
    color: #4B2C33;
    margin: 45px 0 20px;
    line-height: 1.3;
}

.article-body p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.9;
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin: 20px 0;
    padding-left: 25px;
}

.article-body li {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 10px;
}

.article-body blockquote {
    background: #F5F0E6;
    border-left: 4px solid #4B2C33;
    padding: 30px 35px;
    margin: 40px 0;
    border-radius: 0 10px 10px 0;
    font-size: 1.2rem;
    color: #4B2C33;
    font-weight: 500;
    line-height: 1.6;
    font-style: italic;
}

.article-body sup {
    color: #4B2C33;
    font-size: 0.75rem;
}

.article-stages {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stage-card {
    background: #F5F0E6;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #4B2C33;
}

.stage-card h3 {
    font-size: 1.2rem;
    color: #4B2C33;
    margin-bottom: 15px;
}

.stage-card p {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
}

.stage-card ul {
    padding-left: 20px;
    margin: 10px 0 0;
}

.stage-card li {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 8px;
}

.article-references {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #ccc;
}

.article-references h3 {
    font-size: 1.2rem;
    color: #4B2C33;
    margin-bottom: 20px;
}

.article-references ol {
    padding-left: 20px;
}

.article-references li {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Responsive Design for New Sections */
@media (max-width: 968px) {
    .founder-content,
    .about-grid,
    .cta-content,
    .service-detail-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .publications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-title {
        font-size: 2rem;
    }

    .article-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .scenarios-grid,
    .methodology-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .article-title {
        font-size: 1.6rem;
    }

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

    .founder-text h2,
    .about-content-section h2,
    .scenarios-section h2,
    .methodology-section h2 {
        font-size: 2rem;
    }
}
