/* ================================
   BRAND COLORS - ACROTEC ÉTANCHÉITÉ
   Primary: #242835 (Dark Navy)
   Accent: #CB1E24 (Burgundy)
   ================================ */

:root {
    --primary-color: #242835 !important;
    --accent-color: #CB1E24 !important;
    --color-primary: #242835 !important;
    --color-accent: #CB1E24 !important;
    --secondary-color: #34495E !important;
    --color-secondary: #34495E !important;
    --color-white: #FFFFFF !important;
    --color-light: #F8F9FA !important;
}

/*
 * Acrotec Étanchéité - Main Stylesheet
 * Custom styles for theme components
 */

/* ================================================
   HEADER STYLES
   ================================================ */

.header-top {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 10px 0;
    font-size: 14px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact span {
    margin-right: 20px;
}

.header-contact a,
.header-social a {
    color: var(--color-white);
    transition: opacity var(--transition-fast);
}

.header-contact a:hover,
.header-social a:hover {
    opacity: 0.8;
}

.header-social a {
    margin-left: 15px;
    font-size: 18px;
}

.header-main {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    flex: 0 0 auto;
}

.site-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
}

.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    margin: 0 15px;
}

.primary-menu a {
    color: var(--color-text);
    font-weight: 500;
    padding: 10px 0;
    display: block;
    position: relative;
}

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

.primary-menu a:hover::after,
.primary-menu .current-menu-item a::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 5px 0;
    transition: all var(--transition-normal);
}

.header-cta {
    flex: 0 0 auto;
}

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

.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
    background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="1920" height="600"%3E%3Crect fill="%2334495E" width="1920" height="600"/%3E%3Ctext fill="%23ECF0F1" font-family="sans-serif" font-size="72" dy="10.5" font-weight="bold" x="50%25" y="50%25" text-anchor="middle"%3EAcrotec Étanchéité%3C/text%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(52, 73, 94, 0.7);
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: var(--spacing-xl) var(--spacing-md);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    color: var(--color-background);
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ================================================
   SECTIONS
   ================================================ */

.section-padding {
    padding: var(--spacing-xl) 0;
}

.section-header {
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--color-background);
}

/* ================================================
   SERVICE CARDS
   ================================================ */

.services-grid,
.projects-grid,
.benefits-grid {
    margin-top: var(--spacing-lg);
}

.service-card,
.benefit-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-normal);
}

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

.service-icon,
.benefit-card i {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
}

.service-description {
    margin-bottom: var(--spacing-md);
}

