/* Import Footlight MT Pro Font from CDN */
@import url('https://fonts.cdnfonts.com/css/footlight-mt-pro');

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

/* Apply Footlight MT Pro to all elements globally */
* {
    font-family: 'Footlight MT Pro Bold', 'Footlight MT Pro Light', serif;
}

body {
    font-family: 'Footlight MT Pro Bold', 'Footlight MT Pro Light', serif;
    line-height: 1.6;
    background-color: #e8f5e9;
}

html {
    font-family: 'Footlight MT Pro Bold', 'Footlight MT Pro Light', serif;
}

/* Specific font weights - Bold for headings and strong elements */
h1,
h2,
h3,
h4,
h5,
h6,
strong,
b,
nav ul li a,
.main-header nav ul li a,
.page-header h1,
.btn-carousel,
.btn-view,
.btn-details {
    font-family: 'Footlight MT Pro Bold', serif;
    font-weight: bold;
}

/* Light weight for regular text */
p,
span,
div,
a,
li,
td,
th,
label,
input,
textarea,
select,
.page-header p,
.intro-text,
.testimonial-text,
.forum-text,
.contact-form,
.form-control {
    font-family: 'Footlight MT Pro Light', serif;
    font-weight: normal;
}

/* Apply gold color only to navigation menus and h1 titles */
nav ul li a,
.main-header nav ul li a,
h1,
h2 {
    color: #be8c0f !important;
}

/* Keep page-header h1 in gold */
.page-header h1 {
    color: #fff !important;
}

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

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #006b00 0%, #005000 100%);
    color: #be8c0f;
    padding: 80px 0 60px;
    text-align: center;
    margin-top: 0;
}

.page-header h1 {
    font-size: 3em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #be8c0f;
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.9;
    color: #be8c0f;
}

/* Header Styles */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.top-bar {
    width: 100%;
}

/* Top Bar */
.top-bar {
    background-color: #2c3e50;
    color: #fff;
    padding: 5px 0;
    font-size: 0.9em;
}

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

.top-bar .contact-info {
    display: flex;
    gap: 20px;
}

.top-bar .contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar .contact-info i {
    color: #006b00;
}

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

.social-links a {
    color: #fff;
    font-size: 1em;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #006b00;
}


/* Main Header */
.main-header {
    background-color: #fff;
    padding: 0;
    height: 80px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
}

.main-header .logo {
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.main-header .logo h1 {
    color: #006b00;
    font-size: 2em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-header .logo a {
    text-decoration: none;
}

.main-header nav,
.main-header .main-nav {
    height: 100%;
}

.main-header .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8em;
    color: #006b00;
    cursor: pointer;
    padding: 10px 15px;
    transition: color 0.3s ease;
    z-index: 1001;
    position: relative;
}

.main-header .mobile-menu-toggle:hover {
    color: #005000;
}

.main-header .mobile-menu-toggle:focus {
    outline: 2px solid #006b00;
    outline-offset: 2px;
    border-radius: 4px;
}

.main-header nav>ul {
    list-style: none;
    display: flex;
    gap: 0;
    height: 100%;
}

.main-header nav ul li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0 25px;
    height: 100%;
}

/* Hide icons in desktop menu */
.main-header nav ul li a i:first-child,
.main-header .main-nav ul li a i:first-child {
    display: none;
}

/* Mobile Menu Header - Hidden on desktop */
.mobile-menu-header {
    display: none;
}

.main-header nav ul li a:hover,
.main-header nav ul li a.active {
    background-color: #006b00;
    color: #fff !important;
}

/* Dropdown parent link styling - Premium */
.main-header nav ul li.dropdown > a {
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header nav ul li.dropdown > a i:last-child {
    margin-left: 8px;
    font-size: 0.7em;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
}

/* Smooth dropdown reveal animation */
.main-header nav ul li.dropdown {
    position: relative;
}

/* Hover effect that extends to dropdown width */
.main-header nav ul li.dropdown > a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 100%;
    background-color: #006b00;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 0;
}

.main-header nav ul li.dropdown:hover > a::before {
    width: var(--dropdown-hover-width, 220px);
}

.main-header nav ul li.dropdown:hover > a {
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 107, 0, 0.3);
    position: relative;
    z-index: 1;
}

