:root {

    --primary-color: #f7931e;

    --primary-dark: #d67a0a;

    --dark-bg: #111111;

    --card-bg: #1c1c1c;

    --text-color: #ffffff;

    --subtext-color: #bbbbbb;

    --font-heading: 'Montserrat', sans-serif;

    --font-body: 'Poppins', sans-serif;

    --transition: all 0.3s ease;

    --container-width: 1200px;

}



/* Reset & Base */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    font-family: var(--font-body);

    background-color: var(--dark-bg);

    color: var(--text-color);

    line-height: 1.6;

    overflow-x: hidden;

}



h1, h2, h3, h4, h5, h6 {

    font-family: var(--font-heading);

    font-weight: 700;

    margin-bottom: 1rem;

}



a {

    text-decoration: none;

    color: inherit;

    transition: var(--transition);

}



ul {

    list-style: none;

}



img {

    max-width: 100%;

    display: block;

}



.container {

    width: 90%;

    max-width: var(--container-width);

    margin: 0 auto;

    padding: 0 15px;

}



/* Buttons */

.btn {

    display: inline-block;

    padding: 12px 30px;

    border-radius: 6px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1px;

    cursor: pointer;

    border: 2px solid transparent;

}



.btn-primary {

    background-color: var(--primary-color);

    color: #fff;

}



.btn-primary:hover {

    background-color: var(--primary-dark);

    box-shadow: 0 0 20px rgba(247, 147, 30, 0.4);

}



.btn-outline {

    border-color: var(--primary-color);

    color: #fff;

    background: transparent;

}



.btn-outline:hover {

    background-color: var(--primary-color);

    color: #fff;

}



/* Header */

header {

    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 80%, transparent 100%);

    padding: 20px 0;

    position: sticky;

    top: 0;

    z-index: 1000;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    transition: var(--transition);

}



header.scrolled {

    background: rgba(17, 17, 17, 0.95);

    padding: 15px 0;

    border-bottom: 1px solid #333;

    backdrop-filter: blur(10px);

    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);

}



header .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



.logo a {

    font-family: var(--font-heading);

    font-size: 24px;

    font-weight: 800;

    color: #fff;

    text-transform: uppercase;

    letter-spacing: 1px;

}



.logo span {

    color: var(--primary-color);

}

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



nav ul {

    display: flex;

    align-items: center;

}



nav ul li {

    margin-left: 30px;

}



nav ul li a {

    font-weight: 600;

    font-size: 15px;

    color: #fff;

    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);

}



nav ul li a:hover {

    color: var(--primary-color);

}



nav .btn-contact {

    background-color: var(--primary-color);

    padding: 10px 20px;

    border-radius: 6px;

    color: #fff !important;

    font-weight: 600;

}



nav .btn-contact:hover {

    background-color: var(--primary-dark);

    box-shadow: 0 0 15px rgba(247, 147, 30, 0.3);

}

nav .btn-whatsapp {
    background-color: #25d366;
    padding: 10px 20px;
    border-radius: 6px;
    color: #fff !important;
    font-weight: 600;
    margin-left: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav .btn-whatsapp:hover {
    background-color: #128c7e;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}




/* Hero Section */

.hero {

    height: 85vh;

    min-height: 600px;

    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.4) 100%), url('../img/hero-bg.jpg');

    background-size: cover;

    background-position: center;

    display: flex;

    align-items: center;

    position: relative;

    text-align: left;

}



.hero-content {

    max-width: 800px;

    z-index: 2;

}



.hero h1 {

    font-size: 4rem;

    line-height: 1.1;

    margin-bottom: 20px;

    text-transform: uppercase;

    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);

}



.hero h1 span {

    color: var(--primary-color);

}



.hero h1 .font-light {

    font-weight: 300;

    color: #fff;

}



.hero p {

    font-size: 1.2rem;

    color: #e0e0e0;

    margin-bottom: 40px;

    max-width: 600px;

    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);

}



.hero-buttons {

    display: flex;

    gap: 20px;

}



/* Badge */

