/* Estilos globais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    justify-content: center;
    align-items: stretch;
    box-sizing: border-box;
}

/* Ajustes para telas pequenas */
@media (max-width: 600px) {
    .service-grid {
        grid-template-columns: 1fr; /* Força 1 coluna no mobile */
        padding: 1rem; /* Reduz padding */
    }
}

.service-item {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Garante que o botão fique sempre na parte inferior */
    min-height: 100%; /* Mantém os cards do mesmo tamanho */
}

.service-item img {
    width: 100%;
    height: 180px; /* Define uma altura fixa */
    object-fit: cover; /* Mantém proporções corretas e evita distorções */
    border-radius: 8px;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #333;
}

.service-features li i {
    color: var(--primary-color);
}

.service-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: auto; /* Garante que o botão sempre fique no final */
}

.service-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.service-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Estilo para quando o serviço é selecionado */
.service-card.selected {
    border: 2px solid #FFA500; /* Borda laranja mais escura */
    background: #FFF8DC; /* Fundo amarelado */
    transform: translateY(-3px); /* Elevação */
    box-shadow: 0 6px 12px rgba(255, 165, 0, 0.3); /* Sombra mais forte */
}

/* Hover na card */
.service-card:hover {
    border-color: #FFA500; /* Laranja mais forte no hover */
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(255, 165, 0, 0.2); /* Aumenta a sombra no hover */
}

