/*
Theme Name: Cabinet Hochman
Theme URI: https://hochman.fr
Author: Your Name
Description: Custom theme for Cabinet Hochman law firm
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: cabinet-hochman
*/

/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Styles pour les sections */
.section-padded {
    padding: 60px 0; /* Ajustez le padding selon vos préférences */
}

.container {
    max-width: 1200px; /* Largeur maximale du contenu */
    margin: 0 auto; /* Centre le contenu horizontalement */
    padding: 0 20px; /* Padding horizontal pour éviter que le contenu ne touche les bords sur mobile */
}

/* Styles pour les titres en blanc */
.white-text {
    color: #ffffff !important; /* Couleur blanche pour le texte */
}

/* Styles pour les fonds sombres (si vous les utilisez) */
.bg-dark {
    background-color: #333333; /* Exemple de couleur de fond sombre */
    color: #ffffff; /* Assurez-vous que le texte est lisible sur le fond sombre */
}

/* Styles pour les cartes de domaines et d'expertise */
.domains-grid,
.expertise-grid,
.blog-posts-grid,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.domain-card,
.expertise-card,
.blog-card,
.testimonial-card {
    background-color: #f9f9f9; /* Couleur de fond des cartes */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.domain-card h3,
.expertise-card h3 {
    color: #333333; /* Couleur des titres des cartes */
    margin-bottom: 15px;
}

.domain-card p,
.expertise-card p,
.testimonial-card p {
    color: #666666; /* Couleur du texte des cartes */
    line-height: 1.6;
}

.read-more {
    display: inline-block;
    margin-top: 20px;
    color: #007bff; /* Couleur du lien "Lire la suite" */
    text-decoration: none;
    font-weight: bold;
}

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

/* Styles pour le CTA final */
.cta-final {
    text-align: center;
    background-color: #0056b3; /* Couleur de fond du CTA final */
    color: #ffffff;
}

.cta-final .cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-final .cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.cta-buttons .cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-buttons .primary {
    background-color: #ffffff;
    color: #0056b3;
    margin-right: 15px;
}

.cta-buttons .primary:hover {
    background-color: #e0e0e0;
}

.cta-buttons .secondary {
    background-color: #28a745; /* Couleur pour WhatsApp */
    color: #ffffff;
}

.cta-buttons .secondary:hover {
    background-color: #218838;
}

/* Styles pour les témoignages */
.testimonials-results .testimonial-card {
    background-color: #ffffff;
    color: #333333;
    text-align: left;
}

.testimonials-results .testimonial-author {
    font-style: italic;
    margin-top: 15px;
    color: #555555;
}

/* Styles pour la section blog */
.blog-section .blog-card {
    text-align: left;
}

.blog-section .post-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
}

.blog-section .entry-title a {
    color: #333333;
    text-decoration: none;
}

.blog-section .entry-title a:hover {
    text-decoration: underline;
}

.blog-section .entry-excerpt {
    color: #666666;
    font-size: 0.9em;
}

.blog-section .button-container {
    text-align: center;
    margin-top: 40px;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
}

a {
    text-decoration: none;
}

/* Header Styles */
.site-header {
    background-color: #fff;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.site-logo img {
    height: 40px;
}

/* Mobile menu button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #003366;
    cursor: pointer;
}

.main-navigation ul {
    display: flex;
    list-style: none;
}

.main-navigation li {
    margin-left: 20px;
}

.main-navigation a {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #003366;
}

/* Responsive styles for header */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: 0 5px 5px rgba(0,0,0,0.1);
    }
    
    .main-navigation.active {
        max-height: 300px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        padding: 0;
    }
    
    .main-navigation li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    
    .main-navigation a {
        display: block;
        padding: 15px;
    }
    
    .social-icons {
        display: none;
    }
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #003366;
    font-size: 16px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff7f00;
}

.language-switcher {
    display: flex;
    align-items: center;
}

.language-switcher a {
    margin-left: 10px;
    color: #333;
    font-size: 14px;
}

/* Hero Banner */
.hero-banner {
    height: 100vh;
    background-image: url('assets/images/paris-seine.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 70%;
    }
}

.hero-logo img {
    width: 80%;
}

.hero-text-container {
    flex: 1;
    text-align: left;
    padding-left: 40px;
}

.hero-text-container h2 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 300;
    color: rgb(247, 241, 241);
    font-size: 22px;
    line-height: 33px;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 300;
    color: rgb(255, 248, 248);
    font-size: 80px;
    line-height: 80px;
}