.experience-badge {

    position: absolute;

    bottom: 80px;

    right: 10%;

    width: 160px;

    height: 160px;

    background: linear-gradient(135deg, #FFD700, #F7931E);

    border-radius: 50%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    box-shadow: inset 0 0 20px rgba(0,0,0,0.2), 0 0 30px rgba(247, 147, 30, 0.4);

    border: 1px solid rgba(255,255,255,0.4);

    animation: float 3s ease-in-out infinite;

    z-index: 2;

}



.experience-badge::after {

    content: '';

    position: absolute;

    top: -5px;

    left: -5px;

    right: -5px;

    bottom: -5px;

    border-radius: 50%;

    border: 1px solid rgba(255, 215, 0, 0.3);

    animation: pulse-ring 2s infinite;

}



.experience-badge span.year {

    font-size: 52px;

    font-weight: 800;

    line-height: 1;

    color: #111;

    text-shadow: 0 1px 2px rgba(255,255,255,0.5);

}



.experience-badge span.text {

    font-size: 13px;

    font-weight: 700;

    color: #222;

    text-transform: uppercase;

    letter-spacing: 1px;

}



@keyframes float {

    0% { transform: translateY(0px); }

    50% { transform: translateY(-10px); }

    100% { transform: translateY(0px); }

}



@keyframes pulse-ring {

    0% { transform: scale(1); opacity: 0.5; }

    100% { transform: scale(1.15); opacity: 0; }

}



/* Quick Contact Bar */

.quick-contact-bar {

    position: relative;

    z-index: 20;

    margin-top: -80px;

    margin-bottom: 60px;

}



.contact-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

}



.contact-card {

    background: #1a1a1a;

    padding: 25px;

    border-radius: 8px;

    display: flex;

    align-items: center;

    gap: 15px;

    border: 1px solid #333;

    transition: var(--transition);

    box-shadow: 0 10px 30px rgba(0,0,0,0.5);

    text-decoration: none;

}



.contact-card:hover {

    transform: translateY(-5px);

    border-color: var(--primary-color);

    box-shadow: 0 15px 40px rgba(247, 147, 30, 0.15);

}



.contact-card .icon {

    font-size: 24px;

    width: 50px;

    height: 50px;

    background: rgba(255,255,255,0.05);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--primary-color);

    transition: var(--transition);

}



.contact-card:hover .icon {

    background: var(--primary-color);

    color: #fff;

}



.contact-card .text {

    display: flex;

    flex-direction: column;

}



.contact-card .text span {

    font-size: 0.85rem;

    color: var(--subtext-color);

    margin-bottom: 3px;

}



.contact-card .text strong {

    font-size: 1rem;

    color: #fff;

    font-weight: 600;

}



/* Services Section */

.services {

    padding: 100px 0;

    background-color: var(--dark-bg);

}



.section-title {

    text-align: center;

    margin-bottom: 60px;

}



.section-title h2 {

    font-size: 2.5rem;

    margin-bottom: 10px;

}



.section-title p {

    color: var(--primary-color);

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 2px;

}



.read-more {

    color: var(--primary-color);

    font-weight: 600;

    font-size: 0.9rem;

    display: inline-flex;

    align-items: center;

}



.read-more:hover {

    color: #fff;

}



.read-more::after {
    content: '\2192';
    margin-left: 5px;
    transition: margin-left 0.3s;
}



.read-more:hover::after {

    margin-left: 10px;

}



/* Footer */

footer {

    background: #0f0f0f;
    padding: 80px 0 30px;
    color: #aaa;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-menu {
    padding-left: 60px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .footer-menu {
        padding-left: 0;
    }
    .footer-col.footer-about {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-col.footer-about {
        grid-column: span 1;
    }
}

.footer-col h4 {
    color: #fff;

    font-size: 1.2rem;

    margin-bottom: 25px;

    position: relative;

    padding-bottom: 10px;

}



.footer-col h4::after {

    content: '';

    position: absolute;

    left: 0;

    bottom: 0;

    width: 30px;

    height: 2px;

    background: var(--primary-color);

}



.footer-col ul {

    list-style: none;

    padding: 0;

}



.footer-col ul li {

    margin-bottom: 15px;

}



.footer-col ul li a {

    color: #aaa;

    text-decoration: none;

    transition: all 0.3s ease;

}



.footer-col ul li a:hover {

    color: var(--primary-color);

    padding-left: 5px;

}



.footer-about p {

    color: #aaa;

    margin-bottom: 20px;

}



.footer-maps-btn {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

    padding: 16px 20px;

    background: #ffffff;

    color: #111111 !important;

    border-radius: 8px;

    font-weight: 600;

    transition: all 0.3s ease;

    box-shadow: 0 4px 15px rgba(0,0,0,0.1);

    border: 1px solid rgba(255,255,255,0.1);

    margin-top: 10px;

}



.footer-maps-btn:hover {

    background: var(--primary-color);

    color: #ffffff !important;

    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.4);

    transform: translateY(-2px);

}



.footer-bottom {

    border-top: 1px solid #222;

    padding-top: 30px;

    text-align: center;

    color: #666;

    font-size: 0.9rem;

}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-credits {
    margin-top: 10px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-credits a {
    color: inherit;
    text-decoration: none;
}



/* Dropdown Menu */

nav ul li {

    position: relative;

}



nav ul li ul {

    display: none;

    position: absolute;

    top: 100%;

    left: 0;

    background-color: rgba(17, 17, 17, 0.95);

    min-width: 220px;

    box-shadow: 0 4px 15px rgba(0,0,0,0.5);

    padding: 10px 0;

    border-radius: 4px;

    flex-direction: column;

    align-items: flex-start;

    z-index: 1001;

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.1);

}