/* Estilos para o ícone dentro da card */
.service-card .service-icon {
    width: 50px;
    height: 50px;
    background-color: #FFA500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* Título do serviço */
.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Preço do serviço */
.service-card .service-price {
    font-size: 1.6rem;
    font-weight: bold;
    color: #FFA500;
}

/* Botão de seleção */
.service-card .select-button {
    background: #FFA500;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover do botão de seleção */
.service-card .select-button:hover {
    background: #FF8C00;
    transform: translateY(-2px);
}

/* Estilos da calculadora total */
.calculator-total {
    padding: 1.5rem;
    background: #FAFAD2;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.calculator-total .total-label {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.calculator-total .total-price {
    font-size: 2rem;
    font-weight: bold;
    color: #FFA500;
}

/* Media Queries para telas pequenas */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .service-card {
        padding: 1rem;
    }

    .service-card .service-icon {
        width: 40px;
        height: 40px;
        padding: 8px;
    }

    .service-card h3 {
        font-size: 1rem;
    }

    .service-card .service-price {
        font-size: 1.4rem;
    }

    .calculator-total .total-price {
        font-size: 1.8rem;
    }

    /* Ajustes para dispositivos muito pequenos */
    @media (max-width: 480px) {
        .service-card h3 {
            font-size: 0.9rem;
        }

        .service-card .service-price {
            font-size: 1.2rem;
        }

        .calculator-total .total-price {
            font-size: 1.5rem;
        }
    }
}

/* Borda visível quando o item estiver destacado */
.service-card.selected {
    border: 2px solid #FFA500;  /* Borda laranja para destacar */
    background: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Aumenta a sombra */
}

/* Alterar a borda ao passar o mouse */
.service-card:hover {
    border: 2px solid #FFA500;  /* Borda laranja ao passar o mouse */
    transform: translateY(-3px); /* Leve elevação no hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Aumenta a sombra no hover */
}
/* Adicionando fonte personalizada */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* Estilos globais para o layout */
.book-now {
    font-family: 'Roboto', sans-serif; /* Usando a fonte Roboto */
    background-color: #FFFAF0; /* Fundo bege claro */
    color: var(--text-color);
    border-radius: 8px;
    padding: 20px;
    margin: 0 auto;
    width: 90%;
    max-width: 900px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

/* Centralizar o menu e adicionar margens ao redor */
.book-now section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

/* Estilo para os títulos das seções */
.book-now h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Texto dentro do formulário */
.book-now p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 15px;
    text-align: center;
}

/* Formulário e campos de entrada */
.book-now form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.book-now .form-group {
    position: relative;
    margin-bottom: 15px;
    width: 100%;
}

.book-now input[type="text"],
.book-now input[type="email"],
.book-now input[type="tel"],
.book-now input[type="number"],
.book-now input[type="password"] {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    background-color: var(--white);
    color: var(--text-color);
    box-sizing: border-box;
    outline: none;
    margin-top: 8px;
}

/* Placeholder invisível */
.book-now input::placeholder {
    color: transparent;
}

/* Label flutuante dentro do campo */
.book-now label {
    position: absolute;
    top: 12px;
    left: 12px;
    color: var(--text-color);
    font-size: 1rem;
    transition: 0.2s ease;
    pointer-events: none;
}

/* Label que sobe quando o input é focado ou preenchido */
.book-now input:focus ~ label,
.book-now input:not(:placeholder-shown) ~ label {
    top: -8px;
    left: 12px;
    font-size: 0.85rem;
    color: var(--primary-color);
}

/* Estilo do botão "Complete Booking" */
.book-now button {
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1rem;
    width: 100%;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.book-now button:hover {
    background-color: var(--accent-color);
}

.book-now button:focus {
    outline: none;
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    /* Ajustando a área de total (marrom de fundo) */
    .calculator-total {
        padding: 1rem;
        max-width: 90%;
        margin: 0 auto;
        background: var(--secondary-color);
        border-radius: 12px;
    }

    /* Tamanho do preço no mobile (visível apenas no botão) */
    .calculator-total .total-price {
        font-size: 1.8rem;
        margin: 0.5rem 0;
    }

    /* Ajustando o botão Book Now */
    .calculator-total .book-now-button {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
        width: 100%;
        box-sizing: border-box;
        margin-top: 1rem;
        border-radius: 8px;
    }

    /* Ajustando as cartas de serviço */
    .service-card {
        padding: 1rem;
        width: 100%;
        box-sizing: border-box;
        border-radius: 12px;
        margin-bottom: 1rem;
        border: 2px solid transparent;  /* Inicialmente sem borda */
        transition: border 0.3s ease, transform 0.3s ease;  /* Transições suaves */
    }

    /* Ajuste no grid de serviços */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Ajuste nos ícones das cartas de serviço */
    .service-card .service-icon {
        width: 35px;
        height: 35px;
        border: 2px solid #FFA500;  /* Borda laranja ao redor dos ícones */
        border-radius: 50%;  /* Tornar os ícones circulares */
        padding: 5px;  /* Espaço entre a borda e o ícone */
    }

    /* Ajuste nos textos das cartas de serviço */
    .service-card h3 {
        font-size: 1rem;
    }

    .service-card .service-price {
        display: none;  /* Remover o preço das cartas */
    }

    /* Borda laranja quando o item for selecionado */
    .service-card.selected {
        border: 2px solid #FFA500;  /* Borda laranja */
        background: var(--light-color);
        transform: translateY(-3px);
    }
    
    /* Destacar o preço com cor laranja (opcional) */
    .service-card .service-price.highlight {
        color: #FFA500;  /* Preço destacado em laranja */
        text-shadow: 2px 2px 0 rgba(255, 69, 0, 0.5);
    }
}

/* Quando a caixa for selecionada */
.service-card.selected {
    border-color: #FFA500;  /* Borda laranja para destacar o item */
    background: var(--light-color);
    transform: translateY(-3px);
}

/* Botão Select destacado */
.service-card.selected .select-button {
    background: #FFA500;  /* Fundo laranja para o botão */
    color: var(--white);
}

/* Melhorar visualização do preço */
.service-card .service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
    display: block;
    text-align: center;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 1rem;
}

/* Preço com riscado (se houver desconto) */
.service-card .service-price.discounted {
    font-size: 1.5rem;
    text-decoration: line-through;
    color: rgba(0, 0, 0, 0.5);
}


/* Ajuste na área do total */
.calculator-total {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); /* Mais contraste */
    border-radius: 15px;
    padding: 2rem;
    color: var(--white);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    text-align: center; /* Alinha o conteúdo ao centro */
    max-width: 500px; /* Limita a largura */
    margin: 0 auto; /* Centraliza a área de total */
    transition: all 0.3s ease; /* Transições suaves */
}

.calculator-total:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); /* Sombra mais forte ao passar o mouse */
}

.calculator-total .book-now-button {
    font-size: 1rem; /* Manter a legibilidade */
    padding: 0.5rem 1.2rem; /* Um pouco mais compacto */
    background: var(--primary-color); /* Cor de fundo mais profissional */
    color: var(--white);
    border-radius: 25px; /* Bordas arredondadas para suavizar o visual */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent; /* Borda sutil */
    text-align: center;
    width: 100%; /* Garantir que o botão ocupe toda a largura */
    box-sizing: border-box; /* Para não ultrapassar os limites do container */
}

