/* static/css/style.css */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles */
.header-area {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    animation: slideDown 0.5s;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.navbar-brand h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0a5c2a;
    margin: 0;
}

.navbar-brand h1 i {
    color: #28a745;
    margin-right: 10px;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 8px 15px !important;
    margin: 0 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #0a5c2a !important;
    background: rgba(10, 92, 42, 0.1);
}

.nav-link.active {
    color: #0a5c2a !important;
    background: rgba(10, 92, 42, 0.1);
}

.schedule-btn {
    background: #0a5c2a !important;
    color: white !important;
    border-radius: 25px;
    padding: 8px 20px !important;
}

.schedule-btn:hover {
    background: #084721 !important;
    transform: translateY(-2px);
}

/* Main Banner */
.main-banner {
    margin-top: 76px; /* Height of fixed header */
}

.owl-banner .item {
    height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.owl-banner .item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}

.header-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: left;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.header-text .category {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 15px;
    display: block;
}

.header-text .category em {
    color: #0a5c2a;
    font-style: normal;
    font-weight: bold;
}

.header-text h2 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Property Cards */
.property-card {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    height: 100%;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.property-image {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.property-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #0a5c2a;
    margin: 10px 0;
}

.property-price small {
    font-size: 0.9rem;
    color: #6c757d;
}

.property-features {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.property-features li {
    display: inline-block;
    margin-right: 15px;
    color: #666;
    font-size: 0.9rem;
}

.property-features li i {
    color: #0a5c2a;
    margin-right: 5px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0a5c2a 0%, #0c5135 100%);
    color: white;
    padding: 50px 0 20px;
}

footer h3, footer h5 {
    color: white;
    margin-bottom: 20px;
}

footer .social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #dce4df;
}

footer .contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

footer .contact-info i {
    margin-right: 10px;
    margin-top: 3px;
    color: #e4eee8;
}

footer .footer-qr .qr-footer-image {
    width: 58px;
    height: 58px;
    max-width: 58px;
    background: #fff;
    padding: 8px;
    border-radius: 8px;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    footer .footer-qr .qr-footer-image {
        width: 58px;
        height: 58px;
        max-width: 58px;
    }
}

/* Service Cards */
.service-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border-color: #0a5c2a;
}

.service-icon {
    color: #e1eee6;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.rating i {
    color: #ffc107;
}

/* Owl Carousel Customization */
.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8) !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #333 !important;
    font-size: 1.5rem !important;
}

.owl-nav button.owl-prev {
    left: 20px;
}

.owl-nav button.owl-next {
    right: 20px;
}

.owl-nav button:hover {
    background: white !important;
}

.owl-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.owl-dot span {
    width: 12px !important;
    height: 12px !important;
    margin: 5px !important;
    background: rgba(255,255,255,0.5) !important;
}

.owl-dot.active span {
    background: white !important;
}

/* Map Section */
.map-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-container {
    border: 2px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.location-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    border-color: #0a5c2a;
}

/* Modal Customization */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #0a5c2a 0%, #084721 100%);
    color: white;
}

/* Form Styles */
.form-control, .form-select {
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: #0a5c2a;
    box-shadow: 0 0 0 0.25rem rgba(10, 92, 42, 0.25);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-text h2 {
        font-size: 2rem;
    }
    
    .owl-banner .item {
        height: 400px;
    }
    
    .property-card {
        margin-bottom: 30px;
    }
    
    .navbar-brand h1 {
        font-size: 1.2rem;
    }
    
    .main-banner {
        margin-top: 70px;
    }
}

@media (max-width: 576px) {
    .header-text h2 {
        font-size: 1.8rem;
    }
    
    .header-text {
        text-align: center;
        width: 95%;
    }
    
    .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem !important;
    }
}

/* Utility Classes */
.bg-gradient-primary {
    background: linear-gradient(135deg, #0a5c2a 0%, #084721 100%) !important;
}

.text-gradient {
    background: linear-gradient(135deg, #0a5c2a 0%, #084721 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Spacing Utilities */
.section-padding {
    padding: 80px 0;
}

/* Animation Classes */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* Button Styles */
.btn {
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #0a5c2a;
    border-color: #0a5c2a;
}

.btn-primary:hover {
    background: #084721;
    border-color: #07381b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 92, 42, 0.3);
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
}

/* Card Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0a5c2a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #084721;
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50%;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="90" cy="10" r="20" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="80" r="15" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.contact-hero h1 {
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.contact-hero p {
    position: relative;
    z-index: 2;
}

/* Contact Info Cards */
.contact-info-card {
    background: white;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a5c2a, #28a745);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-info-card:hover {
    box-shadow: 0 10px 30px rgba(10, 92, 42, 0.15);
    border-color: #0a5c2a;
}

.info-icon {
    background: linear-gradient(135deg, rgba(10, 92, 42, 0.1), rgba(40, 167, 69, 0.1)) !important;
    transition: all 0.3s ease;
}

.contact-info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(10, 92, 42, 0.2), rgba(40, 167, 69, 0.2)) !important;
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-15px);
}