.main-header nav ul li.dropdown:hover > a i:last-child {
    transform: rotate(180deg) scale(1.1);
}

/* Smooth underline animation */
.main-header nav ul li.dropdown::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #006b00, #be8c0f, #006b00);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    z-index: 1;
}

.main-header nav ul li.dropdown:hover::after {
    width: var(--dropdown-hover-width, 220px);
}

/* Dropdown Styles - Premium Professional Design */
.main-header .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    background: linear-gradient(135deg, rgba(0, 34, 0, 0.47) 0%, rgba(0, 26, 0, 0.47) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    min-width: 220px;
    width: max-content;
    z-index: 1000;
    flex-direction: column;
    padding: 12px 0;
    border-radius: 0;
    border: 1px solid rgba(190, 140, 15, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    transform-origin: top center;
}

/* Animated background gradient overlay */
.main-header .dropdown-menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #006b00 0%, #be8c0f 50%, #006b00 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Premium arrow with glow effect */
.main-header .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(0, 34, 0, 0.47);
    filter: drop-shadow(0 -4px 8px rgba(0, 0, 0, 0.3));
    z-index: 2;
}

.dropdown:hover .dropdown-menu,
.main-header .dropdown-menu.show {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-menu li {
    margin: 0;
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    min-height: 56px;
    height: 56px;
}

/* Elegant separator with gradient */
.dropdown-menu li:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right, 
        transparent 0%, 
        rgba(190, 140, 15, 0.2) 20%, 
        rgba(190, 140, 15, 0.2) 80%, 
        transparent 100%
    );
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 28px;
    font-size: 0.95em;
    text-transform: none;
    color: #ffffff;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 500;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    min-height: 56px;
}

/* Animated background on hover */
.dropdown-menu li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(190, 140, 15, 0.15) 50%, 
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.dropdown-menu li a:hover::before {
    opacity: 1;
}

/* Icon styling with glow effect */
.dropdown-menu li a i:first-child {
    color: #be8c0f;
    font-size: 1.15em;
    width: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(190, 140, 15, 0.2));
}

/* Premium hover effects */
.dropdown-menu li a {
    position: relative;
}

.dropdown-menu li a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: linear-gradient(90deg, 
        rgba(190, 140, 15, 0.2) 0%, 
        rgba(190, 140, 15, 0.1) 50%,
        rgba(190, 140, 15, 0.2) 100%
    );
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    box-shadow: inset 4px 0 0 #be8c0f;
}

.dropdown-menu li a:hover {
    color: #be8c0f;
    padding-left: 32px;
    transform: translateX(6px);
}

.dropdown-menu li a:hover::after {
    opacity: 1;
}

.dropdown-menu li a:hover i:first-child {
    color: #be8c0f;
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(190, 140, 15, 0.6));
}

/* Active state with premium styling */
.dropdown-menu li a.active {
    background: linear-gradient(90deg, 
        rgba(190, 140, 15, 0.25) 0%, 
        rgba(190, 140, 15, 0.15) 100%
    );
    color: #be8c0f;
    font-weight: 600;
    box-shadow: inset 4px 0 0 #be8c0f, 
                inset 0 0 20px rgba(190, 140, 15, 0.2);
    position: relative;
}

.dropdown-menu li a.active::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #be8c0f;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(190, 140, 15, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translateY(-50%) scale(1.3);
        opacity: 0.7;
    }
}

.dropdown-menu li a.active i:first-child {
    color: #be8c0f;
    filter: drop-shadow(0 2px 6px rgba(190, 140, 15, 0.4));
}

/* Carousel Styles */
.carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full screen height */
    overflow: hidden;
    background-color: #333;
}

.carousel-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 1s ease-in-out, opacity 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
}

/* Background images for slides */
.carousel-item:nth-child(1) {
    background-image: url('images/slider/glslide01.png');
}

.carousel-item:nth-child(2) {
    background-image: url('images/slider/glslide01.png');
}

.carousel-item:nth-child(3) {
    background-image: url('images/slider/glslide01.png');
}

.carousel-item.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 1;
    animation: zoomIn 1s ease-out;
}

/* Zoom animation for background */
@keyframes zoomIn {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1);
    }
}

/* Text animations */
.carousel-item.active .carousel-caption h2 {
    animation: slideInDown 0.8s ease-out 0.2s both;
}

