/* ========================================
   Variables et réinitialisation
   ======================================== */
:root {
    --primary-color: #8B6914;
    --secondary-color: #A67C00;
    --dark-green: #5D4E1F;
    --light-green: #C9A961;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --white: #FFFFFF;
    --light-bg: #FAF7F0;
    --shadow: rgba(139, 105, 20, 0.2);
    --overlay: rgba(93, 78, 31, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-brown);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    color: var(--dark-green);
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-transform: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    transition: padding 0.4s ease;
}

.navbar.navbar-scrolled .container {
    padding: 0.5rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-brand .logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: height 0.4s ease;
}

.navbar.navbar-scrolled .nav-brand .logo {
    height: 40px;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    height: 80vh;
    min-height: 500px;
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-color) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('src/t1.jpg');
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
    z-index: 1;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: 6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.06em;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

.outlined,
.btn-secondary {
    background-color: transparent;
    border: 2px solid;
}

.outlined {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.outlined:hover {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 6px 20px var(--shadow);
}

.btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Animations Hero */
.hero-fade-in {
    animation: heroFadeIn 1s ease forwards;
    opacity: 0;
}

.hero-slide-up {
    animation: heroSlideUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title.hero-slide-up {
    animation-delay: 0.3s;
}

.hero-subtitle.hero-slide-up:nth-of-type(1) {
    animation-delay: 0.6s;
}

.hero-subtitle.hero-slide-up:nth-of-type(2) {
    animation-delay: 0.9s;
}

.hero-buttons.hero-slide-up {
    animation-delay: 1.2s;
}

.scroll-indicator.hero-fade-in {
    animation-delay: 1.5s;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes heroSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Zone d'intervention
   ======================================== */
.intervention-zone {
    background-color: var(--light-bg);
    padding: 2rem 0;
    text-align: center;
}

.intervention-zone h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.intervention-zone p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ========================================
   Services Section
   ======================================== */
.services {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1rem auto;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.services-grid-secondary {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 2rem auto 0;
}

/* Styles communs pour cartes (service-card + prestation-item) */
.service-card,
.prestation-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card {
    text-align: center;
}

.prestation-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 4rem;
    background-color: var(--light-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover,
.prestation-item:hover {
    transform: translateY(-10px);
}

/* Wrapper d'icônes avec dégradé */
.service-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.prestation-item .service-icon-wrapper {
    width: 150px;
    height: 150px;
    margin: 0;
}

.service-icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--light-green));
    border-radius: 20px;
    opacity: 0.15;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-bg,
.prestation-item:hover .service-icon-bg {
    opacity: 0.25;
    transform: rotate(10deg) scale(1.1);
    border-radius: 25px;
}

/* Icônes */
.service-icon,
.prestation-icon {
    position: relative;
    font-size: 3rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: all 0.4s ease;
    z-index: 1;
}

.prestation-icon {
    font-size: 4rem;
    background-color: transparent;
    padding: 0;
    border-radius: 10px;
    width: 100%;
}

.service-card:hover .service-icon,
.prestation-item:hover .prestation-icon {
    transform: scale(1.15) rotateY(360deg);
    color: var(--secondary-color);
}

/* Animation d'apparition */
.service-card-animated {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card-animated:nth-child(1) { animation-delay: 0.1s; }
.service-card-animated:nth-child(2) { animation-delay: 0.2s; }
.service-card-animated:nth-child(3) { animation-delay: 0.3s; }
.service-card-animated:nth-child(4) { animation-delay: 0.4s; }
.service-card-animated:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Titres des cartes */
.service-card h3,
.prestation-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

.prestation-content h2 {
    color: var(--dark-brown);
}

.service-card:hover h3,
.prestation-item:hover .prestation-content h2 {
    color: var(--secondary-color);
}

/* Paragraphes */
.service-card p,
.prestation-content p {
    color: var(--text-light);
    line-height: 1.8;
}

.prestation-content p {
    margin-bottom: 1rem;
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.gallery-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* Carousel */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    aspect-ratio: 16/9;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* ========================================
   Why Choose Us
   ======================================== */
.why-choose {
    padding: 5rem 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
}

/* ========================================
   Page Header
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-color) 100%);
    padding: 6rem 0 4rem;
    margin-top: 70px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-header .container {
    position: relative;
    z-index: 3;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 3;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 3;
}

/* ========================================
   Prestations détaillées
   ======================================== */
.prestations-detail {
    padding: 5rem 0;
}

.prestation-item.reverse {
    grid-template-columns: 1fr 150px;
}

.prestation-item.reverse .prestation-content {
    order: -1;
}

.prestation-content ul {
    list-style: none;
    padding-left: 0;
}

.prestation-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.prestation-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background-image: url('src/t2.jpg');
    position: relative;
    background-size: cover;
    background-position: 60% 35%;
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.cta-section > * {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light-bg);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info h2 {
    color: var(--dark-brown);
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Contact items et cards */
.contact-item,
.contact-card-modern {
    padding: 1rem;
    background-color: var(--light-bg);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-card-modern {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(44, 95, 45, 0.15);
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
}

.contact-item h3,
.social-section h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.social-section {
    margin-top: 2rem;
}

.social-section h3 {
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--text-light);
    margin: 0.25rem 0;
}

.contact-item a,
.contact-card-modern a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover,
.contact-card-modern a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper h2 {
    color: var(--dark-brown);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.contact-form {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-brown);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ========================================
   Autocomplete Dropdown
   ======================================== */
.autocomplete-dropdown {
    position: absolute;
    background-color: var(--white);
    border: 2px solid var(--primary-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    width: calc(100% - 4px);
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.autocomplete-dropdown.active {
    display: block;
}

.autocomplete-item {
    padding: 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background-color: var(--light-bg);
}

.autocomplete-item.selected {
    background-color: var(--light-orange);
    color: var(--dark-brown);
}

.autocomplete-item strong {
    color: var(--primary-color);
}

.form-group {
    position: relative;
}

/* ========================================
   Bouton CTA Navbar
   ======================================== */
.btn-cta {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-cta:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

.open-modal-btn {
    cursor: pointer;
}

/* ========================================
   Modal
   ======================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--white);
    margin: 2rem auto;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideDown 0.3s ease;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    color: var(--text-light);
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--primary-color);
}

.modal .contact-form {
    background-color: var(--white);
    padding: 0;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--dark-green);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 200px;
    width: auto;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--light-green);
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    color:white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .btn-cta {
        margin: 0 auto;
        width: fit-content;
    }

    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }



    .section-title {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .prestation-item,
    .prestation-item.reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .prestation-item.reverse .prestation-content {
        order: 0;
    }

    .prestation-icon {
        margin: 0 auto;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .services-grid,
    .services-grid-secondary {
        grid-template-columns: 1fr;
    }
    
    .services-grid-secondary {
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    .hero::before {
        background-attachment: scroll;
    }
    
    .contact-container{
        display: block !important;
    }
    .page-header {
        padding-top: 50px;
    }
    .scroll-indicator{
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .nav-brand .logo {
        height: 40px;
    }

    .hero {
        height: 70vh;
        min-height: 400px;
    }

    .services-grid,
    .services-grid-secondary,
    .gallery-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 600px) {
    .footer-content{
        flex-direction: column;
        align-items: center;
        text-align: center;

    }

    .social-links {
        justify-content: center;
    }
}