.service-link {
    color: var(--color-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ================================================
   PROJECT CARDS
   ================================================ */

.project-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

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

.project-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.project-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.project-card:hover .project-thumbnail img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(243, 156, 18, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    color: var(--color-white);
    font-size: 2rem;
}

.project-content {
    padding: var(--spacing-md);
}

.project-title a {
    color: var(--color-accent);
    transition: color var(--transition-fast);
}

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

.project-location,
.project-date {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-excerpt {
    margin: var(--spacing-sm) 0;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature-item {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.feature-item i {
    font-size: 2rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

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

/* ================================================
   CTA SECTION
   ================================================ */

.cta-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================
   PAGE HEADER
   ================================================ */

.page-header {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}

.page-description {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-md);
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: var(--color-white);
    opacity: 0.8;
}

.breadcrumbs a:hover {
    opacity: 1;
}

.separator {
    opacity: 0.6;
}

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

.site-footer {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.footer-main {
    padding: var(--spacing-xl) 0;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.footer-widget-column h3 {
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.footer-menu a:hover,
.footer-contact a:hover {
    color: var(--color-white);
}

.footer-locations,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-locations li,
.footer-contact li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: var(--spacing-md);
}

.footer-social a {
    color: var(--color-white);
    font-size: 1.5rem;
    transition: transform var(--transition-fast);
}

.footer-social a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: var(--spacing-md) 0;
    text-align: center;
}

.footer-bottom-content {
    font-size: 0.9rem;
}

/* ================================================
   CONTACT PAGE
   ================================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
}

.contact-info {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-detail-item {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

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

.contact-form-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-form .form-group {
    margin-bottom: var(--spacing-md);
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

/* ================================================
   RESPONSIVE DESIGN
   ================================================ */

@media (max-width: 992px) {
    .header-main-content {
        flex-wrap: wrap;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        width: 100%;
        order: 3;
    }
    
    .primary-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: var(--spacing-md);
    }
    
    .primary-menu.active {
        display: flex;
    }
    
    .primary-menu li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    
    .primary-menu a {
        padding: 15px;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .header-top-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-contact {
        text-align: center;
    }
    
    .header-contact span {
        display: block;
        margin: 5px 0;
    }
    
    .footer-widgets {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* ================================
   PAGE TEMPLATE STYLES
   ================================ */

.page-wrapper {
    padding-bottom: 0;
}

.page-header {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: cover;
    background-position: center;
    padding: 100px 0 60px;
    margin-bottom: 0;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 152, 18, 0.9) 0%, rgba(127, 140, 141, 0.85) 100%);
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.breadcrumbs {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #fff;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

/* Page Content Area */
.page-content-area {
    background: #f8f9fa;
    padding: 60px 0;
}

.page-content-inner {
    max-width: 900px;
    margin: 0 auto;
}

.page-article {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.entry-content {
    line-height: 1.8;
    color: #333;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.entry-content h2 {
    font-size: 2rem;
    position: relative;
    padding-left: 20px;
}

.entry-content h2:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 3px;
}

.entry-content h3 {
    font-size: 1.5rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.entry-content ul,
.entry-content ol {
    margin: 20px 0 30px 0;
    padding-left: 0;
    list-style: none;
}

.entry-content ul li,
.entry-content ol li {
    padding: 12px 0 12px 35px;
    position: relative;
    border-bottom: 1px solid #eee;
    font-size: 1.05rem;
}

.entry-content ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1rem;
}

.entry-content ol {
    counter-reset: item;
}

.entry-content ol li {
    counter-increment: item;
}

.entry-content ol li:before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: #fff;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
}

.entry-content strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.entry-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.entry-content a:hover {
    border-bottom-color: var(--primary-color);
}

/* Page CTA Section */
.page-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e67e22 100%);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(247, 152, 18, 0.3);
}

.page-cta-content h3 {
    color: #fff;
    font-size: 2rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}

.page-cta-content p {
    color: rgba(255,255,255,0.95);
    font-size: 1.15rem;
    margin: 0 0 30px 0;
}

.page-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-cta .btn {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #fff;
}

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

.page-cta .btn-primary:hover {
    background: transparent;
    color: #fff;
}

.page-cta .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-article {
        padding: 30px 20px;
    }
    
    .entry-content h1 {
        font-size: 1.8rem;
    }
    
    .entry-content h2 {
        font-size: 1.5rem;
    }
    
    .page-cta {
        padding: 30px 20px;
    }
    
    .page-cta-content h3 {
        font-size: 1.5rem;
    }
    
    .page-cta-buttons {
        flex-direction: column;
    }
    
    .page-cta .btn {
        width: 100%;
    }
}

/* ================================
   SMOOTH SCROLL FOR ANCHORS
   ================================ */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Offset for fixed header */
}

.service-anchor {
    scroll-margin-top: 100px;
}

/* Anchor link styling */
a[href^="#"] {
    scroll-behavior: smooth;
}

/* ================================
   PAGE TEMPLATE HERO - HOMEPAGE STYLE
   ================================ */

.hero-page {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-breadcrumbs {
    margin-top: 20px;
    font-size: 1rem;
}

.hero-breadcrumbs a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-breadcrumbs a:hover {
    color: #fff;
}

.hero-breadcrumbs .separator {
    color: rgba(255,255,255,0.6);
    margin: 0 10px;
}

.hero-breadcrumbs .current {
    color: #fff;
    font-weight: 600;
}

/* Page Content Section - Styled like homepage sections */
.page-content-section {
    background: #f8f9fa;
}

.page-article {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

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

.styled-content h1,
.styled-content h2,
.styled-content h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.styled-content h1 {
    font-size: 2.8rem;
    border-left: 6px solid var(--primary-color);
    padding-left: 25px;
    margin-bottom: 30px;
}

.styled-content h2 {
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 15px;
}

.styled-content h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.styled-content h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.styled-content p {
    margin-bottom: 1.8rem;
    line-height: 1.9;
}

.styled-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.styled-content ul,
.styled-content ol {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.styled-content ul li,
.styled-content ol li {
    padding: 15px 0 15px 40px;
    position: relative;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.styled-content ul li:hover,
.styled-content ol li:hover {
    padding-left: 45px;
    background: #f8f9fa;
}

.styled-content ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
    background: rgba(247, 152, 18, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.styled-content ol {
    counter-reset: item;
}

.styled-content ol li {
    counter-increment: item;
}

.styled-content ol li:before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(247, 152, 18, 0.3);
}

.styled-content blockquote {
    margin: 30px 0;
    padding: 25px 30px 25px 80px;
    background: linear-gradient(135deg, rgba(247, 152, 18, 0.05), rgba(52, 152, 219, 0.05));
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    position: relative;
    font-style: italic;
    color: var(--secondary-color);
    font-size: 1.15rem;
}

.styled-content blockquote:before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 25px;
    top: 25px;
    color: var(--primary-color);
    font-size: 2rem;
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-page {
        min-height: 300px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-article {
        padding: 30px 20px;
    }
    
    .styled-content h1 {
        font-size: 2rem;
    }
    
    .styled-content h2 {
        font-size: 1.6rem;
    }
    
    .styled-content h3 {
        font-size: 1.3rem;
    }
}

/* ================================
   MODERN ZONE D'INTERVENTION SECTION
   ================================ */

.service-area {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.service-area:before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(247, 152, 18, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 50px 0;
    position: relative;
    z-index: 1;
}

.location-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.location-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(247, 152, 18, 0.25);
    border-color: var(--primary-color);
}

.location-card:hover:before {
    transform: scaleX(1);
}

.location-featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #fff;
    border: none;
    grid-column: span 2;
}

.location-featured:before {
    display: none;
}

.location-featured .location-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.location-featured .location-name,
.location-featured .location-info {
    color: #fff;
}

.location-featured:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(247, 152, 18, 0.4);
}

.location-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(247, 152, 18, 0.1), rgba(52, 152, 219, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.location-card:hover .location-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    box-shadow: 0 8px 20px rgba(247, 152, 18, 0.3);
}

.location-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 8px 0;
}

.location-info {
    color: #7F8C8D;
    font-size: 0.95rem;
    margin: 0;
    font-weight: 500;
}

.location-badge {
    display: inline-block;
    background: rgba(255,255,255,0.25);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Coverage Info Cards */
.coverage-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.coverage-card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.coverage-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(247, 152, 18, 0.2);
    border-left-color: var(--primary-color);
}

.coverage-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    min-width: 50px;
    transition: all 0.3s ease;
}

.coverage-card:hover i {
    transform: scale(1.1);
    color: var(--accent-color);
}

.coverage-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 5px 0;
}

.coverage-content p {
    color: #7F8C8D;
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
    .location-featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .location-card {
        padding: 20px 15px;
    }
    
    .location-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .location-name {
        font-size: 1.1rem;
    }
    
    .coverage-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .coverage-card {
        padding: 20px;
    }
}

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

/* ================================
   PROJECT CARDS - THUMBNAIL BELOW TITLE
   ================================ */

.project-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(247, 152, 18, 0.2);
}

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

.project-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    order: 1;
}

