/* 
* Western Tree Growers Rural SACCO Limited
* Main Stylesheet
* 
* This stylesheet contains custom styling for the Western Tree Growers Rural SACCO Limited website.
* It uses nature-inspired elements and a green color palette with earthy tones.
* Enhanced for modern, beautiful UI experience.
*/

/* ========== BASE STYLES ========== */
:root {
    --primary: #2e7d32;        /* Dark Green */
    --primary-light: #60ad5e;  /* Medium Green */
    --primary-dark: #005005;   /* Deep Green */
    --secondary: #795548;      /* Brown */
    --accent: #ffc107;         /* Amber/Gold */
    --accent-light: #ffecb3;   /* Light Amber */
    --light: #f5f5f5;          /* Off-White */
    --light-transparent: rgba(245, 245, 245, 0.7); /* Semi-transparent light */
    --dark: #263238;           /* Dark Blue-Grey */
    --success: #4caf50;        /* Green */
    --info: #03a9f4;           /* Light Blue */
    --warning: #ff9800;        /* Orange */
    --danger: #f44336;         /* Red */
    --text-dark: #212121;      /* Almost Black */
    --text-light: #fafafa;     /* Almost White */
    --text-muted: #757575;     /* Medium Grey */
    --border-color: #e0e0e0;   /* Light Grey */
    --box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1); /* Enhanced shadow */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Custom transition */
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.75rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.7;
}

.display-4 {
    font-weight: 800;
    letter-spacing: -0.03em;
}

/* Enhanced Buttons */
.btn {
    border-radius: 8px;
    padding: 0.65rem 1.5rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.btn::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.btn:hover::after {
    width: 100%;
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline-success {
    color: var(--success);
    border-color: var(--success);
    border-width: 2px;
}

.btn-outline-success:hover {
    background-color: var(--success);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(76,175,80,0.15);
}

.btn-success {
    background-color: var(--success);
    border-color: var(--success);
    color: white;
}

.btn-success:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,80,5,0.2);
}

.text-success {
    color: var(--success) !important;
}

.bg-success {
    background-color: var(--primary) !important;
}

.border-success {
    border-color: var(--primary) !important;
}

/* ========== TOP INFO BAR ========== */
/* Enhanced styling for top info bar with modern effects */
.top-info-bar {
    background-color: var(--primary-dark);
    padding: 0.65rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-info-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--primary-dark), var(--primary));
    z-index: -1;
}

.top-info-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape-circle-1 {
    position: absolute;
    top: -20px;
    right: 10%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
}

.shape-circle-2 {
    position: absolute;
    bottom: -30px;
    left: 20%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

.shape-wave {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23FFFFFF'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.3' fill='%23FFFFFF'/%3E%3C/svg%3E");
    background-size: 1200px 100%;
}

.top-contact-info {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.top-contact-info li {
    margin-right: 1.5rem;
    display: flex;
    align-items: center;
}

.top-contact-info i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
    color: var(--accent);
    transition: var(--transition-smooth);
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.top-contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
}

.top-contact-info a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.top-contact-info a:hover {
    color: var(--accent);
}

.top-contact-info a:hover::after {
    width: 100%;
}

.top-location {
    color: rgba(255, 255, 255, 0.7);
}

.top-social-links {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    align-items: center;
}

.top-social-links li {
    margin-left: 0.75rem;
}

.top-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.85);
    background-color: rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.top-social-links a:hover {
    transform: translateY(-2px);
    color: white;
}

.facebook-icon:hover {
    background-color: #3b5998;
}

.twitter-icon:hover {
    background-color: #1da1f2;
}

.instagram-icon:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.linkedin-icon:hover {
    background-color: #0077b5;
}

.top-quick-link {
    font-size: 0.85rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    margin-left: 0.75rem;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-weight: 600;
}

.top-quick-link:hover {
    background-color: var(--accent);
    color: var(--primary-dark);
}