.calculator-total .book-now-button:hover {
    background: var(--accent-color); /* Muda para um tom mais claro no hover */
    color: var(--white);
    transform: translateY(-3px); /* Efeito de hover suave */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra mais discreta */
    border: 2px solid var(--primary-color); /* Borda colorida no hover */
}

/* Ajustes gerais para dispositivos móveis */
@media (max-width: 768px) {
    .calculator-total {
        padding: 1.2rem; /* Reduzindo o padding no container */
        max-width: 90%; /* Ajusta o tamanho do container no mobile */
        margin-left: auto;
        margin-right: auto;
    }

    .calculator-total .total-price {
        font-size: 2rem; /* Diminui o tamanho do preço no mobile */
    }

    .calculator-total .book-now-button {
        font-size: 0.9rem; /* Reduz o tamanho da fonte no mobile */
        padding: 0.4rem 1rem; /* Ajusta o padding para um tamanho mais adequado */
        width: 100%; /* Torna o botão de largura total para o mobile */
        box-sizing: border-box; /* Garante que o botão ocupe todo o espaço disponível */
        margin-top: 1rem; /* Dá um pequeno espaçamento acima do botão */
    }

    .service-card {
        padding: 0.8rem; /* Ajuste no padding da carta de serviço */
        width: 100%; /* Faz as cartas ocuparem 100% da largura disponível */
        box-sizing: border-box; /* Garante que as cartas ocupem todo o espaço sem ultrapassar a tela */
    }

    .service-card .service-icon {
        width: 35px; /* Diminui o tamanho do ícone no mobile */
        height: 35px;
    }

    .service-card .service-price {
        font-size: 1.2rem; /* Diminui o tamanho do preço nas cartas de serviço */
    }

    .service-card h3 {
        font-size: 0.9rem; /* Ajuste no tamanho da fonte do título */
    }

    .services-grid {
        grid-template-columns: 1fr; /* Coloca os cards em uma coluna no mobile */
        gap: 1rem; /* Diminui o gap entre as cartas */
    }
}

/* Melhorar o visual do preço e do botão Book Now */
.calculator-total .total-price {
    font-size: 2.8rem; /* Aumenta o tamanho do preço */
    margin: 1.5rem 0;
    font-weight: bold;
    text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
}

/* Ajustando a área de total (preço + botão) */
.calculator-container {
    background: var(--light-color);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
    display: flex; /* Utiliza flexbox para o layout */
    justify-content: space-between; /* Distribui os itens de maneira que o conteúdo da esquerda vai para a esquerda e da direita para a direita */
    gap: 2rem; /* Adiciona um pequeno espaço entre os dois lados */
}

/* Estilo para a área de serviços */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start; /* Alinha os itens dos serviços à esquerda */
    flex: 1; /* Faz com que os serviços ocupem o espaço restante disponível */
}

/* Estilo para a área de total (preço + botão) */
.calculator-total {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 15px;
    padding: 1.5rem;
    color: var(--white);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    max-width: 400px; /* Limita a largura da área de total */
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Alinha o conteúdo à direita */
    justify-content: center; /* Centraliza o conteúdo verticalmente */
}

.calculator-total .total-price {
    font-size: 2.5rem;
    margin: 1rem 0;
    text-shadow: 2px 2px 0 rgba(0,0,0,0.2);
}

.calculator-total .book-now-button {
    font-size: 1rem;
    padding: 0.8rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.calculator-total .book-now-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    background: var(--accent-color);
    color: var(--white);
}

