/* Custom styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    --primary-dark: #01222c;
    --primary-light: #5a8e9d;
    --accent: #ffd600;
}
/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
/* Button animation */
.btn-animate {
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn-animate:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Sticky Quote Button */
.sticky-quote-button {
    position: fixed !important;
    bottom: 2rem !important;
    right: 2rem !important;
    z-index: 9999 !important;
}

.sticky-quote-button a {
    display: inline-flex !important;
    align-items: center !important;
    background-color: #e1d8ce !important;
    transition: all 0.3s ease !important;
}

.sticky-quote-button a:hover {
    background-color: #ffc600 !important;
    transform: translateY(-2px) !important;
}
/* Service card hover effect */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}
/* Input focus styles */
input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 0 3px rgba(255, 214, 0, 0.3);
    border-color: var(--accent, #ffd600);
}

/* FAQ Styles */
.faq-question {
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-question:hover {
    background-color: #f8f8f8;
}

.faq-answer {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}

.faq-answer:not(.hidden) {
    max-height: 500px;
    opacity: 1;
    padding: 1rem 1.5rem;
}

.faq-item {
    border: 1px solid #eee;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.faq-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question:not(.hidden) i {
    transform: rotate(45deg);
}
/* Service list styles */
.service-list li {
    transition: color 0.2s ease;
}
.service-list li:hover {
    color: var(--accent, #ffd600);
}

/* Lightbox styles */
#lightbox-modal {
    transition: opacity 0.3s ease;
}
#lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
}
#lightbox-close {
    cursor: pointer;
    transition: transform 0.2s ease;
}
#lightbox-close:hover {
    transform: scale(1.2);
}