/* Contact Form Card */
.contact-form-card {
    border: 1px solid #e0e0e0;
    background: white;
}

.contact-form-card h3 {
    position: relative;
    padding-bottom: 15px;
}

.contact-form-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0a5c2a, #28a745);
    border-radius: 2px;
}

/* Form Group Styling */
.form-group {
    position: relative;
}

.form-group label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.form-control,
.form-select,
input[type="text"],
input[type="email"],
input[type="phone"],
input[type="number"],
textarea,
select {
    border: 2px solid #e0e0e0 !important;
    border-radius: 12px !important;
    padding: 12px 15px !important;
    transition: all 0.3s ease !important;
    font-size: 1rem !important;
    background-color: #fff !important;
    color: #333 !important;
}

.form-control:focus,
.form-select:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="phone"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
    border-color: #0a5c2a !important;
    box-shadow: 0 0 0 0.2rem rgba(10, 92, 42, 0.15) !important;
    outline: none !important;
    background-color: #fff !important;
    color: #333 !important;
}

.form-control::placeholder,
input::placeholder,
textarea::placeholder {
    color: #999 !important;
    opacity: 1 !important;
}

.form-group .input-group-text {
    border: 2px solid #e0e0e0 !important;
    border-right: none !important;
    background-color: #f8f9fa !important;
}

.form-group .input-group:focus-within .input-group-text {
    border-color: #0a5c2a !important;
}

.form-group .input-group:focus-within input {
    border-color: #0a5c2a !important;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

#id_message {
    resize: vertical;
    min-height: 150px;
}

/* Alert Custom Styling */
.alert-custom {
    border: none;
    border-left: 4px solid;
    border-radius: 8px;
}

.alert-success.alert-custom {
    border-left-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
    color: #155724;
}

.alert-danger.alert-custom {
    border-left-color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    color: #721c24;
}

/* Submit Button */
.btn-contact-submit {
    background: linear-gradient(135deg, #0a5c2a 0%, #28a745 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-contact-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left 0.3s ease;
}

.btn-contact-submit:hover::before {
    left: 100%;
}

.btn-contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(10, 92, 42, 0.3);
}

.btn-contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Sidebar Cards */
.sidebar-card {
    border: 1px solid #e0e0e0;
    background: white;
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 8px 20px rgba(10, 92, 42, 0.1);
    border-color: #0a5c2a;
}

.sidebar-card h5 {
    position: relative;
    padding-bottom: 15px;
}

.sidebar-card h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #0a5c2a;
    border-radius: 1px;
}

.hours-grid .hour-item {
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.hours-grid .hour-item:last-child {
    border-bottom: none;
}

.hours-grid .day {
    color: #0a5c2a;
    font-size: 0.95rem;
}

.hours-grid .time {
    font-size: 0.9rem;
}

.response-info p {
    font-size: 0.95rem;
    margin: 0;
}

/* Location Map Section */
#location-map {
    scroll-margin-top: 100px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Button Outline Success with Hover */
.btn-outline-success {
    color: #0a5c2a;
    border-color: #0a5c2a;
    border-radius: 8px;
}

.btn-outline-success:hover {
    background: #0a5c2a;
    border-color: #0a5c2a;
    color: white;
    transform: translateY(-2px);
}

/* Form Validation Styles */
.was-validated .form-control:valid,
.was-validated .form-select:valid {
    border-color: #28a745;
}

.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: #dc3545;
}

.valid-feedback,
.invalid-feedback {
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 30px 0;
    }

    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-info-card {
        margin-bottom: 20px;
    }

    #id_message {
        min-height: 120px;
    }

    .sidebar-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .contact-hero h1 {
        font-size: 1.5rem;
    }

    .contact-hero p {
        font-size: 0.95rem;
    }

    .contact-form-card {
        padding: 20px;
    }

    .btn-contact-submit {
        padding: 12px 20px;
    }
}