@media (max-width: 767.98px) {
    .top-contact-info {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .top-contact-info li {
        margin: 0 0.75rem;
        font-size: 0.8rem;
    }
    
    .top-social-links {
        justify-content: center;
    }
}

/* ========== HEADER & NAVIGATION ========== */
/* Enhanced navigation with decorative elements and animations */
.main-header {
    position: fixed;
    top: 2.5rem; /* Height of top-info-bar */
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
}

.header-bg-shape {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background-color: rgba(76, 175, 80, 0.05);
    clip-path: polygon(100% 0, 0% 0, 100% 100%);
    z-index: -1;
    animation: shimmer 8s infinite linear;
}

.header-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(255, 255, 255, 0) 50%, rgba(76, 175, 80, 0.03) 100%);
    z-index: -1;
}

.header-floating-leaves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.floating-leaf {
    position: absolute;
    color: rgba(76, 175, 80, 0.1);
    font-size: 1.5rem;
    z-index: -1;
    pointer-events: none;
}

.leaf-1 {
    top: 20%;
    left: 10%;
    animation: float-leaf 20s infinite ease-in-out;
    font-size: 1.2rem;
}

.leaf-2 {
    top: 50%;
    right: 15%;
    animation: float-leaf 25s infinite ease-in-out reverse;
    font-size: 1rem;
}

.leaf-3 {
    bottom: 20%;
    left: 30%;
    animation: float-leaf 18s infinite ease-in-out 2s;
    font-size: 0.8rem;
}

@keyframes float-leaf {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(10px, 10px) rotate(5deg);
    }
    50% {
        transform: translate(0, 20px) rotate(0deg);
    }
    75% {
        transform: translate(-10px, 10px) rotate(-5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes shimmer {
    0% {
        background-color: rgba(76, 175, 80, 0.03);
    }
    50% {
        background-color: rgba(76, 175, 80, 0.08);
    }
    100% {
        background-color: rgba(76, 175, 80, 0.03);
    }
}

.navbar {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
    padding: 1.4rem 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border-radius: 0 0 32px 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-top: none;
    position: fixed;
    width: 100%;
    top: 2.5rem;
    left: 0;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.navbar-scrolled {
    padding: 0.75rem 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

/* Brand container with enhanced styling */
.brand-container {
    display: flex;
    align-items: center;
    position: relative;
}

.brand-logo-container {
    position: relative;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.2rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.25) 0%, rgba(76, 175, 80, 0.08) 100%);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.18),
                inset 0 -3px 6px rgba(0, 0, 0, 0.08),
                inset 0 3px 6px rgba(255, 255, 255, 0.25);
    transform-style: preserve-3d;
    perspective: 1000px;
    margin-top: -2px;
}

.brand-logo-container:hover {
    transform: scale(1.08) rotate(5deg);
}

.brand-logo-container::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    z-index: -1;
    transition: var(--transition-smooth);
}

.brand-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: var(--transition-smooth);
    transform-origin: center;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-highlight {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--dark);
    letter-spacing: -0.02em;
}

.brand-tagline {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: 3px;
}

.logo-glow-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.3) 0%, rgba(76, 175, 80, 0) 70%);
    animation: glow-pulse 3s ease-in-out infinite;
    z-index: -1;
}

.logo-shine-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    animation: shine 4s infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }
    20%, 100% {
        transform: translateX(100%) rotate(30deg);
    }
}

@keyframes glow-pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.2;
    }
    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.navbar-brand:hover .brand-logo-container::before {
    transform: scale(1.2);
    background-color: rgba(76, 175, 80, 0.15);
}

.navbar-brand:hover .brand-icon {
    transform: rotate(5deg) scale(1.1);
}

.navbar-nav {
    gap: 0.5rem;
}

.nav-icon {
    margin-right: 0.4rem;
    font-size: 0.95rem;
    display: inline-block;
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 600;
    position: relative;
    padding: 1rem 1.6rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    margin: 0 0.4rem;
    background: linear-gradient(to right, transparent 50%, rgba(76, 175, 80, 0.15) 50%);
    background-size: 200% 100%;
    background-position: 0 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.04);
    transform-style: preserve-3d;
    perspective: 800px;
    height: 3.2rem;
    justify-content: center;
    overflow: hidden;
}