.carousel-item.active .carousel-caption p {
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.carousel-item.active .carousel-buttons {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-caption {
    text-align: center;
    color: #fff;
    z-index: 2;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carousel-caption h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.carousel-caption p {
    font-size: 1.2em;
    line-height: 1.6;
}

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

.btn-carousel {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9em;
}

.btn-carousel.primary {
    background-color: #006b00;
    color: #fff;
    border: 2px solid #006b00;
}

.btn-carousel.primary:hover {
    background-color: #005000;
    border-color: #005000;
}

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

.btn-carousel.secondary:hover {
    background-color: #fff;
    color: #006b00;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: #fff;
    font-size: 2em;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-control:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

/* About Section Styles */
.about-section {
    padding: 0;
    /* Remove padding to let image touch edges */
    background-color: #006b00;
    overflow: hidden;
    /* Ensure no overflow */
}

.about-content {
    display: flex;
    align-items: stretch;
    /* Stretch to fill height */
    flex-wrap: wrap;
    min-height: 500px;
    /* Minimum height for the section */
}

.about-image {
    flex: 0 0 50%;
    /* Force 50% width */
    max-width: 50%;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    /* Fill the container */
    min-height: 400px;
    /* Ensure visibility on mobile */
    background-color: #ecf0f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #bdc3c7;
    font-size: 1.2em;
    border-radius: 0;
    /* Remove radius to touch edges */
}

.image-placeholder i {
    font-size: 3em;
    margin-bottom: 10px;
}

.about-text {
    flex: 0 0 50%;
    /* Force 50% width */
    max-width: 50%;
    display: flex;
    align-items: center;
    /* Center text vertically */
    padding: 60px;
    /* Add padding inside text area */
    background-color: #006b00;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {

    .about-image,
    .about-text {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-text {
        padding: 40px 20px;
    }
}

.text-container {
    max-width: 600px;
    /* Limit text width for readability */
}

.about-text h2 {
    text-align: left;
    margin-bottom: 30px;
    color: #be8c0f;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #be8c0f;
    margin: 10px 0 0;
}

.about-text p {
    font-size: 1.1em;
    color: #fff;
    line-height: 1.8;
    font-style: italic;
}

.about-text .highlight {
    font-weight: bold;
    color: #be8c0f;
    font-size: 1.2em;
    border-left: 4px solid #be8c0f;
    padding-left: 20px;
}

/* Services Section Styles */
.services-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #2c3e50;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #006b00;
    margin: 10px auto 0;
}

.services-intro {
    text-align: center;
    max-width: 900px;
    margin: 30px auto 40px;
    font-size: 1.05em;
    color: #555;
    line-height: 1.8;
    font-style: italic;
}

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

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 107, 0, 0.2);
    border: 2px solid #006b00;
}

.service-card i {
    font-size: 3em;
    color: #006b00;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
    text-decoration: none;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    text-decoration: none;
}

.service-card:visited {
    color: inherit;
}

.service-card:link {
    color: inherit;
}

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

.btn-see-more {
    display: inline-block;
    padding: 12px 30px;
    background-color: #006b00;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-see-more:hover {
    background-color: #005000;
    transform: translateY(-2px);
}

/* Forum Section Styles (Parallax) */
.forum-section {
    background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    /* Placeholder image */
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    color: #fff;
    text-align: center;
}

.forum-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    /* Dark overlay for readability */
}

.forum-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.forum-text {
    font-size: 1.5em;
    line-height: 1.6;
    font-style: italic;
    font-family: 'Footlight MT Pro Light', serif;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 80px 0 0 0;
    background-color: #f9f9f9;
}

.testimonials-carousel {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}

.testimonials-inner {
    position: relative;
    overflow: hidden;
    min-height: 250px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    padding: 20px;
}

.testimonial-item.active {
    opacity: 1;
    position: relative;
}

.testimonial-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.quote-icon {
    font-size: 2.5em;
    color: #006b00;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author h4 {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.testimonial-author span {
    color: #006b00;
    font-size: 0.9em;
}

.testimonial-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: #006b00;
}

/* Properties Section Styles */
.properties-section {
    padding: 60px 0;
    background-color: #fff;
    /* Default white for Sale section */
}

.properties-section.rent-section {
    background-color: #f4f4f4;
    /* Light gray for Rent section */
}

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