.project-title a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.project-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin: 0 0 20px 0;
    order: 2;
}

.project-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 152, 18, 0.9), rgba(52, 152, 219, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-link {
    color: #fff;
    font-size: 2rem;
    text-decoration: none;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.project-card:hover .project-link {
    transform: scale(1);
}

.project-categories {
    margin-bottom: 15px;
    order: 0;
}

.project-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-right: 5px;
    text-decoration: none;
}

.project-meta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    order: 3;
}

.project-location,
.project-date {
    color: #7F8C8D;
    font-size: 0.9rem;
}

.project-location i,
.project-date i {
    color: var(--primary-color);
    margin-right: 5px;
}

.project-services-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 15px;
    order: 4;
}

.service-tag {
    background: rgba(247, 152, 18, 0.1);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    order: 5;
}

.project-content .btn {
    align-self: flex-start;
    order: 6;
    margin-top: auto;
}

/* Related Projects Section */
.related-projects {
    background: #f8f9fa;
}

.related-projects .section-title {
    margin-bottom: 40px;
}

.related-projects .section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 20px auto 0;
    border-radius: 2px;
}

/* ================================
   SERVICES PAGE - MODERN UI
   ================================ */

.services-overview {
    background: #fff;
}

/* Service Detailed Sections */
.service-detailed {
    position: relative;
}

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

.service-detailed-reverse {
    direction: rtl;
}

.service-detailed-reverse > * {
    direction: ltr;
}

.service-detailed-content {
    padding: 0;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(247, 152, 18, 0.3);
}