nav ul li:hover > ul {

    display: flex;

}



nav ul li ul li {

    margin: 0;

    width: 100%;

}



nav ul li ul li a {

    display: block;

    padding: 12px 20px;

    font-size: 14px;

    color: #eee;

    white-space: nowrap;

    border-bottom: 1px solid rgba(255,255,255,0.05);

    transition: all 0.2s ease;

}



nav ul li ul li:last-child a {

    border-bottom: none;

}



nav ul li ul li a:hover {

    background-color: rgba(247, 147, 30, 0.1);

    color: var(--primary-color);

    padding-left: 25px;

}



/* Animations */

.fade-in-element {

    opacity: 0;

    transform: translateY(20px);

    transition: opacity 0.6s ease-out, transform 0.6s ease-out;

}



.fade-in-element.visible {

    opacity: 1;

    transform: translateY(0);

}



.scale-on-hover {

    transition: transform 0.3s ease;

}



.scale-on-hover:hover {

    transform: scale(1.05);

}



.glow-on-hover {

    transition: box-shadow 0.3s ease;

}



.glow-on-hover:hover {

    box-shadow: 0 0 15px rgba(247, 147, 30, 0.5);

}



/* Products Page */





.page-header .overlay {

    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.6));

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    z-index: 1;

}



.page-header .container {

    position: relative;

    z-index: 2;

}



.page-header h1 {

    font-size: 3rem;

    margin-bottom: 20px;

}



.page-header p {

    font-size: 1.2rem;

    max-width: 600px;

    margin: 0 auto;

    opacity: 0.9;

}



.product-categories {

    background: #f9f9f9;

    padding: 20px 0;

    border-bottom: 1px solid #eee;

}



.category-list {

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

    list-style: none;

    padding: 0;

    margin: 0;

}



.category-list li a {

    display: inline-block;

    padding: 10px 20px;

    background: #fff;

    border: 1px solid #ddd;

    border-radius: 30px;

    color: #333;

    text-decoration: none;

    font-weight: 600;

    transition: all 0.3s ease;

}



.category-list li a:hover,

.category-list li a.active {

    background: var(--primary-color);

    color: #fff;

    border-color: var(--primary-color);

    transform: translateY(-2px);

    box-shadow: 0 5px 15px rgba(247, 147, 30, 0.3);

}



.products-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    margin-top: 40px;

}



.product-card {

    background-color: var(--card-bg);

    border-radius: 10px;

    overflow: hidden;

    transition: var(--transition);

    border: 1px solid #333;

    display: flex;

    flex-direction: column;

}



.product-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 15px 40px rgba(247, 147, 30, 0.15);

    border-color: var(--primary-color);

}



.product-img {

    height: 250px;

    overflow: hidden;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

}



.product-img img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;

}



.product-card:hover .product-img img {

    transform: scale(1.1);

}



.product-content {

    padding: 25px;

    flex: 1;

    display: flex;

    flex-direction: column;

}



.product-content h3 {

    font-size: 1.3rem;

    margin-bottom: 15px;

    color: #fff;

}



.product-content p {

    color: var(--subtext-color);

    margin-bottom: 20px;

    font-size: 0.95rem;

    flex: 1;

}



/* Technical Specs Table */

.technical-specs-table {

    margin-top: 20px;

    overflow-x: auto;

}



.technical-specs-table table {

    width: 100%;

    border-collapse: collapse;

    background: #fff;

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 2px 10px rgba(0,0,0,0.05);

}



.technical-specs-table th,

.technical-specs-table td {

    padding: 12px 15px;

    text-align: left;

    border-bottom: 1px solid #eee;

    color: #333;

}



.technical-specs-table th {

    background-color: #f8f9fa;

    font-weight: 600;

    color: #222;

    border-bottom: 2px solid #ddd;

}



.technical-specs-table tr:last-child td {

    border-bottom: none;

}



.technical-specs-table tr:hover td {

    background-color: #f9f9f9;

}



/* Responsive */

.mobile-menu-toggle {

    display: none;

    background: none;

    border: none;

    color: white;

    font-size: 24px;

    cursor: pointer;

    z-index: 1002;

}



@media (max-width: 992px) {

    .services-grid,

    .grid-3,

    .products-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    

    .hero h1 {

        font-size: 3rem;

    }



    .contact-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}