/* Accueil — sections « Mise en vente / Mise en location » : 3 colonnes sur grands écrans */
.properties-grid.properties-grid--3-cols {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 1200px) and (min-width: 769px) {
    .properties-grid.properties-grid--3-cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

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

.property-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    color: #fff;
    font-size: 0.8em;
    font-weight: bold;
    border-radius: 3px;
    z-index: 1;
}

.badge.sale {
    background-color: #e74c3c;
}

.badge.rent {
    background-color: #3498db;
}

.property-details {
    padding: 20px;
}

.property-details h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;
}

.property-details .location {
    color: #777;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.property-details .price {
    color: #006b00;
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 15px;
}

.btn-details {
    display: inline-block;
    padding: 8px 15px;
    background-color: #2c3e50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    transition: background-color 0.3s;
}

.btn-details:hover {
    background-color: #34495e;
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(200, 252, 208, 0.75);
    /* Reduced from 0.92 to 0.75 */
}

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

.contact-content {
    display: flex;
    gap: 50px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: 'Footlight MT Pro Light', serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #006b00;
}

.btn-submit {
    background-color: #006b00;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #005000;
}

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

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

.info-item i {
    font-size: 2em;
    color: #006b00;
    min-width: 40px;
}

.info-item h4 {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 1.1em;
}

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

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding-top: 40px;
    margin-top: 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 20px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: #1a7a3e;
    margin-bottom: 20px;
    font-size: 1.2em;
    text-transform: uppercase;
}

