/* ===================== GLOBAL STYLES ===================== */
body {
    font-family: 'Poppins', sans-serif;
    color: #1B3A4B;
    line-height: 1.6;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

p {
    color: #555;
}

a {
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}
a:hover {
    color: #D9A441;
    transform: translateY(-2px);
}

section {
    padding: 80px 0;
}

/* ===================== HERO SECTION ===================== */
#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
#hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}
#hero .hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: -1;
}
#hero h1 {
    font-size: 3rem;
}
#hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
#hero .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    background-color: #D9A441;
    border: none;
    color: #1B3A4B;
    font-weight: 600;
}
#hero .btn:hover {
    background-color: #1B3A4B;
    color: #fff;
}

/* ===================== SERVICES ===================== */
#services .card {
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    text-align: center;
    padding: 30px 20px;
}
#services .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
#services .card i {
    font-size: 2.5rem;
    color: #D9A441;
    margin-bottom: 15px;
}

/* ===================== PORTFOLIO ===================== */
#portfolio .card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
#portfolio .card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ===================== TESTIMONIALS ===================== */
#testimonials .card {
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
#testimonials .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}
#testimonials .carousel-control-prev-icon,
#testimonials .carousel-control-next-icon {
    background-color: #D9A441;
    border-radius: 50%;
    width: 40px; height: 40px;
}

/* ===================== BLOG ===================== */
#blog .card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
#blog .card:hover img {
    transform: scale(1.05);
}
#blog .card-body a:hover {
    color: #1B3A4B;
}

/* ===================== CONTACT ===================== */
#contact .card {
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
#contact .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}
#contact form .btn {
    border-radius: 50px;
}
#contact form .btn:hover {
    background-color: #1B3A4B;
    color: #fff;
}

/* ===================== FAQ ===================== */
#faq .accordion-button {
    border-radius: 15px;
    margin-bottom: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s, background-color 0.3s;
}
#faq .accordion-button:not(.collapsed) {
    background-color: #D9A441;
    color: #fff;
}
#faq .accordion-button:hover {
    transform: translateY(-3px);
}

/* ===================== SUSTAINABILITY ===================== */
.sustain-card {
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.sustain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.sustain-card i {
    font-size: 2.5rem;
    color: #28a745;
    margin-bottom: 15px;
}

/* ===================== SEASONAL OFFERS ===================== */
#seasonal .card {
    border-radius: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
#seasonal .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}
#seasonal .carousel-control-prev-icon,
#seasonal .carousel-control-next-icon {
    background-color: #D9A441;
    border-radius: 50%;
    width: 40px; height: 40px;
}

/* ===================== PROCESS ===================== */
.process-step {
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}
.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}
.process-step i {
    font-size: 2.5rem;
    color: #D9A441;
    margin-bottom: 10px;
}

/* ===================== FREE QUOTE ===================== */
#free-quote {
    color: #fff;
}
#free-quote .card {
    border-radius: 20px;
    padding: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}
#free-quote .btn {
    border-radius: 50px;
}
#free-quote .btn:hover {
    background-color: #D9A441;
}

/* ===================== SOCIAL MEDIA ===================== */
.social-icon {
    color: #1B3A4B;
    transition: color 0.3s, transform 0.3s;
}
.social-icon:hover {
    color: #D9A441;
    transform: translateY(-3px);
}
.instagram-feed img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.instagram-feed img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 992px) {
    #hero h1 { font-size: 2.5rem; }
}
@media (max-width: 768px) {
    #hero h1 { font-size: 2rem; }
    section { padding: 60px 0; }
}
@media (max-width: 576px) {
    #hero h1 { font-size: 1.8rem; }
    #hero p { font-size: 1rem; }
}