.nav-hover-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px;
    opacity: 0;
}

.navbar-nav .nav-link:hover .nav-hover-indicator,
.navbar-nav .nav-link.active .nav-hover-indicator {
    width: 40%;
    opacity: 1;
}

.navbar-nav .nav-link:hover {
    transform: translateY(-2px);
    background-position: -100% 0;
}

.navbar-nav .nav-link.active {
    color: var(--primary);
    background-color: rgba(76, 175, 80, 0.1);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
}

.nav-icon-container {
    transition: transform 0.3s ease;
    margin-right: 0.5rem;
}

.navbar-nav .nav-link:hover .nav-icon-container {
    transform: translateY(-2px) scale(1.1);
}

.navbar-nav .nav-link:hover {
    background-position: -100% 0;
    transform: translateY(-2px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link.active {
    color: var(--primary);
    background-color: rgba(76, 175, 80, 0.08);
}

.navbar-nav .nav-link:hover .nav-icon,
.navbar-nav .nav-link:focus .nav-icon,
.navbar-nav .nav-link.active .nav-icon {
    transform: translateY(-2px);
    color: var(--primary);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0.3rem;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transition: width 0.3s ease;
    border-radius: 5px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after,
.navbar-nav .nav-link.active::after {
    width: 40%;
}

.nav-cta-button {
    margin-top: 0.5rem;
}

.nav-cta-button .btn {
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.5rem;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.25);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
}

.cta-btn-pulse {
    position: relative;
}

.cta-btn-pulse::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 34px;
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    z-index: -2;
    animation: pulse-border 2s infinite;
    opacity: 0.6;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}

.nav-cta-button .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-light), var(--primary));
    transition: all 0.6s;
    z-index: -1;
}

.nav-cta-button .btn:hover::before {
    left: 0;
}

.nav-cta-button .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

/* 3D Button Effect */
.cta-btn-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15), 
                0 4px 8px rgba(0, 0, 0, 0.08),
                0 -3px 0 rgba(255, 255, 255, 0.25) inset,
                0 3px 3px rgba(0, 0, 0, 0.15) inset;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 28px;
    border-radius: 30px;
    overflow: hidden;
}

.cta-btn-3d::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 30px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
}

.cta-btn-3d:hover {
    transform: translateY(-5px) rotateX(10deg) scale(1.05);
    box-shadow: 0 15px 25px rgba(76, 175, 80, 0.25), 
                0 8px 12px rgba(0, 0, 0, 0.12),
                0 -3px 0 rgba(255, 255, 255, 0.35) inset,
                0 3px 3px rgba(0, 0, 0, 0.15) inset;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.cta-btn-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transition: all 0.6s;
}

.cta-btn-3d:hover::before {
    left: 100%;
}

.cta-btn-3d:active {
    transform: translateY(0) rotateX(0);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1),
                0 1px 2px rgba(0, 0, 0, 0.05),
                0 -1px 0 rgba(255, 255, 255, 0.2) inset,
                0 2px 2px rgba(0, 0, 0, 0.1) inset;
    transition: transform 0.1s, box-shadow 0.1s;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    transition: var(--transition-smooth);
    position: relative;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler:hover {
    transform: rotate(5deg);
}

/* Custom hamburger menu */
.custom-toggler {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 8px;
    margin-left: auto;
}