.cta-button {
    display: inline-block;
    background-color: #ff7f00;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e67300;
}

/* Media query for responsive layout */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text-container {
        text-align: center;
        padding-left: 0;
        margin-top: 30px;
    }
}

/* Introduction Section */
.intro-section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.4;
}

.intro-text {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #555;
}

/* Services Section */
.services-section, .droit-societes, .testimonials-results {
    padding: 60px 20px;
    background-color: #ededed;
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    background-color: #003366;
}

/* Updated Service Cards to match the button style in the image */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    display: block;
    background-color: #003366;
    color: #fff;
    padding: 15px 25px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s;
    width: auto;
    min-width: 200px;
}

.service-card:hover {
    background-color: #002244;
}

.service-card .service-title {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

/* Make sure the navigation menu items are properly styled */
.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-navigation li {
    margin-right: 20px;
}

.main-navigation a {
    color: #003366;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #ff7f00;
}

/* Responsive styles for header */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        box-shadow: 0 5px 5px rgba(0,0,0,0.1);
    }
    
    .main-navigation.active {
        max-height: 300px;
    }
    
    .main-navigation ul {
        flex-direction: column;
        padding: 0;
    }
    
    .main-navigation li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    
    .main-navigation a {
        display: block;
        padding: 15px;
    }
    
    .social-icons {
        display: none;
    }
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #003366;
    font-size: 16px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff7f00;
}

.language-switcher {
    display: flex;
    align-items: center;
}

.language-switcher a {
    margin-left: 10px;
    color: #333;
    font-size: 14px;
}

/* Hero Banner */
.hero-banner {
    height: 100vh;
    background-image: url('assets/images/paris-seine.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    max-width: 700px;
    width: 100%;
    height: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo img {
    width: 80%;
}

.hero-text-container {
    flex: 1;
    text-align: left;
    padding-left: 40px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.cta-button {
    display: inline-block;
    background-color: #ff7f00;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e67300;
}

/* Media query for responsive layout */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text-container {
        text-align: center;
        padding-left: 0;
        margin-top: 30px;
    }
}

/* Introduction Section */
.intro-section {
    padding: 80px 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    line-height: 1.4;
}

.intro-text {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #555;
}

/* Services Section */
.services-section, .droit-societes, .testimonials-results {
    padding: 60px 20px;
    background-color: #ededed;
    color: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    background-color: #003366;
}

/* Styles pour la section "Nos domaines d'excellence" */
.excellence-domains .domains-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Centre les cartes horizontalement */
    gap: 20px; /* Espace entre les cartes */
    margin-top: 30px;
}

.excellence-domains .domain-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-sizing: border-box; /* Assure que le padding et la bordure sont inclus dans la largeur */
    flex: 1 1 calc(33.33% - 20px); /* Permet aux cartes de s'étirer/rétrécir, avec une base d'environ 1/3 de la largeur moins l'espace */
    min-width: 280px; /* Largeur minimale pour les cartes */
    max-width: 350px; /* Largeur maximale pour les cartes */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.excellence-domains .domain-card h3 {
    color: #333;
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.5em;
}

.excellence-domains .domain-card p {
    color: #666;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.excellence-domains .domain-card .read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.excellence-domains .domain-card .read-more:hover {
    color: #0056b3;
}



.excellence-domains .domain-icon {
    font-size: 3em; /* Taille de l'icône */
    color: #007bff; /* Couleur de l'icône */
    margin-bottom: 15px;
}

.services-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #003366;
    border: 1px solid #fff;
    padding: 20px;
    margin: 10px;
    width: calc(25% - 20px);
    text-align: center;
    transition: background-color 0.3s;
}

.service-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Philosophy Section */
.philosophy-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

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

.philosophy-text {
    margin-bottom: 20px;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 20px;
    background-color: #003366;
    color: #fff;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #003366;
    border: 1px solid #fff;
    padding: 30px;
    margin: 15px;
    width: calc(33.33% - 30px);
    text-align: center;
    position: relative;
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    position: relative;
    padding: 80px 0;
    background-color: #f5f5f5;
    color: #333;
}