@media (max-width: 768px) {

    header .container {

        flex-direction: row;

        justify-content: space-between;

        align-items: center;

        flex-wrap: wrap;

    }



    .mobile-menu-toggle {

        display: block;

    }



    nav {

        display: none;

        width: 100%;

        background: rgba(17, 17, 17, 0.95);

        position: absolute;

        top: 100%;

        left: 0;

        padding: 20px;

        backdrop-filter: blur(10px);

        border-bottom: 1px solid #333;

        border-top: 1px solid #333;

    }



    nav.active {

        display: block;

    }



    nav ul {

        flex-direction: column;

        align-items: flex-start;

        width: 100%;

    }



    nav ul li {

        margin: 0;

        width: 100%;

    }



    nav ul li a {

        display: block;

        padding: 15px 0;

        border-bottom: 1px solid rgba(255,255,255,0.1);

        width: 100%;

    }



    nav ul li:last-child a {

        border-bottom: none;

    }



    .services-grid,

    .products-grid {

        grid-template-columns: 1fr;

    }



    /* Contact Grid 2 columns on mobile as per spec */

    .contact-grid {

        grid-template-columns: repeat(2, 1fr);

    }



    .quick-contact-bar {

        margin-top: 0;

        padding: 20px 0;

    }



    .hero {

        text-align: center;

        justify-content: center;

    }



    .hero-content {

        margin: 0 auto;

    }



    .hero-buttons {

        justify-content: center;

    }



    .experience-badge {

        display: none;

    }



    .footer-grid {

        grid-template-columns: 1fr;

        text-align: center;

    }

}


/* Services Grid per 05-hizmetler-grid.md */


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

.service-card {
    background-color: #1c1c1c;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(247, 147, 30, 0.2);
    border-color: var(--primary-color);
    z-index: 10;
}

.service-img {
    height: 250px;
    overflow: hidden;
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 15px;
    color: #fff;
}

.service-content p {
    color: #aaa;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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


/* Fade In Animation */
.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-element.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Breadcrumb Styles */
.page-header .breadcrumb {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
    justify-content: center;
    display: flex;
    align-items: center;
}

.page-header .breadcrumb a {
    color: white;
    text-decoration: none;
}

.page-header .breadcrumb span.separator {
    margin: 0 10px;
}

.page-header .breadcrumb span.current {
    color: var(--primary-color);
    font-weight: 600;
}

.product-card .product-content {
    padding: 20px;
}

/* Products Section Home Fix */
.products .section-title h2,
.services .section-title h2 {
    color: #ffffff;
}

.products .section-title p,
.services .section-title p {
    color: var(--subtext-color);
}

.product-card .product-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    color: #fff;
}