.toggler-icon {
    position: relative;
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.toggler-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.custom-toggler:hover .toggler-icon span:nth-child(1) {
    transform: translateY(2px);
}

.custom-toggler:hover .toggler-icon span:nth-child(3) {
    transform: translateY(-2px);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.navbar-toggler-icon {
    background-image: none;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--box-shadow);
    border-radius: 12px;
    padding: 1rem 0;
    margin-top: 1rem;
    animation: fadeIn 0.3s ease;
}

.dropdown-item {
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    transition: var(--transition-smooth);
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(46, 125, 50, 0.1);
    color: var(--primary);
    transform: translateX(5px);
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 1.5rem;
        box-shadow: var(--box-shadow);
        border-radius: 12px;
        margin-top: 1rem;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-nav {
        gap: 0.25rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .navbar-nav .nav-item:last-child {
        margin-top: 1rem;
    }
}

/* Main content padding for fixed header */
main {
    padding-top: 7rem; /* Top info bar + navbar height + extra padding */
}

/* ========== HERO SECTION ========== */
.hero-section {
    padding: 6rem 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-shape-top {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 300px;
    background-color: rgba(76, 175, 80, 0.07);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%);
    z-index: 0;
}

.hero-shape-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45%;
    height: 300px;
    background-color: rgba(76, 175, 80, 0.07);
    clip-path: polygon(0 0, 70% 0, 100% 100%, 0 100%);
    z-index: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(96, 173, 94, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
}

.hero-welcome-text {
    display: inline-block;
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding: 0.5rem 1rem;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 30px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-button {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.hero-stat-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-image-container {
    position: relative;
    padding: 2rem;
}

.hero-image-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(76, 175, 80, 0.05);
    border-radius: 30px;
    z-index: 0;
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.1);
    transform: rotate(-3deg);
}

.hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-svg {
    filter: drop-shadow(0 10px 20px rgba(76, 175, 80, 0.2));
    max-width: 80%;
    transition: var(--transition-smooth);
    animation: float 6s ease-in-out infinite;
}

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

.hero-floating-badge {
    position: absolute;
    bottom: 10%;
    right: 5%;
    background: linear-gradient(45deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    animation: pulse 2s infinite;
}

.hero-badge-icon {
    font-size: 1.5rem;
}

.hero-badge-text {
    font-weight: 600;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-image-container {
        margin-top: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

/* ========== FEATURE CARDS ========== */
.mission-vision-section {
    background-color: #f9f9f9;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(76, 175, 80, 0.05);
    top: -150px;
    right: -150px;
    border-radius: 50%;
    z-index: 0;
}

.mission-vision-section::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(76, 175, 80, 0.05);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    z-index: 0;
}

.feature-card {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    height: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.feature-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    font-size: 2.5rem;
    margin-right: 1.5rem;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-card-icon {
    transform: rotate(10deg) scale(1.1);
    background-color: var(--primary);
    color: white;
}

.feature-card-content {
    flex-grow: 1;
}

.feature-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.feature-card-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.feature-card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
}

.mission-card .feature-card-decoration {
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.vision-card .feature-card-decoration {
    background: linear-gradient(to right, var(--secondary), var(--primary));
}

.value-card {
    padding: 2.5rem 2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--primary);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(76, 175, 80, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: 0;
}

.value-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.18);
    border-top: 4px solid var(--primary-light);
}

.value-card:hover .value-icon {
    transform: scale(1.2) rotate(10deg);
    color: var(--primary-light);
}

.value-card .value-icon {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.interactive-item {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.interactive-item:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 30%, rgba(76, 175, 80, 0.05) 50%, transparent 70%);
    animation: shimmer 3s infinite linear;
}

.product-detail-card {
    border: 1px solid rgba(76, 175, 80, 0.1);
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.product-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.12);
}

.product-icon-container {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.05) 100%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.1);
}

.product-detail-card:hover .product-icon-container {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.1) 100%);
}

.value-icon-container {
    width: 70px;
    height: 70px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon {
    font-size: 2rem;
    color: var(--primary);
}

.value-title {
    font-size: 1.25rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.value-text {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========== PAGE HERO ========== */
.page-hero {
    padding: 3rem 0;
    background-color: var(--light);
    margin-bottom: 2rem;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '›';
    color: var(--primary);
}

/* ========== SECTION STYLES ========== */
section {
    padding: 4rem 0;
}

/* Enhanced Services Section Styles */
.service-shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.05) 0%, rgba(255, 255, 255, 0) 50%);
    z-index: 0;
}

.service-card-modern {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary-light));
    transition: all 0.4s ease;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.15);
}

.service-card-content {
    padding: 2rem;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.1) 100%);
}