.service-detailed-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 20px 0;
}

.service-detailed-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.service-detailed-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 30px 0 20px 0;
}

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

.service-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.05rem;
    color: #333;
    border-bottom: 1px solid #eee;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
}

.service-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(247, 152, 18, 0.1);
    padding: 12px 20px;
    border-radius: 30px;
    border: 2px solid var(--primary-color);
}

.feature-badge i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-badge span {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.service-detailed-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    position: relative;
}

.service-detailed-image::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(247, 152, 18, 0.2), rgba(52, 152, 219, 0.2));
    border-radius: 50%;
    z-index: -1;
}

.service-detailed-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.service-detailed:hover .service-detailed-image img {
    transform: scale(1.05);
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-grid {
    margin-top: 40px;
}

.feature-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(247, 152, 18, 0.2);
    border-top-color: var(--primary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(247, 152, 18, 0.1), rgba(52, 152, 219, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    transform: rotate(360deg) scale(1.1);
}

.feature-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 10px 0;
}

.feature-box p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .service-detailed-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detailed-reverse {
        direction: ltr;
    }
    
    .features-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-detailed-title {
        font-size: 2rem;
    }
    
    .service-icon-large {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .features-grid.grid-4 {
        grid-template-columns: 1fr;
    }
    
    .feature-box {
        padding: 30px 20px;
    }
}

/* ================================
   FIX HERO PAGE BACKGROUND
   ================================ */

.hero-page {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    position: relative;
}

.hero-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 152, 18, 0.85) 0%, rgba(52, 73, 94, 0.85) 100%);
    z-index: 1;
}

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

.hero-page .hero-content {
    color: #fff;
}

.hero-page .hero-title {
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-page .hero-subtitle {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    margin: 20px 0;
}

.hero-page .section-badge {
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.4);
}

/* Services Overview Section */
.services-overview {
    background: #fff;
    position: relative;
    z-index: 3;
}

/* Fix service cards visibility */
.services-overview .service-card {
    background: #fff;
    position: relative;
    z-index: 1;
}

/* ================================
   CONTACT PAGE STYLING
   ================================ */

.contact-section {
    background: #f8f9fa;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info */
.contact-info {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 15px 0;
}

.contact-intro {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.contact-info-items {
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #fff;
    font-size: 1.4rem;
}

.contact-details h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 8px 0;
}

.contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-color);
}