.product-card .product-content p {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-card .read-more {
    gap: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.product-card .read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.product-card .read-more:hover i {
    transform: translateX(5px);
}

.products-page .alert-info {
    grid-column: 1/-1;
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

.products-page .alert-info i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.products-page .alert-info h3 {
    margin-bottom: 10px;
}

/* Home Page Styles */
.badge-mini {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FFD700, #F7931E);
    padding: 5px 15px;
    border-radius: 20px;
    color: #111;
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 10px;
}

.badge-mini span {
    font-size: 1.2rem;
    font-weight: 800;
}

.service-icon {
    font-size: 2rem;
    color: #e67e22;
    margin-bottom: 10px;
}

.service-areas-preview {
    background-color: #f8f9fa;
    padding: 80px 0;
    text-align: center;
    color: #333;
}

.service-areas-preview .section-title {
    color: #333;
}

.service-areas-preview .section-title p {
    color: #e67e22;
}

.service-areas-preview .section-title h2 {
    color: #222;
}

.service-areas-preview p.description {
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    font-size: 1.1rem;
}

.popular-locations {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.location-pill {
    padding: 10px 25px;
    background: white;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
}

.location-pill i {
    color: #e67e22;
    margin-right: 8px;
}

.location-pill:hover {
    transform: translateY(-5px);
    background: #e67e22;
    color: #fff;
}

.location-pill:hover i {
    color: #fff;
}

/* Blog Styles */
.blog-list {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.blog-img {
    display: block;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card .read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

/* Blog Post Detail Styles */
.post-header {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
    color: white;
    background-size: cover;
    background-position: center;
}

.post-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    z-index: 1;
}

.post-header .container {
    position: relative;
    z-index: 2;
}

.post-meta {
    margin-bottom: 15px;
    font-size: 1rem;
    opacity: 0.9;
    color: white;
}

.post-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    max-width: 800px;
    color: white;
}

.post-content {
    padding: 80px 0;
    background: white;
}

.content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.content-body p { margin-bottom: 20px; }
.content-body h2 { font-size: 1.8rem; margin: 40px 0 20px; color: #222; }
.content-body h3 { font-size: 1.5rem; margin: 30px 0 15px; color: #333; }
.content-body ul, .content-body ol { margin-bottom: 20px; padding-left: 20px; }
.content-body li { margin-bottom: 10px; }
.content-body img { max-width: 100%; height: auto; border-radius: 5px; margin: 20px 0; }

.post-share {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.social-facebook { background: #3b5998; }
.social-twitter { background: #1da1f2; }
.social-linkedin { background: #0077b5; }
.social-instagram { background: #E1306C; }
.social-whatsapp { background: #25d366; }

.post-navigation {
    background: #f9f9f9;
    padding: 40px 0;
    text-align: center;
}

.btn-outline-primary {
    display: inline-block;
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

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

/* Breadcrumb override for blog */
.page-header .breadcrumb {
    justify-content: center;
    margin-top: 15px;
}

.post-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Landing Page Styles */
.landing-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.landing-content {
    padding: 80px 0;
}

.cta-block {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-top: 40px;
    border-left: 5px solid var(--primary-color);
}

.cta-buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128c7e;
    color: white;
}

.sidebar.sticky {
    position: sticky;
    top: 100px;
}

.widget {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.widget h4 {
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget li {
    margin-bottom: 10px;
}

.widget i {
    color: var(--primary-color);
    width: 25px;
}

.widget a {
    color: #555;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s;
}

.widget a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.landing-intro {
    font-size: 1.15rem;
    line-height: 1.8;
}

.location-context {
    border-left: 4px solid var(--primary-color);
}

/* Product Page Styles */


/* Product Detail Styles */
.product-detail {
    padding: 80px 0;
}

.product-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.product-left-col {
    flex: 2;
    min-width: 300px;
}

.product-right-col {
    flex: 1;
    min-width: 300px;
    position: sticky;
    top: 100px;
}

.product-image-container {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.product-gallery {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.gallery-thumb {
    width: 100px;
    height: 75px;
    flex-shrink: 0;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb.active {
    border-color: var(--primary-color);
}

.gallery-thumb:hover {
    opacity: 0.8;
}

.product-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #222;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.technical-specs-section {
    margin-top: 40px;
}

.technical-specs-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222;
}

.product-cta-box {
    margin-top: 40px;
    background: #f9f9f9;
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    color: #333;
}

.sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    border: 1px solid #eee;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    color: #333;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    margin-bottom: 10px;
}

.sidebar-list li a {
    display: block;
    padding: 10px 15px;
    background: #f8f9fa;
    color: #555;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sidebar-list li a:hover, .sidebar-list li a.active {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.contact-widget-btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.contact-widget-btn:hover {
    background: #e68a00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 147, 30, 0.3);
}

/* Breadcrumb enhancements */
.page-header .breadcrumb {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.page-header .breadcrumb a {
    color: white;
    text-decoration: none;
}

.page-header .breadcrumb span.separator {
    margin: 0 5px;
}

.page-header .breadcrumb span.current {
    color: var(--primary-color);
    font-weight: 600;
}

/* Product Info Box */
.product-info-box {
    margin-top: 40px;
    background: #f9f9f9;
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    color: #333;
}

.product-info-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222;
}

.product-info-box p {
    margin-bottom: 15px;
    color: #555;
}

.product-features-list {
    list-style: none;
    padding: 0;
    color: #555;
}

.product-features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.product-features-list li span {
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

/* Sidebar */
.product-sidebar {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    position: sticky;
    top: 100px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    color: #333;
}

.product-sidebar h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
    color: #222;
}

.product-sidebar .btn-outline {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.product-sidebar-text {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.product-sidebar .btn-primary {
    display: block;
    text-align: center;
    margin-bottom: 15px;
    background: var(--primary-color);
    color: white;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.product-sidebar .btn-primary:hover {
    background: #e68a00;
    transform: translateY(-2px);
}

.product-sidebar .btn-whatsapp {
    display: block;
    text-align: center;
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.product-sidebar .btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.sidebar-contact-info {
    margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.sidebar-contact-info h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #222;
}

.sidebar-contact-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.sidebar-contact-info a {
    color: #666;
    text-decoration: none;
}

/* Related Products */
.related-products-section {
    padding: 60px 0;
    background: #f9f9f9;
}

.related-products-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.related-product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.related-product-card:hover {
    transform: translateY(-5px);
}

.related-product-link {
    display: block;
    height: 200px;
    overflow: hidden;
}

.related-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.related-product-card:hover .related-product-img {
    transform: scale(1.05);
}

.related-card-body {
    padding: 20px;
}

.related-card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.related-card-title a {
    color: #333;
    text-decoration: none;
}

.related-card-desc {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.related-card-btn {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.related-card-btn:hover {
    text-decoration: underline;
}

/* Services Page Styles */
.services-page {
    padding: 80px 0;
}

.service-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.alert-empty-grid {
    grid-column: 1/-1;
    text-align: center;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
    color: #333;
    border: 1px solid #eee;
}

.alert-empty-grid h3 {
    color: #222;
    margin-bottom: 10px;
}

.alert-empty-grid p {
    color: #555;
}

/* Service Detail Styles */
.service-detail-section {
    padding: 80px 0;
}

.service-detail-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.service-main-content {
    flex: 2;
    min-width: 300px;
}

.service-sidebar-col {
    flex: 1;
    min-width: 250px;
}

.service-detail-image {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-content-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #222;
}

.service-description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.service-features-box {
    margin-top: 40px;
    background: #f9f9f9;
    padding: 30px;
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
    color: #333;
}

.service-features-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222;
}

.service-features-list {
    list-style: none;
    padding: 0;
    color: #555;
}

.service-features-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features-list li span {
    color: var(--primary-color);
    margin-right: 10px;
    font-weight: bold;
}

/* Service Sidebar Styles */
.service-sidebar {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    position: sticky;
    top: 100px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    color: #333;
}

.service-sidebar h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
    color: #222;
}

.service-sidebar p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.service-cta-btn {
    display: block;
    text-align: center;
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

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

.service-cta-btn.primary:hover {
    background: #e65100; /* Darker orange */
}

.service-cta-btn.whatsapp {
    background: #25D366;
    color: white;
}

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

.service-hours {
    margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.service-hours h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #222;
}

.service-hours p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

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

.about-content h2 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 25px;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
}

.about-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.mission-vision {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.mission-vision .mv-card {
    flex: 1;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
}

.mission-vision .mv-card.mission {
    border-top: 3px solid var(--primary-color);
}

.mission-vision .mv-card.vision {
    border-top: 3px solid #2c3e50;
}

.mission-vision h4 {
    color: #333;
    margin-bottom: 10px;
}

.mission-vision p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.quality-list {
    list-style: none;
    padding: 0;
    color: #555;
}

.quality-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.quality-list li i {
    color: #27ae60;
    margin-right: 10px;
    margin-top: 5px;
}

/* About Sidebar */
.about-sidebar {
    position: sticky;
    top: 100px;
}

.contact-box {
    background: #2c3e50;
    color: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-box h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
}

.contact-box p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact-box .btn-contact {
    display: block;
    text-align: center;
    background: var(--primary-color);
    color: white;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.contact-box .btn-whatsapp {
    display: block;
    text-align: center;
    background: #25d366;
    color: white;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.contact-box .btn-whatsapp:hover {
    background: #128c7e;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.contact-box .btn-contact:hover {
    background: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(247, 147, 30, 0.3);
}

.contact-box .btn-contact:hover {
    background: #e65100;
}

.contact-box .phone-link {
    color: white;
    font-size: 1.1rem;
    text-decoration: none;
    display: block;
    text-align: center;
}

.stats-box {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.stats-box h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 20px;
}

.stat-item {
    margin-bottom: 20px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-item span.number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-item span.label {
    color: #666;
    font-size: 0.9rem;
}

/* Values Section */
.values-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2rem;
    color: #2c3e50;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 10px auto;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info-col {
    flex: 1;
    min-width: 300px;
}

.contact-form-col {
    flex: 1.5;
    min-width: 300px;
}

.contact-info-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-info-box h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 30px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 10px;
}

.info-item {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-item .icon.orange {
    background: #fff3e0;
    color: var(--primary-color);
}

.info-item .icon.green {
    background: #e8f5e9;
    color: #2ecc71;
}

.info-item .text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.info-item .text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.info-item .text a {
    color: #666;
    text-decoration: none;
}

.info-item .text .note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 5px;
}

.map-container {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    height: 400px;
}

.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.contact-form-box h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

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




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

/* Utility Classes */
.section-padding {
    padding: 80px 0;
}

.bg-dark-gray {
    background-color: #333;
}


/* Blog Styles */
.blog-list {
    background-color: #f9f9f9;
}

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

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    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.1);
}

.blog-img {
    display: block;
    height: 240px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.read-more i {
    margin-left: 5px;
    font-size: 0.8em;
    transition: margin-left 0.3s ease;
}

.read-more:hover i {
    margin-left: 10px;
}

/* Blog Post Detail (show.php) */
.post-header {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.post-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.post-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.post-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.post-meta {
    margin-bottom: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.post-meta .separator {
    margin: 0 10px;
}

.post-content {
    background: #fff;
}

.content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.content-body h2, .content-body h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #222;
}

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

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.post-share {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.post-share h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #fff;
    transform: translateY(-3px);
}

.social-facebook:hover { background: #3b5998; }
.social-twitter:hover { background: #1da1f2; }
.social-linkedin:hover { background: #0077b5; }
.social-whatsapp:hover { background: #25d366; }

/* Page Header */
.page-header {
    position: relative;
    background-color: #333;
    background-image: url('../img/hero-bg.jpg');
    color: #fff;
    padding: 100px 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

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

/* Blog Styles */
.blog-list {
    background-color: #f9f9f9;
}

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

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    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.1);
}

.blog-img {
    display: block;
    height: 240px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.blog-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

.blog-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.read-more i {
    margin-left: 5px;
    font-size: 0.8em;
    transition: margin-left 0.3s ease;
}

.read-more:hover i {
    margin-left: 10px;
}

/* Blog Post Detail (show.php) */
.post-header {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.post-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.post-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.post-header .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.post-meta {
    margin-bottom: 20px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.post-meta .separator {
    margin: 0 10px;
}

.post-content {
    background: #fff;
}

.content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.content-body h2, .content-body h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #222;
}

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

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.post-share {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.post-share h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #fff;
    transform: translateY(-3px);
}

.social-facebook:hover { background: #3b5998; }
.social-twitter:hover { background: #1da1f2; }
.social-linkedin:hover { background: #0077b5; }
.social-whatsapp:hover { background: #25d366; }

/* Service Detail Page */
.service-detail-section {
    padding: 80px 0;
    background-color: #fff;
}

.service-detail-layout {
    display: flex;
    gap: 40px;
}

.service-main-content {
    flex: 2;
}

.service-sidebar-col {
    flex: 1;
    max-width: 350px;
}

@media (max-width: 992px) {
    .service-detail-layout {
        flex-direction: column;
    }
    
    .service-sidebar-col {
        max-width: 100%;
    }
}

.service-detail-image {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-text {
    color: #444;
}

.service-content-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.service-content-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.service-description-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.service-features-box {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-features-box h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-features-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.service-features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 1.05rem;
}

.service-features-list li span {
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Sidebar */
.service-sidebar {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    position: sticky;
    top: 100px;
}

.service-sidebar h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-sidebar p {
    color: #666;
    margin-bottom: 25px;
}

.service-cta-btn {
    display: block;
    padding: 15px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-cta-btn.primary {
    background-color: var(--primary-color);
    color: #fff;
}

.service-cta-btn.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.service-cta-btn.whatsapp {
    background-color: #25d366;
    color: #fff;
}

.service-cta-btn.whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}

.service-hours {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

.service-hours h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
}

.service-hours p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.page-header--gradient {
    padding: 100px 0 50px;
}

.page-header--gradient .overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
}

.error-page-header {
    background-image: url('../img/hero-bg.jpg');
}

.error-page-content {
    padding: 100px 0;
    text-align: center;
}

.error-code {
    font-size: 8rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 800;
    line-height: 1;
}

.error-message {
    margin-bottom: 20px;
    font-size: 2rem;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-dark {
    background: #333;
    color: #fff;
}

.btn-dark:hover {
    background: #444;
}

.service-areas-page-header {
    background-image: url('../img/hero-bg.jpg');
}

.service-areas {
    background-color: var(--dark-bg);
}

.city-group {
    margin-bottom: 50px;
}

.city-title {
    font-size: 2rem;
    color: #ecf0f1;
    border-bottom: 2px solid var(--primary-color);
    display: inline-block;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.districts-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.district-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 25px;
    border-top: 4px solid #3498db;
    color: #333;
}

.district-title {
    font-size: 1.4rem;
    color: #34495e;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.district-icon {
    color: var(--primary-color);
    margin-right: 10px;
}

.district-links {
    list-style: none;
    padding: 0;
}

.district-links li {
    margin-bottom: 12px;
}

.district-link {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.district-chevron {
    font-size: 0.8rem;
    color: #bdc3c7;
    margin-right: 8px;
    transition: 0.3s;
}

.district-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.district-link:hover .district-chevron {
    color: var(--primary-color);
}

.empty-state {
    text-align: center;
    padding: 50px;
    background: #f9f9f9;
    border-radius: 8px;
    color: #333;
}

.empty-state-icon {
    font-size: 3rem;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.empty-state-title {
    color: #222;
}

.empty-state-text {
    color: #555;
}

/* AR-GE Page Styles */
.arge-page-header {
    background-image: url('../img/arge-hero.jpg');
    padding: 140px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    background-size: cover;
    background-position: center;
}
.arge-page-header .overlay {
    background: linear-gradient(to bottom, rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.75));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.arge-page-header .container {
    position: relative;
    z-index: 2;
}
.arge-page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.arge-page-header p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto 30px;
    font-weight: 300;
}
.arge-page-header .btn-primary {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #ff6b00;
    border: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.arge-content {
    padding: 80px 0;
    background-color: #fff;
}
.arge-intro-text {
    margin-bottom: 60px;
}
.arge-intro-text h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 25px;
    border-left: 5px solid #ff6b00;
    padding-left: 20px;
}
.arge-intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.arge-engineering-section {
    margin-bottom: 70px;
}
.arge-engineering-section h3 {
    color: #2c3e50;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
.arge-engineering-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.arge-engineering-section .row {
    margin-top: 30px;
}

.arge-analysis-box {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2c3e50;
    margin-bottom: 30px;
}
.arge-analysis-box h4 {
    color: #333;
    margin-bottom: 20px;
}
.arge-analysis-list {
    list-style-type: none;
    padding: 0;
}
.arge-analysis-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}
.arge-analysis-list i {
    color: #ff6b00;
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.2rem;
}
.arge-analysis-list strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
}
.arge-analysis-list span {
    color: #555;
}

.arge-info-box {
    background: #eef2f7;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}
.arge-info-box h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}
.arge-info-box p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 0;
}

.arge-card {
    background: white;
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}
.arge-card h4 {
    color: #ff6b00;
    margin-bottom: 15px;
}
.arge-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.arge-advantages-section {
    background: #2c3e50;
    padding: 60px;
    border-radius: 8px;
    color: white;
}
.arge-advantages-section h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    text-align: center;
}
.arge-advantages-list {
    list-style: none;
    padding: 0;
}
.arge-advantages-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}
.arge-advantages-list i {
    color: #27ae60;
    margin-right: 20px;
    font-size: 1.4rem;
}
.arge-advantages-list strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.arge-advantages-list span {
    font-size: 0.95rem;
    opacity: 0.8;
}


/* AR-GE CTA Section */
.arge-cta-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #eee;
}
.arge-cta-section h3 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}
.arge-cta-section p {
    color: #666;
    max-width: 750px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}
.arge-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.arge-cta-btn-primary {
    background-color: #ff6b00;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    transition: transform 0.2s;
}
.arge-cta-btn-outline {
    background-color: transparent;
    border: 2px solid #2c3e50;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 4px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}


/* Landing Page Styles */
.landing-detail {
    padding: 80px 0;
}

.landing-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.landing-main {
    flex: 2;
    min-width: 300px;
}

.landing-sidebar-col {
    flex: 1;
    min-width: 250px;
}

.service-featured-image {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.service-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #222;
}

.service-text .content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.why-us-box {
    margin-top: 40px;
    background: #f9f9f9;
    padding: 30px;
    border-left: 4px solid #ff6b00;
    border-radius: 4px;
    color: #333;
}

.why-us-box h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222;
}

.why-us-box p {
    margin-bottom: 15px;
    color: #555;
}

.why-us-list {
    list-style: none;
    padding: 0;
    color: #555;
}

.why-us-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.why-us-list li span {
    color: #ff6b00;
    margin-right: 10px;
    font-weight: bold;
}

.service-sidebar {
    background: #fff;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    position: sticky;
    top: 100px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    color: #333;
}

.sidebar-title {
    margin-bottom: 20px;
    font-size: 1.2rem;
    border-bottom: 2px solid #ff6b00;
    padding-bottom: 10px;
    display: inline-block;
    color: #222;
}

.sidebar-text {
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.btn-cta-call {
    display: block;
    text-align: center;
    margin-bottom: 15px;
    background: #ff6b00;
    color: white;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.btn-cta-whatsapp {
    display: block;
    text-align: center;
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.sidebar-region {
    margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.sidebar-region h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #222;
}

.sidebar-region p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.footer-credit {
    margin-top: 10px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-credit a {
    color: inherit;
    text-decoration: none;
}

/* Home About Section */
.home-about-section h2 {
    color: #ffffff !important;
}

.home-about-section p {
    color: #ffffff !important;
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto 30px;
}

/* Hero Slider Styles - Added Fix */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    background-color: #000;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0 !important;
    display: block;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    background-size: cover;
    background-position: center;
    display: none;
    align-items: center; /* Center content vertically */
    justify-content: center; /* Center content horizontally */
    margin: 0 !important;
    padding: 0 !important;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-slide.active {
    display: flex !important;
    animation: fadeEffect 1s;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 15px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.prev-slide, .next-slide {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    pointer-events: auto;
    backdrop-filter: blur(5px);
}

.prev-slide:hover, .next-slide:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

@keyframes fadeEffect {
    from {opacity: 0.4}
    to {opacity: 1}
}

@media (max-width: 768px) {
    .hero-slider, .hero {
        height: auto;
        min-height: 500px;
    }
}

