/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #0A1E3C;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #018a42, #0242a4);
    color: white;
    box-shadow: 0 4px 15px rgba(1, 138, 66, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 138, 66, 0.3);
}

.btn-outline {
    background: transparent;
    color: #018a42;
    border: 2px solid #018a42;
}

.btn-outline:hover {
    background: #018a42;
    color: white;
}

.small-text {
    font-size: 0.9rem;
    color: #64748B;
}

/* ===== HEADER STYLES ===== */
.header {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #018a42, #0242a4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A1E3C;
}

.logo-sub {
    font-size: 0.8rem;
    color: #64748B;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #475569;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-link.active {
    color: #018a42;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #018a42;
    border-radius: 2px;
}

.nav-link:hover {
    color: #018a42;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: #475569;
    font-size: 0.95rem;
}

.dropdown-content a:hover {
    background: #f1f5f9;
    color: #018a42;
}

.nav-cta {
    display: flex;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #0A1E3C;
    transition: 0.3s;
}

/* ===== CONTACT HERO ===== */
.service-hero {
    background: linear-gradient(135deg, rgba(10, 30, 60, 0.9) 0%, rgba(21, 38, 66, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.service-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.service-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: #E2E8F0;
}

/* ===== CONTENT GRID ===== */
.service-content {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
}

/* ===== SERVICE DETAILS ===== */
.service-details h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #0A1E3C;
}

.service-details > p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 40px;
    line-height: 1.8;
}
/* ===== CONTACT FORM RESPONSIVE STYLES ===== */
.contact-form-container {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    width: 100%;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #0A1E3C;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: #334155;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #CBD5E1;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Source Sans Pro', sans-serif;
    transition: all 0.3s ease;
    width: 100%;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #018a42;
    box-shadow: 0 0 0 3px rgba(1, 138, 66, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.5;
}

.contact-form button {
    align-self: flex-start;
    margin-top: 10px;
    width: auto;
    min-width: 180px;
}

/* ===== FAQ SECTION ===== */
.faq-section h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #0A1E3C;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-item h4 {
    font-size: 1.1rem;
    color: #0A1E3C;
    margin-bottom: 10px;
}

.faq-item p {
    color: #475569;
    line-height: 1.7;
}

/* ===== SIDEBAR ===== */
.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-box h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #0A1E3C;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    color: #018a42;
    font-size: 1.1rem;
    margin-top: 3px;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #0A1E3C;
}

.contact-item p {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.6;
}

.map-placeholder {
    background: #f8fafc;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    border: 2px dashed #CBD5E1;
}

.map-placeholder i {
    font-size: 2rem;
    color: #018a42;
    margin-bottom: 15px;
}

.map-placeholder p {
    margin-bottom: 10px;
    color: #475569;
}

.sidebar-box ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-box ul li {
    padding: 10px 0;
    color: #475569;
    position: relative;
    padding-left: 25px;
}

.sidebar-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #018a42;
    font-weight: bold;
}