.contact-features {
    background: rgba(247, 152, 18, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.feature-item span {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.contact-form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 10px 0;
}

.contact-form-header p {
    color: #666;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

/* Contact Form 7 Styling */
.contact-form-content .wpcf7 {
    margin: 0;
}

.contact-form-content .wpcf7-form {
    display: grid;
    gap: 20px;
}

.contact-form-content .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.contact-form-content input[type="text"],
.contact-form-content input[type="email"],
.contact-form-content input[type="tel"],
.contact-form-content textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

.contact-form-content input[type="text"]:focus,
.contact-form-content input[type="email"]:focus,
.contact-form-content input[type="tel"]:focus,
.contact-form-content textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(247, 152, 18, 0.1);
}

.contact-form-content textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-content .wpcf7-not-valid {
    border-color: #dc3545 !important;
}

.contact-form-content .wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

.contact-form-content .wpcf7-spinner {
    margin-left: 10px;
}

.contact-form-content .wpcf7-response-output {
    margin: 20px 0 0 0;
    padding: 15px 20px;
    border-radius: 8px;
    border: none;
}

.contact-form-content .wpcf7-mail-sent-ok {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.contact-form-content .wpcf7-mail-sent-ng,
.contact-form-content .wpcf7-validation-errors {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.contact-form-content .wpcf7-submit {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(247, 152, 18, 0.3);
}

.contact-form-content .wpcf7-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 152, 18, 0.4);
}

.contact-form-content .wpcf7-submit:active {
    transform: translateY(0);
}

.contact-privacy {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-privacy i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-privacy span {
    color: #666;
    font-size: 0.9rem;
}

/* Service Area Section on Contact Page */
.contact-service-area {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-cities {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.city-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.city-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(247, 152, 18, 0.2);
}

.city-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.city-item span {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        position: static;
    }
    
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .service-cities {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .service-cities {
        grid-template-columns: 1fr;
    }
}

/* ================================
   ABOUT PAGE STYLING
   ================================ */

.about-story {
    background: #fff;
}

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

.about-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

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

.story-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

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

/* Team Section */
.about-team {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team-grid {
    margin-top: 50px;
}

.team-member {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(247, 152, 18, 0.2);
}

.member-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-content {
    padding: 30px;
}

.member-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 5px 0;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    margin: 0 0 15px 0;
}

.member-bio {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Values Section */
.about-values {
    background: #fff;
}

.values-grid {
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(247, 152, 18, 0.2);
    border-top-color: var(--primary-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(247, 152, 18, 0.1), rgba(52, 152, 219, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    transform: rotate(360deg) scale(1.1);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 0 10px 0;
}

.value-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Stats Section */
.about-stats {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(247, 152, 18, 0.9), rgba(52, 73, 94, 0.9));
}

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

.stats-grid {
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid.grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-content .section-title {
        font-size: 2rem;
    }
    
    .member-image {
        height: 250px;
    }
    
    .values-grid.grid-4,
    .stats-grid.grid-4 {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

/* ================================
   FIX CONTACT PAGE ICON COLORS
   ================================ */

.contact-info-item .contact-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

.contact-info-item .contact-icon i {
    color: #fff !important;
    font-size: 1.4rem;
}

/* ================================
   REMOVE BOX SHADOWS ON SERVICES PAGE
   ================================ */

.service-detailed .service-detailed-image {
    box-shadow: none !important;
}

.service-detailed-content {
    box-shadow: none !important;
}

.service-icon-large {
    box-shadow: none !important;
}

.services-overview .service-card {
    box-shadow: none !important;
    border: 1px solid #e9ecef;
}

.services-overview .service-card:hover {
    box-shadow: none !important;
    border-color: var(--primary-color);
}

/* ================================
   FIX MONACO CARD BACKGROUND
   ================================ */

.location-featured {
    background: #fff !important;
    color: inherit !important;
    grid-column: span 1 !important;
}

.location-featured .location-icon {
    background: linear-gradient(135deg, rgba(247, 152, 18, 0.1), rgba(52, 152, 219, 0.1)) !important;
    color: var(--primary-color) !important;
}

.location-featured .location-name,
.location-featured .location-info {
    color: var(--secondary-color) !important;
}

.location-featured .location-info {
    color: #7F8C8D !important;
}

.location-featured .location-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ================================
   FIX LOCATION CARDS - REMOVE SHADOWS & KEEP GREY HOVER
   ================================ */

.location-card {
    box-shadow: 0 3px 15px rgba(0,0,0,0.08) !important;
}

.location-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12) !important;
    border-color: #7F8C8D !important;
}

.location-icon {
    background: linear-gradient(135deg, rgba(127, 140, 141, 0.1), rgba(52, 73, 94, 0.1)) !important;
    color: #34495E !important;
    box-shadow: none !important;
}

.location-card:hover .location-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #7F8C8D, #34495E) !important;
    color: #fff !important;
    box-shadow: none !important;
}

/* ================================
   FORCE BRAND COLORS EVERYWHERE
   ================================ */

/* Logo */
.site-title,
.site-branding a {
    color: #F39C12 !important;
}

/* All Buttons */
.btn,
.btn-primary,
button,
input[type="submit"],
.wpcf7-submit,
.header-cta .btn,
a.btn {
    background: linear-gradient(135deg, #242835, #CB1E24) !important;
    color: #fff !important;
    border: none !important;
}

.btn:hover,
button:hover,
.header-cta .btn:hover {
    background: linear-gradient(135deg, #CB1E24, #242835) !important;
}

/* Outline Buttons */
.btn-outline,
.btn-secondary {
    background: transparent !important;
    color: #CB1E24 !important;
    border: 2px solid #CB1E24 !important;
}

.btn-outline:hover,
.btn-secondary:hover {
    background: #CB1E24 !important;
    color: #fff !important;
}

/* Hero Backgrounds */
.hero,
.hero-page,
.section-hero {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%) !important;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(36, 40, 53, 0.85), rgba(203, 30, 36, 0.85)) !important;
}

/* Section Badges */
.section-badge {
    background: #242835 !important;
    color: #fff !important;
}

/* CTA Sections */
.section-cta,
.cta-section {
    background: linear-gradient(135deg, #242835, #CB1E24) !important;
}

.cta-overlay {
    background: linear-gradient(135deg, rgba(36, 40, 53, 0.9), rgba(203, 30, 36, 0.9)) !important;
}