/* Ajustando a área de serviços no mobile */
@media (max-width: 768px) {
    /* Ajuste geral da área de serviços */
    .calculator-container {
        flex-direction: column; /* Deixa o layout em coluna */
        align-items: center; /* Centraliza o conteúdo */
        padding: 1rem; /* Reduz padding para menos espaçamento */
    }

    /* Ajustando a grid para 2 colunas */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Coloca 2 colunas */
        gap: 1rem; /* Adiciona espaçamento entre os cards */
        width: 100%; /* Faz a grid ocupar toda a largura */
        margin-bottom: 1.5rem; /* Espaço abaixo */
    }

    /* Ajustando o estilo dos cards de serviço */
    .service-card {
        width: 100%; /* Faz os cards ocuparem toda a largura disponível */
        padding: 1rem; /* Ajusta o padding para melhorar a aparência */
        border-radius: 12px; /* Arredonda os cantos */
        box-sizing: border-box; /* Garante que o conteúdo fique dentro dos limites */
        margin-bottom: 1rem; /* Espaço entre os cards */
        transition: all 0.3s ease; /* Suaviza transições */
    }

    /* Ajustando os ícones dentro do card */
    .service-card .service-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 0.5rem; /* Espaço entre o ícone e o título */
    }

    .service-card .service-icon i {
        font-size: 1.2rem; /* Aumenta o tamanho do ícone */
    }

    /* Ajustando o título do serviço */
    .service-card h3 {
        font-size: 1rem; /* Ajuste no tamanho do título */
    }

    .service-card .service-price {
        font-size: 1.2rem; /* Ajuste no tamanho do preço */
        text-align: center; /* Centraliza o preço */
    }

    /* Ajustando o botão select dentro do card */
    .service-card .select-button {
        padding: 0.6rem 1rem;
        font-size: 1rem; /* Ajuste do tamanho do texto */
        width: 100%; /* Botão ocupa toda a largura */
        border-radius: 8px; /* Arredonda as bordas */
        margin-top: 0.5rem; /* Espaço entre o botão e o preço */
    }

    /* Ajustando a área de total (preço + botão) */
    .calculator-total {
        width: 90%; /* Limita o tamanho do container */
        padding: 1.2rem; /* Ajusta o padding */
        max-width: 500px; /* Limita a largura */
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        color: var(--white);
        border-radius: 12px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center; /* Alinha o conteúdo ao centro */
        justify-content: center; /* Alinha o conteúdo no centro */
    }

    .calculator-total .total-price {
        font-size: 2rem; /* Diminui o tamanho do preço */
        margin: 1rem 0;
        font-weight: bold;
        text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.3);
    }

    .calculator-total .book-now-button {
        font-size: 1rem;
        padding: 0.8rem 2rem;
        background: var(--primary-color);
        color: var(--white);
        border-radius: 30px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        width: 100%; /* Faz o botão ocupar toda a largura */
        margin-top: 1rem;
    }

    .calculator-total .book-now-button:hover {
        background: var(--accent-color);
        color: var(--white);
        transform: translateY(-2px); /* Pequeno efeito de elevação */
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Sombra mais forte */
    }
}

/* Ajustando para dispositivos muito pequenos (menos que 480px) */
@media (max-width: 480px) {
    /* Ajustando ainda mais o layout */
    .services-grid {
        grid-template-columns: 1fr; /* Coloca tudo em uma coluna */
        gap: 0.5rem; /* Reduz o espaço entre os cards */
    }

    .service-card {
        padding: 0.8rem; /* Reduz o padding do card */
        margin-bottom: 0.5rem; /* Menos espaço entre os cards */
    }

    .service-card h3 {
        font-size: 0.9rem; /* Tamanho menor do título */
    }

    .service-card .service-price {
        font-size: 1.1rem; /* Ajuste no preço */
    }

    .calculator-total {
        padding: 1rem; /* Menos padding no total */
        width: 100%; /* Aumenta a largura */
        max-width: none; /* Remove o limite de largura */
    }

    .calculator-total .total-price {
        font-size: 1.8rem; /* Menor tamanho de preço */
    }

    .calculator-total .book-now-button {
        font-size: 0.9rem; /* Reduz a fonte do botão */
        padding: 0.6rem 1.5rem; /* Menos padding */
    }
}

html {
    scroll-behavior: smooth;
}


/* Add padding-top to service sections for smooth scroll */
[id^="airbnb-service"],
[id^="house-cleaning"],
[id^="commercial-cleaning"],
[id^="deep-cleaning"],
[id^="move-cleaning"],
[id^="laundry-service"],
[id^="post-construction"],
[id^="office-cleaning"],
[id^="window-cleaning"] {
    scroll-margin-top: 100px; /* Adjust this value based on your header height */
}

:root {
    --primary-color: #FF8C00;     /* Laranja */
    --secondary-color: #4A3728;    /* Marrom escuro */
    --accent-color: #FFB347;       /* Laranja claro */
    --text-color: #2C1810;         /* Marrom mais escuro para texto */
    --light-color: #FFF5EB;        /* Bege claro para fundos */
    --white: #FFFFFF;
}