/* ===== CONTACT FORM ENHANCEMENTS ===== */
.contact-form-container {
    background: linear-gradient(135deg, #ffffff 0%, #fafdfb 100%);
    border-radius: 16px;
    padding: 45px;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 5px 20px rgba(1, 138, 66, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    width: 100%;
    border: 1px solid rgba(1, 138, 66, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #018a42, #1E6FD9, #018a42);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.contact-form-container h3 {
    font-size: 1.7rem;
    margin-bottom: 35px;
    color: #0A1E3C;
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-container h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #018a42, #1E6FD9);
    border-radius: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 10px;
    color: #1E293B;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label::before {
    content: '•';
    color: #018a42;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease 0.1s;
}

.form-group:focus-within label::before {
    opacity: 1;
    transform: scale(1);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 18px;
    border: 2px solid #E2E8F0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Source Sans Pro', sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    color: #334155;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.02),
        inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #CBD5E1;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 2px rgba(255, 255, 255, 0.9);
}

/* Enhanced Focus Animations */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #018a42;
    box-shadow: 
        0 8px 32px rgba(1, 138, 66, 0.12),
        0 0 0 4px rgba(1, 138, 66, 0.08),
        inset 0 1px 2px rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    background: white;
    animation: fieldPulse 0.6s ease;
}

@keyframes fieldPulse {
    0% { box-shadow: 0 0 0 0 rgba(1, 138, 66, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(1, 138, 66, 0); }
    100% { box-shadow: none; }
}

.form-group:focus-within label {
    color: #018a42;
    transform: translateX(5px);
}

/* Textarea specific */
.form-group textarea {
    min-height: 160px;
    resize: vertical;
    line-height: 1.6;
    padding-top: 20px;
    transition: min-height 0.3s ease;
}

.form-group textarea:focus {
    min-height: 180px;
}

/* Select styling */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23018a42' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 50px;
    cursor: pointer;
}

/* Submit button */
.contact-form button[type="submit"] {
    align-self: flex-start;
    margin-top: 15px;
    width: auto;
    min-width: 200px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #018a42 0%, #00A878 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-form button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.7s ease;
}

.contact-form button[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 30px rgba(1, 138, 66, 0.2),
        0 5px 15px rgba(1, 138, 66, 0.1);
    background: linear-gradient(135deg, #00A878 0%, #018a42 100%);
}

.contact-form button[type="submit"]:hover::before {
    left: 100%;
}

.contact-form button[type="submit"]:active {
    transform: translateY(-1px);
}

/* Form notice */
.form-notice {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(1, 138, 66, 0.05) 0%, rgba(1, 138, 66, 0.02) 100%);
    border-radius: 8px;
    border-left: 4px solid #018a42;
}

.form-notice p {
    color: #475569;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    line-height: 1.5;
}

.form-notice i {
    color: #018a42;
    font-size: 1.1rem;
}

/* ===== ENHANCED FAQ SECTION ===== */
.faq-section h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #0A1E3C;
    position: relative;
    padding-bottom: 15px;
}

.faq-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #018a42, #1E6FD9);
    border-radius: 2px;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #fafdfb 100%);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(1, 138, 66, 0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #018a42, #1E6FD9);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.1),
        0 5px 20px rgba(1, 138, 66, 0.08);
}

.faq-item:hover::before {
    transform: scaleY(1);
}

.faq-item h4 {
    font-size: 1.15rem;
    color: #0A1E3C;
    margin-bottom: 10px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-item:hover h4 {
    color: #018a42;
}

.faq-item p {
    color: #475569;
    line-height: 1.7;
}

/* ===== ENHANCED SIDEBAR ===== */
.sidebar-box {
    background: linear-gradient(135deg, #ffffff 0%, #fafdfb 100%);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(1, 138, 66, 0.05);
    transition: transform 0.3s ease;
}

.sidebar-box:hover {
    transform: translateY(-3px);
}

.sidebar-box h3 {
    font-size: 1.35rem;
    margin-bottom: 25px;
    color: #0A1E3C;
    padding-bottom: 15px;
    border-bottom: 2px solid #f1f5f9;
    position: relative;
}

.sidebar-box h3::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #018a42, #1E6FD9);
    transition: width 0.3s ease;
}

.sidebar-box:hover h3::after {
    width: 60px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 12px 0;
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    color: #018a42;
    font-size: 1.2rem;
    margin-top: 3px;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2);
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #0A1E3C;
    font-weight: 600;
}

.contact-item p {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.6;
}

.map-placeholder {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 2px dashed rgba(1, 138, 66, 0.3);
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    border-color: #018a42;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.map-placeholder i {
    font-size: 2.5rem;
    color: #018a42;
    margin-bottom: 20px;
    animation: mapIconFloat 3s ease-in-out infinite;
}