.footer-section p {
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-section.links ul {
    list-style: none;
}

.footer-section.links ul li {
    margin-bottom: 10px;
}

.footer-section.links ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section.links ul li a:hover {
    color: #1a7a3e;
    padding-left: 5px;
}

.footer-section.contact p i {
    margin-right: 10px;
    color: #1a7a3e;
}

.footer-section.social .social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #34495e;
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

.footer-section.social .social-icons a:hover {
    background-color: #1a7a3e;
}

.footer-bottom {
    background-color: #22313f;
    padding: 15px 0;
    text-align: center;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 0.9em;
    color: #95a5a6;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Mobile devices (max-width: 768px) */
@media (max-width: 768px) {
    /* Container */
    .container {
        width: 95%;
        padding: 0 15px;
    }

    /* Page Header */
    .page-header {
        padding: 40px 0 30px;
    }

    .page-header h1 {
        font-size: 1.8em;
        margin-bottom: 10px;
    }

    .page-header p {
        font-size: 1em;
    }

    /* Top Bar */
    .top-bar {
        display: none;
    }

    /* Main Header */
    .main-header {
        padding: 12px 0;
        height: auto;
        position: relative;
    }

    .main-header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding: 0 15px;
    }

    .main-header .logo {
        flex: 1;
    }

    .main-header .logo img {
        max-height: 50px;
    }

    .main-header .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 8px;
        background-color: #f5f5f5;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 2px solid transparent;
    }

    .main-header .mobile-menu-toggle:hover {
        background-color: #e9e9e9;
        transform: scale(1.05);
    }

    .main-header .mobile-menu-toggle:active {
        transform: scale(0.95);
    }

    .main-header .mobile-menu-toggle.active {
        background-color: #006b00;
        color: #fff;
        border-color: #005000;
        box-shadow: 0 4px 12px rgba(0, 107, 0, 0.3);
    }

    .main-header .mobile-menu-toggle.active:hover {
        background-color: #005000;
    }

    /* Menu overlay background - separate element */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.6);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        pointer-events: none;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Menu panel */
    .main-header nav,
    .main-header .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        overflow-x: hidden;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        pointer-events: auto;
    }

    .main-header nav.active,
    .main-header .main-nav.active {
        right: 0;
    }

    /* Show icons in mobile menu */
    .main-header nav ul li a i:first-child,
    .main-header .main-nav ul li a i:first-child {
        display: inline-block;
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
        background: linear-gradient(135deg, #006b00 0%, #005000 100%);
        color: #fff;
        border-bottom: 3px solid #be8c0f;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .mobile-menu-logo {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-menu-logo img {
        max-height: 35px;
    }

    .mobile-menu-logo span {
        font-weight: bold;
        font-size: 1.1em;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .mobile-menu-close {
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        color: #fff;
        font-size: 1.4em;
        cursor: pointer;
        padding: 8px 12px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
    }

    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: #be8c0f;
        color: #be8c0f;
        transform: rotate(90deg) scale(1.1);
    }

    .mobile-menu-close:active {
        transform: rotate(90deg) scale(0.95);
    }

    .main-header nav ul,
    .main-header .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
        list-style: none;
        flex: 1;
        overflow-y: auto;
    }

    .main-header nav ul li,
    .main-header .main-nav ul li {
        width: 100%;
        text-align: left;
        height: auto;
        border-bottom: 1px solid #f0f0f0;
        margin: 0;
    }

    .main-header nav ul li:last-child,
    .main-header .main-nav ul li:last-child {
        border-bottom: none;
    }

    .main-header nav ul li a,
    .main-header .main-nav ul li a {
        padding: 16px 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: auto;
        min-height: 56px;
        color: #333;
        font-size: 0.95em;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        gap: 14px;
    }

    .main-header nav ul li a i:first-child,
    .main-header .main-nav ul li a i:first-child {
        width: 20px;
        text-align: center;
        color: #006b00;
        font-size: 1.1em;
    }

    .main-header nav ul li a:hover,
    .main-header .main-nav ul li a:hover {
        background: linear-gradient(90deg, #f0f7f0 0%, #e8f5e8 100%);
        color: #006b00;
        padding-left: 28px;
        transform: translateX(4px);
    }

    .main-header nav ul li a:hover:not(.active),
    .main-header .main-nav ul li a:hover:not(.active) {
        background: linear-gradient(90deg, #f0f7f0 0%, #e8f5e8 100%);
    }

    .main-header nav ul li a.active,
    .main-header .main-nav ul li a.active {
        background: linear-gradient(90deg, #006b00 0%, #005000 100%);
        color: #fff !important;
        font-weight: 700;
        border-left: 5px solid #be8c0f;
        box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .main-header nav ul li a.active i:first-child,
    .main-header .main-nav ul li a.active i:first-child {
        color: #be8c0f !important;
    }

    /* Dropdown in mobile menu */
    .main-header nav .dropdown > a,
    .main-header .main-nav .dropdown > a {
        position: relative;
    }

    .main-header nav .dropdown > a i,
    .main-header .main-nav .dropdown > a i {
        transition: transform 0.3s ease;
        font-size: 0.8em;
    }

    .main-header nav .dropdown.active > a i,
    .main-header .main-nav .dropdown.active > a i {
        transform: rotate(180deg);
    }

    .main-header nav .dropdown-menu,
    .main-header .main-nav .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: #f8f9fa;
        padding: 0;
        transform: none;
        width: 100%;
        border-radius: 0;
        border: none;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .main-header nav .dropdown-menu::before,
    .main-header .main-nav .dropdown-menu::before {
        display: none;
    }

    .main-header nav .dropdown.active .dropdown-menu,
    .main-header .main-nav .dropdown.active .dropdown-menu {
        display: block;
        max-height: 600px;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-header nav .dropdown-menu li,
    .main-header .main-nav .dropdown-menu li {
        border-bottom: 1px solid #e9ecef;
        background-color: #fff;
        min-height: 52px;
        height: 52px;
    }

    .main-header nav .dropdown-menu li:last-child,
    .main-header .main-nav .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .main-header nav .dropdown-menu li a,
    .main-header .main-nav .dropdown-menu li a {
        padding: 18px 20px 18px 45px;
        font-size: 0.9em;
        text-transform: none;
        color: #555;
        background-color: #f8f9fa;
        gap: 12px;
        height: 100%;
        min-height: 52px;
    }

    .main-header nav .dropdown-menu li a i:first-child,
    .main-header .main-nav .dropdown-menu li a i:first-child {
        width: 18px;
        text-align: center;
        color: #006b00;
        font-size: 1em;
    }

    .main-header nav .dropdown-menu li a:hover,
    .main-header .main-nav .dropdown-menu li a:hover {
        background: linear-gradient(90deg, #e9ecef 0%, #dee8de 100%);
        color: #006b00;
        padding-left: 52px;
        transform: translateX(4px);
    }

    .main-header nav .dropdown-menu li a:hover:not(.active),
    .main-header .main-nav .dropdown-menu li a:hover:not(.active) {
        background-color: #e9ecef;
    }

    .main-header nav .dropdown-menu li a.active,
    .main-header .main-nav .dropdown-menu li a.active {
        background: linear-gradient(90deg, #006b00 0%, #005000 100%);
        color: #fff !important;
        font-weight: 700;
        border-left: 5px solid #be8c0f;
        box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.1);
    }

    .main-header nav .dropdown-menu li a.active i:first-child,
    .main-header .main-nav .dropdown-menu li a.active i:first-child {
        color: #be8c0f !important;
    }


    /* Carousel */
    .carousel {
        height: 400px;
    }

    .carousel-caption h2 {
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .carousel-caption p {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    .carousel-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-carousel {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    /* About Section */
    .about-content {
        flex-direction: column;
    }

    .about-image,
    .about-text {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-image {
        height: 250px;
    }

    .about-text {
        padding: 30px 20px;
    }

    .about-text h2 {
        font-size: 1.8em;
        text-align: center;
    }

    .about-text p {
        font-size: 1em;
        text-align: center;
    }

    /* Services Section */
    .services-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .services-intro {
        font-size: 0.95em;
        padding: 0 10px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card i {
        font-size: 2.5em;
    }

    .service-card h3 {
        font-size: 1.3em;
    }

    /* Properties Section — accueil « Mise en vente / location » : 1 col, cartes confortables */
    .properties-section {
        padding: 40px 0;
    }

    .properties-section .section-title {
        text-align: center;
        line-height: 1.3;
        padding: 0 4px;
    }

    .properties-grid,
    .properties-grid.properties-grid--3-cols {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .property-card {
        margin-bottom: 0;
        min-width: 0;
        display: flex;
        flex-direction: column;
    }

    .property-image {
        height: 200px;
    }

    .property-details {
        padding: 1rem 1.1rem 1.15rem;
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
    }

    .property-details h3 {
        font-size: 1.1em;
        line-height: 1.35;
        margin-bottom: 0.35rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .property-details .location {
        font-size: 0.88em;
    }

    .property-details .price {
        font-size: 1.05em;
        line-height: 1.4;
        margin-bottom: 0.75rem;
        word-break: break-word;
    }

    .property-details .btn-details {
        display: block;
        text-align: center;
        width: 100%;
        box-sizing: border-box;
        padding: 0.65rem 1rem;
    }

    .properties-section .services-button-container {
        margin-top: 1.75rem;
    }

    .properties-section .btn-see-more {
        display: block;
        width: 100%;
        max-width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    /* Properties Grid Fullwidth */
    .properties-grid-fullwidth {
        grid-template-columns: 1fr !important;
        padding: 0 15px;
    }

    /* Forum Section */
    .forum-section {
        padding: 40px 0;
    }

    .forum-text {
        font-size: 1em;
        padding: 0 20px;
    }

    /* Contact Section */
    .contact-section {
        padding: 40px 0;
    }

    .contact-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form,
    .contact-info {
        flex: 0 0 100%;
        min-width: 100%;
    }

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

    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .info-item i {
        font-size: 1.5em;
    }

    /* Testimonials */
    .testimonials-section {
        padding: 40px 0;
    }

    .testimonial-content {
        padding: 30px 20px;
    }

    .testimonial-text {
        font-size: 1em;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

    .footer-section {
        min-width: 100%;
        text-align: center;
    }

    /* Search Bar */
    .search-bar-container {
        padding: 20px 15px;
        margin: 20px 15px;
    }

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

    .search-form-group {
        margin-bottom: 15px;
    }

    /* Categories Grid */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-item {
        padding: 20px;
    }

    /* Intro Text */
    .intro-text {
        padding: 25px 20px;
        font-size: 1em;
        margin: 20px 0;
    }

    /* Listings Header */
    .listings-header,
    .listings-header-fullwidth {
        margin: 30px 0 20px;
        padding: 0 15px;
    }

    .listings-header h2,
    .listings-header-fullwidth h2 {
        font-size: 1.5em;
    }

    /* Properties Section Fullwidth */
    .properties-section-fullwidth {
        padding: 40px 0;
    }

    /* Service Request Section */
    .service-request-section {
        padding: 30px 15px;
    }

    .service-request-form {
        padding: 20px 15px;
    }

    /* Values Grid */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Services Grid (6 items) */
    .services-grid-6 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Illustration Section */
    .illustration-section {
        padding: 30px 15px;
    }

    .illustration-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Challenges Grid */
    .challenges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Objectives Grid */
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Carousel Services */
    .carousel-services {
        padding: 30px 15px;
    }

    .carousel-item-service {
        padding: 20px;
    }

    /* Properties List Section */
    .properties-list-section {
        padding: 30px 15px;
    }

    .properties-list-section h3 {
        font-size: 1.5em;
    }

    /* Intro Section */
    .intro-section {
        padding: 30px 0;
    }

    .intro-content {
        padding: 30px 20px;
    }

    .intro-content h2 {
        font-size: 1.6em;
    }

    .intro-content p {
        font-size: 1em;
    }

    /* Services Header */
    .services-header h2 {
        font-size: 1.8em;
    }

    .services-header p {
        font-size: 1em;
    }

    /* Service Request Form */
    .service-request-form .form-group {
        margin-bottom: 20px;
    }

    /* Main Service Cards */
    .main-service-card {
        padding: 25px 20px;
    }

    .main-service-card h3 {
        font-size: 1.4em;
    }

    /* Structure Intro */
    .structure-intro {
        padding: 30px 20px;
    }

    .structure-intro h2 {
        font-size: 1.6em;
    }

    /* Importance Section */
    .importance-section {
        padding: 30px 15px;
    }

    .importance-section h3 {
        font-size: 1.5em;
    }

    /* Intro Split Section (gestion, syndic, administratif, divers) */
    .intro-split {
        grid-template-columns: 1fr !important;
    }

    .intro-content {
        padding: 30px 20px !important;
        order: 1;
    }

    .intro-image {
        order: 2;
        min-height: 250px;
    }

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

    /* Service Request Split Section */
    .service-request-split-section {
        grid-template-columns: 1fr !important;
        padding: 30px 0 !important;
    }

    .service-request-image {
        order: 1;
        min-height: 250px;
    }

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

    .service-request-form-container {
        order: 2;
        padding: 30px 20px !important;
    }

    /* Parallax Sections */
    .vente-parallax-section,
    .location-parallax-section,
    .illustration-parallax-section {
        background-attachment: scroll !important;
        padding: 50px 0 !important;
    }

    /* Services Section Parallax (divers) */
    .services-section.parallax {
        background-attachment: scroll !important;
        padding: 40px 0 !important;
    }
}

/* Tablet devices (max-width: 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        width: 90%;
    }

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

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

    .about-content {
        flex-direction: column;
    }

    .contact-content {
        flex-direction: column;
    }

    .main-header nav ul {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* Small mobile devices (max-width: 480px) */
@media (max-width: 480px) {
    /* Mobile Menu - Smaller screens */
    .main-header nav,
    .main-header .main-nav {
        width: 90%;
        max-width: 100%;
    }

    .mobile-menu-header {
        padding: 15px 18px;
    }

    .mobile-menu-logo span {
        font-size: 1em;
    }

    .main-header nav ul li a,
    .main-header .main-nav ul li a {
        padding: 14px 18px;
        font-size: 0.9em;
        min-height: 52px;
    }

    .main-header nav .dropdown-menu li a,
    .main-header .main-nav .dropdown-menu li a {
        padding: 14px 18px 14px 40px;
        font-size: 0.85em;
        min-height: 48px;
    }

    .main-header .mobile-menu-toggle {
        width: 44px;
        height: 44px;
        font-size: 1.6em;
    }
    .page-header h1 {
        font-size: 1.5em;
    }

    .section-title {
        font-size: 1.5em;
    }

    .carousel {
        height: 350px;
    }

    .carousel-caption h2 {
        font-size: 1.2em;
    }

    .carousel-caption p {
        font-size: 0.85em;
    }

    .property-image {
        height: 180px;
    }

    /* Accueil — photos un peu plus hautes que le défaut 180px */
    .properties-section .property-image {
        height: 200px;
    }

    .properties-section {
        padding: 32px 0;
    }

    .search-bar-container {
        padding: 15px 10px;
        margin: 15px 10px;
    }

    .intro-text {
        padding: 20px 15px;
        font-size: 0.95em;
    }
}