/* Blog/News Section */
.blog {
    background: #222;
    padding: 3rem 1rem 2rem 1rem;
    text-align: center;
}
.blog h2 {
    color: #e6b35a;
    margin-bottom: 2rem;
}
.blog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}
.blog-post {
    background: #181818;
    border-radius: 12px;
    padding: 1.5rem 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    min-width: 220px;
    max-width: 340px;
    flex: 1 1 220px;
    text-align: left;
}
.blog-post h3 {
    color: #e6b35a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.blog-post p {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
}
.blog-date {
    color: #aaa;
    font-size: 0.9rem;
}
/* Social Proof Section */
.social-proof {
    background: #181818;
    padding: 2rem 1rem 1rem 1rem;
    text-align: center;
}
.social-proof h2 {
    color: #e6b35a;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}
.proof-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}
.proof-logos img {
    height: 40px;
    width: 120px;
    object-fit: contain;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 0.5rem 1rem;
}
/* FAQ Section */
.faq {
    background: #222;
    padding: 3rem 1rem;
    text-align: center;
}
.faq h2 {
    color: #e6b35a;
    margin-bottom: 2rem;
}
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}
.faq-item {
    background: #181818;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    padding: 1.5rem 1.2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: box-shadow 0.3s;
}
.faq-item h3 {
    color: #e6b35a;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.faq-item p {
    color: #fff;
    font-size: 1rem;
    margin: 0;
}
/* Service Highlights */
.highlights {
    background: #181818;
    padding: 3rem 1rem 2rem 1rem;
    text-align: center;
}
.highlights h2 {
    color: #e6b35a;
    margin-bottom: 2rem;
    font-size: 2rem;
}
.highlight-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.highlight-item {
    background: #222;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.highlight-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}
.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e6b35a;
}
.highlight-item h3 {
    margin-bottom: 0.5rem;
    color: #e6b35a;
}
.highlight-item p {
    font-size: 1rem;
    color: #fff;
}
/*
Color scheme based on the original site:
- Background: #181818 (dark)
- Accent: #e6b35a (gold), #ffffff (white), #222 (dark gray)
- Text: #fff, #e6b35a for highlights
- Button: #e6b35a background, #181818 text
*/

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #181818;
    color: #fff;
    line-height: 1.6;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #222;
    padding: 0.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.logo img {
    height: 60px;
    border-radius: 0;
    background: #fff;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
nav a {
    color: #e6b35a;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.2s;
}
nav a:hover {
    color: #fff;
}
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1rem 2rem 1rem;
    position: relative;
    overflow: hidden;
    background: #181818;
}
.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: linear-gradient(120deg, #e6b35a 0%, #181818 60%, #e6b35a 100%);
    opacity: 0.18;
    z-index: 0;
    animation: gradientMove 8s ease-in-out infinite alternate;
}
.hero > * {
    position: relative;
    z-index: 1;
}
@keyframes gradientMove {
    0% {
        transform: scale(1) translate(0, 0);
    }
    100% {
        transform: scale(1.1) translate(40px, 40px);
    }
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #e6b35a;
    animation: fadeInUp 1.5s ease-out;
}
.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.5s ease-out 0.3s both;
}
.cta {
    display: inline-block;
    background: #e6b35a;
    color: #181818;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1.5s ease-out 0.6s both;
    box-shadow: 0 4px 15px rgba(230, 179, 90, 0.3);
}
.cta:hover {
    background: #fff;
    color: #e6b35a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 179, 90, 0.4);
}
.hero-img img {
    width: 220px;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.gallery {
    background: #222;
    padding: 3rem 1rem;
    text-align: center;
}
.gallery h2 {
    color: #e6b35a;
    margin-bottom: 2rem;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.gallery-item img {
    width: 100%;
    border-radius: 12px;
    background: #fff;
    object-fit: cover;
    height: 220px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}
.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}
.how-it-works {
    background: #181818;
    padding: 3rem 1rem;
    text-align: center;
}
.how-it-works h2 {
    color: #e6b35a;
    margin-bottom: 2rem;
}
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.step {
    background: #222;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}
.reviews {
    background: #222;
    padding: 3rem 1rem;
    text-align: center;
}
.reviews h2 {
    color: #e6b35a;
    margin-bottom: 2rem;
}
.testimonial-carousel {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    min-height: 140px;
}
.testimonial-slide {
    display: none;
    background: #181818;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    font-size: 1.1rem;
    min-height: 120px;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
    opacity: 0;
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
}
.testimonial-slide.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    position: relative;
}
.carousel-btn {
    background: #e6b35a;
    color: #181818;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}
.carousel-btn.prev {
    left: -50px;
}
.carousel-btn.next {
    right: -50px;
}
.carousel-btn:hover {
    background: #fff;
    color: #e6b35a;
}
.contact {
    background: #181818;
    padding: 3rem 1rem;
    text-align: center;
}
.contact h2 {
    color: #e6b35a;
    margin-bottom: 2rem;
}
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto 2rem auto;
}
form input, form textarea {
    padding: 0.8rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    background: #222;
    color: #fff;
}
form button {
    background: #e6b35a;
    color: #181818;
    border: none;
    border-radius: 30px;
    padding: 0.8rem 2rem;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
form button:hover {
    background: #fff;
    color: #e6b35a;
}
.contact-info {
    color: #fff;
    font-size: 1.1rem;
}
.contact-info a {
    color: #e6b35a;
    text-decoration: none;
}
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    font-size: 1rem;
    margin-top: 2rem;
}
@media (max-width: 800px) {
    .steps, .review-list {
        flex-direction: column;
        align-items: center;
    }
    header {
        flex-direction: column;
        gap: 1rem;
    }
}

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