body {
    line-height: 1.6;
    color: var(--text-color);
}

/* Header and Navigation */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start; /* Align items to the left */
    align-items: center;
    padding: 0 1rem;
    background-color: var(--light-color);
    width: 100%;
    gap: 2rem; /* Space between logo and menu */
}

.menu-logo {
    height: 70px; /* Larger height for better visibility */
    width: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-logo:hover {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Adjust menu to align horizontally and vertically */
.menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

/* Adjust menu links for better visibility */
.menu a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 700; /* Bolder font */
    font-size: 1.2rem; /* Slightly larger font */
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.menu a:hover {
    color: var(--primary-color);
    background-color: var(--light-color);
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.4);
}

/* Hamburger button adjustments */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px; /* Slightly wider */
    height: 4px; /* Slightly thicker */
    background-color: var(--secondary-color);
    margin: 6px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}


/* Modern CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #FF8C00;     /* Laranja */
    --secondary-color: #4A3728;    /* Marrom escuro */
    --accent-color: #FFB347;       /* Laranja claro */
    --text-color: #2C1810;         /* Marrom mais escuro para texto */
    --light-color: #FFF5EB;        /* Bege claro para fundos */
    --white: #FFFFFF;
}

body {
    line-height: 1.6;
    color: var(--text-color);
}

/* Header and Navigation */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    background-color: var(--light-color);
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative;
}

.menu a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.menu a:hover {
    color: var(--primary-color);
}

/* Submenu Styles */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--light-color);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 250px;
}

.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    color: var(--text-color);
    font-weight: normal;
}

.submenu a:hover {
    background-color: var(--white);
}

.menu li:hover .submenu {
    display: block;
}

/* Main Content */
main {
    margin-top: 80px;
}


/* Home Section */
#home {
    background: url('imagens/fundo.jpeg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

#home h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

#home p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 2rem;
    animation: fadeInUp 1s ease 0.2s;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.cta-button, .secondary-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.secondary-button {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.secondary-button:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.badge i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.badge span {
    font-weight: 500;
    color: var(--white);
}

/* Services Section */
#servicos {
    padding: 6rem 2rem;
    background-color: var(--white);
}

#servicos h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

/* Serviço Grid (para desktop e mobile) */
/* Container com fundo bege */
.services-section {
  background-color: #f5f1e8; /* BEGE */
  padding: 2rem 0;
  width: 100%;
  /* Removed overflow hidden to allow horizontal scroll */
}

@media (max-width: 768px) {
  .services-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Wrapper para alinhar a grid com margem horizontal */
.services-wrapper {
  padding: 0 1rem;
}

/* Scroll horizontal no mobile */
.service-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 1rem;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 1rem;
}

/* Serviço individual */
.service-item {
  flex: 0 0 auto;
  width: 220px;
  background-color: var(--light-color);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  scroll-snap-align: start;
}

.service-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 1rem;
}

/* Desktop: vira grid normal */
@media (min-width: 768px) {
  .service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    overflow-x: unset;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .service-item {
    width: 100%;
    flex: unset;
  }
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin: 1rem 0;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-item h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.service-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--primary-color);
}

/* Estilo do botão Learn More */
.service-button {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 1rem; /* Garante um espaçamento entre a lista e o botão */
}

/* Ajuste do botão Learn More para alinhar à direita */
.service-item .service-button {
    display: inline-block;
    width: auto;  /* Garante que o botão não ocupe toda a largura */
    margin-left: 10px; /* Ajuste de espaço entre o botão e outros elementos */
}