.contact-container {
    position: relative;
    z-index: 2;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info {
    flex: 1;
    padding-right: 40px;
}

.contact-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-text {
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 30px;
}

.contact-form {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

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

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

.form-group textarea {
    height: 120px;
}

.form-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.form-submit {
    background-color: #ff7f00;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
}

.form-submit:hover {
    background-color: #e67300;
}

/* Location Section */
.location-section {
    position: relative;
    padding: 60px 20px;
    background-image: url('assets/images/arc-de-triomphe.jpeg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

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

.location-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-text {
    flex: 1;
    text-align: left;
}

.location-text p {
    margin-bottom: 5px;
    font-size: 16px;
}

.location-buttons {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-left: 40px;
}

.cta-button-orange {
    display: inline-block;
    background-color: #ff7f00;
    color: #fff !important;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin: 10px;
    width: 80%;
    text-align: center;
}

.cta-button-orange:hover {
    background-color: #e67300;
}

/* Responsive styles for location section */
@media (max-width: 992px) {
    .location-content {
        flex-direction: column;
    }
    
    .location-text {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .location-buttons {
        padding-left: 0;
        width: 100%;
    }
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button-orange {
    display: inline-block;
    background-color: #ff7f00;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin: 10px;
}

.cta-button-orange:hover {
    background-color: #e67300;
}

/* Footer */
.site-footer {
    background-color: #fff;
    color: #333;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

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

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #333;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-card {
        width: calc(50% - 20px);
    }
    
    .testimonial-card {
        width: calc(50% - 30px);
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 80%;
        margin-top: 25px;
    }
    
    .hero-title {
        font-size: 50px;
        line-height: 70px;
    }
    
    .service-card,
    .testimonial-card {
        width: 100%;
    }
}


.map-container {
    position: relative;
    overflow: hidden;
    padding-top: 40%; /* This creates a 16:9 aspect ratio */
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 768px) {
    .map-container {
        padding-top: 60%; /* Increase height proportion on smaller screens */
    }
}

@media (max-width: 480px) {
    .map-container {
        padding-top: 75%; /* Further increase height proportion on mobile */
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
        line-height: 55px;
    }
}

/* Form validation styles */
.error-message {
    color: #d9534f;
    font-size: 12px;
    margin-top: 5px;
    display: block;
}

.form-success {
    background-color: #dff0d8;
    color: #3c763d;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.form-error {
    background-color: #f2dede;
    color: #a94442;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover,
.close-modal:focus {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

.modal h2 {
    color: #003366;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.modal-body {
    margin-top: 20px;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-body strong {
    font-weight: 600;
    color: #003366;
}
/* Styles pour les sections de services détaillées */
.services-details-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

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

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

.service-detail-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-detail-icon {
    flex: 0 0 200px;
    overflow: hidden;
}

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

.service-detail-card:hover .service-detail-icon img {
    transform: scale(1.05);
}

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

.service-detail-title {
    color: #003366;
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.service-detail-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #ff7f00;
}

.service-detail-description {
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-detail-link {
    align-self: flex-start;
    color: #ff7f00;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

.service-detail-link i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.service-detail-link:hover {
    color: #003366;
}

.service-detail-link:hover i {
    transform: translateX(5px);
}

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

@media (max-width: 767px) {
    .service-detail-card {
        flex-direction: column;
    }
    
    .service-detail-icon {
        flex: 0 0 200px;
        width: 100%;
    }
}
/* Combined Cabinet Info and Avocat Profile Section */
.combined-info-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

.combined-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.cabinet-info-wrapper, 
.avocat-profile-wrapper {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    padding-bottom: 20px;
}

.cabinet-text {
    padding: 25px 25px 15px;
}

.cabinet-title {
    color: #003366;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.cabinet-subtitle {
    color: #555;
    font-size: 1.1rem;
}

.cabinet-map {
    margin-bottom: 20px;
}

.cabinet-cta {
    padding: 0 25px;
    text-align: center;
}

.avocat-content {
    display: flex;
    flex-direction: column;
}

.avocat-image {
    width: 100%;
}

.avocat-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.avocat-info {
    padding: 25px;
}

.avocat-name {
    color: #003366;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.avocat-description {
    color: #555;
    margin-bottom: 20px;
}

.avocat-contact-btn {
    display: inline-block;
    background-color: #ff7f00;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
    margin-bottom: 20px;
    text-align: center;
}

.avocat-contact-btn:hover {
    background-color: #e67300;
}

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

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    color: #003366;
    transition: background-color 0.3s;
    border-radius: 5px;
}

.contact-item:hover {
    background-color: #f0f0f0;
}

.contact-item i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.contact-item span {
    font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .combined-container {
        flex-direction: column;
    }
    
    .avocat-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}