.service-icon {
    font-size: 2rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.service-title {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: var(--text-muted);
}

.service-list li i {
    color: var(--primary);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.service-description {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-action {
    margin-top: auto;
}

.btn-hover-fill {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    transition: all 0.4s ease;
}

.btn-hover-fill span {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-hover-fill i {
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    font-size: 1.1rem;
}

.btn-hover-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--primary);
    transition: all 0.4s ease;
}

.btn-hover-fill:hover {
    color: white;
    border-color: var(--primary);
}

.btn-hover-fill:hover::before {
    width: 100%;
}

.btn-hover-fill:hover i {
    transform: translateX(3px);
}

.badge {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.section-title {
    margin-bottom: 3rem;
    position: relative;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
}

.section-title.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ========== CARD STYLES ========== */
.card {
    border-radius: 16px;
    border: none;
    transition: var(--transition-smooth);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    background-color: white;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--box-shadow);
}

.card-body {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.service-card, .product-card {
    border-top: none;
    background: linear-gradient(to bottom, rgba(76, 175, 80, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.service-card::before, .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary-light) 100%);
    z-index: 1;
}

.service-icon, .product-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    transition: var(--transition-smooth);
    display: inline-block;
}

.service-card:hover .service-icon, .product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary-dark);
}

.service-title, .product-title {
    color: var(--primary);
    margin-bottom: 1.25rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.service-title::after, .product-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-light);
    transition: var(--transition-smooth);
}

.service-card:hover .service-title::after, .product-card:hover .product-title::after {
    width: 70px;
}

.service-detail-card, .product-detail-card {
    border-left: none;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before, .product-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--primary-light) 100%);
    z-index: 1;
}

.service-detail-icon, .product-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    display: inline-block;
}

.card-body ul {
    padding-left: 0.5rem;
}

.card-body ul li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.25rem;
}

.card-body ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(76, 175, 80, 0.1);
}

.team-icon {
    font-size: 3rem;
    color: var(--primary);
}

.team-position {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.partner-card, .project-card {
    border-bottom: 3px solid var(--primary);
}

.partner-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.branch-card {
    border-right: 3px solid var(--primary);
}

.testimonial-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--primary-light);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(76, 175, 80, 0.1);
    margin-right: 1rem;
}

.testimonial-info h5 {
    margin-bottom: 0;
    color: var(--text-dark);
}

.testimonial-info p {
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ========== FEATURE LISTS ========== */
.check-list {
    list-style: none;
    padding-left: 0;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 0.5rem;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success);
    font-weight: bold;
}

/* ========== FORMS ========== */
.form-control, .form-select {
    border-radius: 10px;
    border: 1px solid var(--border-color);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: var(--transition-smooth);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
}

.form-control:hover, .form-select:hover {
    border-color: var(--primary-light);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.1);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.15);
    outline: none;
}