/* Hover para o botão */
.service-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .service-button {
        margin-left: 0; /* Remove o espaço extra no mobile */
        margin-top: 1rem; /* Garante espaçamento adequado */
    }
}


    /* Ajuste para o submenu (se necessário) */
    .submenu {
        display: none; /* Ocultar o submenu em telas pequenas por padrão */
    }

    .submenu-toggle {
        display: block; /* Mostrar o botão que abre o submenu */
        cursor: pointer;
        font-size: 1.2rem;
        padding: 10px;
        background-color: var(--primary-color);
        color: var(--white);
        border-radius: 5px;
    }

    /* Mostrar o submenu quando o botão for clicado */
    .submenu.show {
        display: block;
        background-color: var(--light-color);
        padding: 1rem;
        border-radius: 5px;
    }
}
/* Exibe o submenu corretamente em dispositivos móveis */
@media (max-width: 768px) {
    .submenu {
        display: block;  /* Mostra o submenu em telas menores */
        position: absolute;
        top: 50px;
        left: 0;
        background-color: rgba(255, 255, 255, 0.9); /* Fundo leve para destacar */
        width: 100%;
        z-index: 1000;  /* Garantir que o submenu fique acima de outros elementos */
    }
    
    /* Mostra o botão de abrir o submenu (Show Services) */
    .submenu-toggle {
        display: block;  /* Assegura que o botão de abrir o submenu seja visível em dispositivos móveis */
        background-color: #f7b731;
        color: white;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1.2rem;
    }
}


/* Why Us Section */
#why-us {
    background-color: var(--light-color);
    padding: 6rem 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

#why-us h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-weight: 700; /* Deixa o título mais forte */
    text-transform: uppercase; /* Letras maiúsculas para um visual mais forte */
    letter-spacing: 2px; /* Aumenta o espaçamento entre as letras */
    font-family: 'Montserrat', sans-serif; /* Fonte mais moderna e limpa */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); /* Sombra para destacar o título */
}

/* Parágrafo de introdução */
#why-us p {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Lora', serif; /* Fonte elegante */
    font-style: italic; /* Estilo em itálico para um toque refinado */
    font-weight: 400;
    color: #333; /* Texto de cor mais escura para contraste */
}

/* Estilo da grid de features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Item da feature */
.feature-item {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1); /* Sombra maior para um visual mais sofisticado */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-item:hover {
    transform: translateY(-12px); /* Elevação mais acentuada */
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15); /* Sombra maior ao passar o mouse */
}

.feature-item i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.feature-item i:hover {
    color: var(--secondary-color); /* Muda a cor do ícone ao passar o mouse */
}

.feature-item h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    font-family: 'Montserrat', sans-serif; /* Fonte mais moderna */
    font-weight: 600;
}

.feature-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

/* Estilo de fundo com elementos decorativos (opcional) */
#why-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('background-image.jpg'); /* Imagem de fundo opcional */
    background-size: cover;
    background-position: center;
    opacity: 0.1; /* Imagem de fundo com baixa opacidade */
    z-index: -1;
}

/* Responsividade */
@media (max-width: 768px) {
    #why-us {
        padding: 4rem 2rem;
    }

    #why-us h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    #why-us p {
        font-size: 1.1rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr; /* Duas colunas em dispositivos menores */
    }

    .feature-item {
        padding: 2rem;
    }
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Testimonials Section */
#testimonials {
    background-color: var(--white);
    padding: 6rem 2rem;
}

#testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stars {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
}

.client {
    color: var(--secondary-color);
    font-weight: 600;
}
/* Testimonials Section */
#testimonials {
    background-color: var(--white);
    padding: 4rem 1.5rem;
}

#testimonials h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonial {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.stars {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.testimonial p {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.client {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
    #testimonials {
        padding: 3rem 1rem;
    }

    #testimonials h2 {
        font-size: 1.8rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 1.2rem;
    }
}

/* Pricing Section */
#pricing {
    background-color: var(--light-color);
    padding: 6rem 2rem;
}

#pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-item {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pricing-item.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
}

.pricing-item h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 1.5rem 0;
}

.price span {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: normal;
}

.pricing-item ul {
    list-style: none;
    margin: 2rem 0;
}

.pricing-item li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-item i {
    color: var(--primary-color);
}

.pricing-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pricing-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Contact Section */
#contato {
    background-color: var(--white);
    padding: 6rem 2rem;
}

#contato h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form {
    background-color: var(--light-color);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

:root {
  --primary-color: #4a90e2;
  --secondary-color: #1a1a1a;
  --white: #ffffff;
  --bg-beige: #f0e6da; /* Bege mais escuro */
}

body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: var(--bg-beige);
  color: var(--secondary-color);
}

#about-us {
  padding: 4rem 1rem;
  background-color: var(--bg-beige);
}

#about-us h2 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin-bottom: 3rem;
  color: var(--secondary-color);
}

/* Container da imagem e texto */
.about-content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 4rem auto;
  padding: 0 1rem;
}