/* Success Animation */
@keyframes slideInSuccess {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert-custom {
    animation: slideInSuccess 0.5s ease;
}

/* Loading Spinner Color */
.spinner-border-sm {
    color: white;
}

/* Focus visible for accessibility */
.form-control:focus-visible,
.form-select:focus-visible,
.btn:focus-visible {
    outline: 2px solid #0a5c2a;
    outline-offset: 2px;
}

/* ===== HOME PAGE STYLES ===== */

/* Banner Subtitle */
.banner-subtitle {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.5s backwards;
}

/* Stats Section */
.stats-section {
    border-top: 1px solid rgba(10, 92, 42, 0.1);
    border-bottom: 1px solid rgba(10, 92, 42, 0.1);
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

/* Section Headers */
.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(10, 92, 42, 0.1);
    border-left: 3px solid #0a5c2a;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.section-subtitle {
    font-size: 1.05rem;
}

/* Enhanced Property Cards */
.feature-badge {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 92, 42, 0.05), rgba(40, 167, 69, 0.05));
    border: 1px solid rgba(10, 92, 42, 0.1);
    border-radius: 10px;
    padding: 10px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.feature-badge i {
    color: #0a5c2a;
    margin-right: 8px;
    font-size: 1rem;
}

.feature-badge:hover {
    background: linear-gradient(135deg, rgba(10, 92, 42, 0.1), rgba(40, 167, 69, 0.1));
    border-color: #0a5c2a;
}

.amenity-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(10, 92, 42, 0.1), rgba(40, 167, 69, 0.1));
    color: #0a5c2a;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.badge-featured {
    background: linear-gradient(135deg, #0a5c2a, #28a745);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
}

.badge-status {
    background: linear-gradient(135deg, #dc3545, #ec6a6a);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Property Image Hover Effect */
.property-image {
    transition: transform 0.3s ease;
}

.property-card:hover .property-image {
    transform: scale(1.05);
}

.btn-primary-custom {
    background: linear-gradient(135deg, #0a5c2a, #28a745);
    border: none;
    color: white;
    border-radius: 10px;
    padding: 10px 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, #084721, #1e8e55);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 92, 42, 0.3);
}

.btn-secondary-custom {
    background: #e9ecef;
    border: none;
    color: #666;
    border-radius: 10px;
    padding: 10px 15px;
    font-weight: 600;
}

.btn-outline-custom {
    border: 2px solid #0a5c2a;
    color: #0a5c2a;
    background: white;
    border-radius: 10px;
    padding: 10px 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: #0a5c2a;
    color: white;
}

/* Service Cards */
.service-card-custom {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #0a5c2a;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 92, 42, 0.1), rgba(40, 167, 69, 0.1));
    border-radius: 15px;
    color: #0a5c2a;
    transition: all 0.3s ease;
}

.service-card-custom:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(10, 92, 42, 0.2), rgba(40, 167, 69, 0.2));
}

.price-badge {
    display: inline-block;
    padding: 8px 14px;
    background: linear-gradient(135deg, #0a5c2a, #28a745);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.text-sm {
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, rgba(10, 92, 42, 0.02), rgba(40, 167, 69, 0.02));
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.testimonial-card-custom {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
}

.testimonial-card-custom:hover {
    box-shadow: 0 10px 30px rgba(10, 92, 42, 0.15);
    border-color: #0a5c2a;
    transform: translateY(-5px);
}

.avatar-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(10, 92, 42, 0.1), rgba(40, 167, 69, 0.1));
    color: #0a5c2a;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    border-radius: 0;
}

.cta-section h3 {
    font-size: 1.8rem;
}

/* Responsive Home Page */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .service-card-custom {
        padding: 20px;
    }

    .testimonial-card-custom {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .section-badge {
        font-size: 0.8rem;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}

/* ===== FOOTER STYLES ===== */

.footer-section {
    color: #fff;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h5,
.footer-widget h6 {
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h5::after,
.footer-widget h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #0a5c2a, #28a745);
    border-radius: 1px;
}

.footer-logo {
    max-height: 60px;
    object-fit: contain;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #28a745 !important;
    padding-left: 5px;
}

.social-icon-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(10, 92, 42, 0.1);
    color: #28a745;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon-footer:hover {
    background: #0a5c2a;
    color: white;
    transform: translateY(-3px);
}

.contact-info-footer .icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(10, 92, 42, 0.1);
    color: #28a745;
    border-radius: 8px;
    flex-shrink: 0;
}

.contact-item {
    transition: all 0.3s ease;
}

.contact-item:hover {
    padding-left: 10px;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0a5c2a, #28a745);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.2rem;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #084721, #1e8e55);
    transform: translateY(-5px);
}

.scroll-to-top.show {
    display: flex;
}

@media (max-width: 768px) {
    .footer-widget {
        margin-bottom: 20px;
    }

    .contact-info-footer .icon-box {
        min-width: 40px;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}