.form-control::placeholder {
    color: rgba(33, 33, 33, 0.4);
    font-size: 0.95rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-check {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: -2rem;
    margin-top: 0.2rem;
    border: 2px solid var(--border-color);
    transition: var(--transition-smooth);
}

.form-check-input:checked {
    background-color: var(--success);
    border-color: var(--success);
    box-shadow: 0 0 0 0.15rem rgba(76, 175, 80, 0.25);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.15rem rgba(76, 175, 80, 0.25);
    border-color: var(--primary-light);
}

.form-check-label {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-form-container {
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    padding: 2.5rem;
    background-color: white;
    position: relative;
    z-index: 1;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(to bottom, var(--primary) 0%, var(--primary-light) 100%);
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: -1;
}

/* Form response styling */
#formResponse {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.alert-success {
    background-color: rgba(76, 175, 80, 0.15);
    color: var(--primary-dark);
    border-left: 4px solid var(--success);
}

.alert-danger {
    background-color: rgba(244, 67, 54, 0.15);
    color: var(--danger);
    border-left: 4px solid var(--danger);
}

/* ========== CALL TO ACTION ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

.cta-diagonal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.05) 75%, transparent 75%, transparent);
    background-size: 100px 100px;
    opacity: 0.4;
    z-index: 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.cta-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    border-radius: 4px;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 90%;
}

.cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-feature-item i {
    color: var(--accent);
    font-size: 1.25rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.cta-primary-btn, .cta-secondary-btn {
    padding: 0.75rem 1.75rem;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.cta-primary-btn {
    background-color: white;
    color: var(--primary-dark);
    border: none;
}

.cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: var(--primary-dark);
    background-color: var(--accent-light);
}

.cta-secondary-btn {
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.cta-secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-3px);
}

.cta-image-container {
    position: relative;
    height: 400px;
}

.cta-floating-card {
    position: absolute;
    background-color: white;
    color: var(--primary-dark);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.cta-floating-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.cta-card-1 {
    top: 20%;
    left: 0;
    animation: float 6s ease-in-out infinite;
}

.cta-card-2 {
    bottom: 20%;
    right: 0;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

.cta-decoration-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 4px dashed rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: slow-spin 20s linear infinite;
}

@keyframes slow-spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--dark);
    color: var(--text-light);
    padding: 4rem 0 0;
}

.footer h5 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-light);
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-decoration: none;
    padding-left: 5px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-fade-in {
    animation: fadeIn 1s ease;
}

.animate-slide-up {
    animation: slideInUp 1s ease;
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 767.98px) {
    /* Fix header positioning on mobile */
    .top-info-bar {
        position: relative;
        padding: 0.5rem 0;
    }
    
    .main-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }
    
    main {
        padding-top: 4.5rem; /* Only navbar height + padding on mobile */
    }
    
    .hero-section {
        padding: 3rem 0;
        text-align: center;
        min-height: auto;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }

    /* Mobile styles for hero elements */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Mobile styles for feature cards */
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-card-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .feature-card-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Mobile styles for CTA section */
    .cta-section {
        padding: 4rem 0;
        text-align: center;
    }
    
    .cta-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .cta-description {
        max-width: 100%;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
    
    .cta-feature-item {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-primary-btn, .cta-secondary-btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    /* Footer mobile styles */
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer h5 {
        margin-top: 2rem;
    }
    
    /* Mobile styles for advertisement */
    .ad-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .ad-text {
        max-width: 100%;
    }
}

/* Special icons for product sections */
.product-icon-container {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(76, 175, 80, 0.1);
    margin-bottom: 1.5rem;
}

.product-icon {
    font-size: 2.5rem;
    color: var(--primary);
}

/* ========== ADVERTISEMENT SECTION ========== */
.ad-section {
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: white;
    box-shadow: var(--box-shadow);
    border-radius: 12px;
    margin: 2rem 0;
}

.ad-section::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -100px;
    right: -50px;
    z-index: 0;
}

.ad-section::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    bottom: -70px;
    left: -70px;
    z-index: 0;
}

.ad-content {
    position: relative;
    z-index: 2;
}

.ad-title {
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.ad-title::after {
    content: '';
    position: absolute;
    height: 3px;
    width: 70px;
    background-color: var(--accent);
    bottom: -10px;
    left: 0;
    border-radius: 3px;
}

.ad-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 80%;
}

.ad-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent);
    color: var(--dark);
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transform: rotate(5deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    z-index: 3;
}

.ad-cta-button {
    background-color: white;
    color: var(--primary-dark);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.ad-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-light);
    color: var(--primary-dark);
}

.ad-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

/* Email Contacts */
.email-contacts {
    background-color: rgba(76, 175, 80, 0.05);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary);
    margin: 2rem 0;
}

.email-contacts h4 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.email-contacts h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

.email-contacts ul {
    list-style-type: none;
    padding-left: 0;
}

.email-contacts li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.email-contacts i {
    margin-right: 0.75rem;
    color: var(--primary);
    font-size: 1.2rem;
}

.email-contacts a {
    transition: var(--transition-smooth);
    color: var(--primary);
    font-weight: 500;
}

.email-contacts a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Utilities */
.bg-light {
    background-color: rgba(245, 245, 245, 0.5) !important;
}

.mobile-banking-illustration, .financial-literacy-illustration, .join-team-illustration {
    padding: 3rem;
    background-color: rgba(76, 175, 80, 0.05);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.value-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.value-card {
    border-top: 2px solid var(--primary);
}