/* Imagem da Layla */
.about-content img {
  width: clamp(200px, 25vw, 280px);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  height: auto;
}

/* Texto */
.about-text {
  max-width: 600px;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.8;
  font-family: 'Lora', serif;
  text-align: left;
  color: #333;
}


/* Grid de features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Cada feature */
.feature-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.feature-item i {
  font-size: clamp(2.2rem, 2.5vw, 3rem);
  color: var(--primary-color);
  margin-bottom: 1.2rem;
}

.feature-item h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.feature-item p {
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  color: #666;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
}

/* Responsividade: tablets e celulares */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-text {
    text-align: center;
  }

  .about-content img {
    margin-bottom: 1rem;
  }
}

/* Telas muito pequenas */
@media (max-width: 360px) {
  .about-text {
    font-size: 1rem;
  }

  .feature-item {
    padding: 1.25rem;
  }
}

/* Telas grandes (2K, 4K) */
@media (min-width: 1920px) {
  .about-text {
    font-size: 1.3rem;
  }

  .feature-item h3 {
    font-size: 1.8rem;
  }

  .feature-item p {
    font-size: 1.2rem;
  }

  .about-content img {
    width: 300px;
  }
}

/* Telas muito pequenas (ex: 320px até 359px) */
@media (max-width: 359px) {
  .about-text {
    font-size: 0.95rem; /* ligeiramente menor que 1rem */
    padding: 0 1rem; /* espaçamento lateral para evitar corte de texto */
  }

  .feature-item {
    padding: 1rem;
  }

  .about-content img {
    width: 100%;
    max-width: 250px; /* limitar tamanho da imagem */
    height: auto;
  }
}

input, select, textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

textarea {
    height: 150px;
    resize: vertical;
    margin-bottom: 1.5rem;
}

.contact-form button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-form button:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.contact-info {
    padding: 2rem;
}
.footer-location {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: fit-content;
  padding: 1rem;
  margin: 2rem auto; /* centraliza horizontalmente com menos espaço */
}

.footer-location i {
  font-size: 1.5rem;
  color: #e74c3c;
  margin-bottom: 0.3rem;
}

.location-text span {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
}


.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
}

.footer-info {
    max-width: 400px;
}

.footer-logo-img {
    width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.link-group a {
    display: block;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.link-group a:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .menu-container {
        justify-content: flex-end;
    }

    .menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-height: calc(100vh - 100px);
        background-color: var(--light-color);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 1000;
    }

    .menu li {
        width: 100%;
        text-align: center;
    }

    .menu a {
        display: block;
        padding: 0.8rem;
        font-size: 1rem;
        color: var(--secondary-color);
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .menu a:hover {
        background-color: var(--white);
        color: var(--primary-color);
    }

    .menu li:hover .submenu {
        display: none;
    }

    .menu.active {
        display: flex;
    }

    .submenu {
        position: static;
        background: var(--light-color);
        box-shadow: none;
        display: none;
        width: 100%;
        text-align: center;
        border-radius: 8px;
        margin-top: 0.5rem;
    }

    .menu li.active .submenu {
        display: block;
        margin-top: 0.5rem;
        background-color: var(--light-color);
        border-radius: 8px;
        padding: 0.5rem;
    }

    .submenu a {
        padding: 0.6rem;
        font-size: 0.95rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .form-group {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    #home {
        padding: 6rem 1rem;
    }

    .service-item {
        margin: 0 1rem;
    }

    .contact-container {
        padding: 0 1rem;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .pricing-item.featured {
        transform: none;
    }
}
/* FAQ Section Styles */
#faq {
    background-color: #FAEBD7; /* Refined beige background */
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

#faq h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #4A3728; /* Dark brown for contrast */
    font-weight: bold; /* Bold for emphasis */
}

.faq-item {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #D3D3D3; /* Light gray border for separation */
    border-radius: 8px;
    background-color: #ffffff; /* White background for FAQ items */
    transition: box-shadow 0.3s ease; /* Smooth transition for hover effect */
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
}

.faq-item h3 {
    font-size: 1.8em;
    color: #4A3728; /* Brown for titles */
    margin-bottom: 10px; /* Space below the title */
}

.faq-item p {
    font-size: 1.1em;
    color: #4A3728; /* Changed from blue to brown to match site color */
    line-height: 1.6; /* Improved line height for readability */
}