@keyframes mapIconFloat {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.map-placeholder p {
    margin-bottom: 10px;
    color: #475569;
    font-size: 1rem;
}

.sidebar-box ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-box ul li {
    padding: 12px 0;
    color: #475569;
    position: relative;
    padding-left: 32px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sidebar-box ul li:hover {
    color: #018a42;
    transform: translateX(5px);
}

.sidebar-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #018a42;
    font-weight: bold;
    font-size: 1.1rem;
    width: 24px;
    height: 24px;
    background: rgba(1, 138, 66, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.sidebar-box ul li:hover::before {
    background: #018a42;
    color: white;
    transform: scale(1.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .content-grid {
        grid-template-columns: 1fr 380px;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-container {
        padding: 35px;
    }
    
    .form-row {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .service-content {
        padding: 60px 0;
    }
    
    .contact-form-container {
        padding: 30px 25px;
        border-radius: 14px;
    }
    
    .contact-form-container h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form {
        gap: 25px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .contact-form button[type="submit"] {
        width: 100%;
        min-width: auto;
    }
    
    .faq-section h3,
    .sidebar-box h3 {
        font-size: 1.4rem;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .sidebar-box {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .contact-form-container {
        padding: 25px 20px;
    }
    
    .contact-form-container h3 {
        font-size: 1.35rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
    }
    
    .contact-form button[type="submit"] {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
    
    .faq-item {
        padding: 18px;
    }
    
    .faq-item h4 {
        font-size: 1.1rem;
    }
    
    .sidebar-box {
        padding: 20px;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-item i {
        margin-top: 0;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .contact-form-container::before,
    .contact-form button[type="submit"]::before,
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus,
    .faq-item,
    .faq-item::before,
    .contact-item,
    .contact-item i,
    .map-placeholder i,
    .sidebar-box ul li,
    .sidebar-box ul li::before,
    .sidebar-box {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
    
    .contact-form button[type="submit"]:hover,
    .faq-item:hover,
    .contact-item:hover,
    .sidebar-box:hover {
        transform: none;
    }
}
/* ===== FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, #0A1E3C 0%, #152642 100%);
    color: #ffffff;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(1, 138, 66, 0.5) 50%, transparent 100%);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #018a42, #0242a4);
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer .logo-icon {
    background: linear-gradient(135deg, #018a42, #0242a4);
}

.footer .logo-main {
    color: white;
}

.footer .logo-sub {
    color: #94A3B8;
}

.footer-col p {
    color: #CBD5E1;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    color: #CBD5E1;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #018a42;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: #CBD5E1;
}

.contact-info i {
    color: #018a42;
    margin-top: 4px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CBD5E1;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: linear-gradient(135deg, #018a42, #0242a4);
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94A3B8;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: 0.3s;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .service-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-hero {
        padding: 80px 0;
    }
    
    .service-content {
        padding: 60px 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .service-hero h1 {
        font-size: 1.8rem;
    }
    
    .service-hero p {
        font-size: 1rem;
    }
    
    .contact-form-container,
    .sidebar-box {
        padding: 25px;
    }
    
    .btn {
        padding: 10px 24px;
        font-size: 0.95rem;
    }
    
    .footer {
        padding: 60px 0 25px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}   


/* WhatsApp Button Styling */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Form Notice */
.form-notice {
    margin-top: 20px;
    padding: 15px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #25D366;
    font-size: 0.9rem;
    color: #475569;
}

.form-notice i {
    color: #25D366;
    margin-right: 8px;
}

/* WhatsApp Icon Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-icon {
    animation: whatsapp-pulse 2s infinite;
}

/* Alternative: Button with WhatsApp Icon */
.btn-whatsapp-alt {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    position: relative;
    padding-left: 45px;
}

.btn-whatsapp-alt::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.76.982.998-3.675-.236-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.9 6.994c-.004 5.45-4.438 9.88-9.888 9.88m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.333.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.333 11.893-11.893 0-3.18-1.24-6.162-3.495-8.411'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}