/* ===== ENHANCED 3D AND MODERN VARIABLES ===== */
:root {
    --gradient-primary: linear-gradient(135deg, var(--primary-green) 0%, #06614a 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-orange) 0%, #f39c3a 100%);
    --shadow-3d: 0 20px 40px rgba(5, 84, 64, 0.15);
    --shadow-hover: 0 30px 60px rgba(5, 84, 64, 0.25);
}

/* ===== MARKET TICKER WITH TRANSPARENT BACKGROUND ===== */
.market-ticker {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(5, 84, 64, 0.1);
    color: var(--primary-green);
    padding: 0.8rem 0;
    margin-top: 70px;
    overflow: hidden;
    position: relative;
    z-index: 999;
}

.market-ticker.home-only {
    display: block;
}

.ticker-content {
    display: flex;
    animation: scroll 45s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: flex;
    align-items: center;
    margin-right: 3rem;
    font-weight: 500;
    font-size: 0.95rem;
    min-width: max-content;
}

.ticker-item i {
    margin-right: 0.5rem;
    color: var(--primary-orange);
}

.ticker-value {
    color: var(--primary-green);
    margin-left: 0.5rem;
    font-weight: 600;
}

.price-change {
    margin-left: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-up {
    color: #28a745;
}

.price-down {
    color: #dc3545;
}

.price-neutral {
    color: var(--primary-green);
}

@keyframes scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* ===== HERO SECTION WITH 3D ELEMENTS ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--white) 0%, rgba(5, 84, 64, 0.05) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 2rem 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape-3d {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(5, 84, 64, 0.1) 0%, rgba(232, 136, 36, 0.1) 100%);
    animation: float3D 8s ease-in-out infinite;
}

.shape-3d:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-3d:nth-child(2) {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 5%;
    animation-delay: 2s;
}

.shape-3d:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes float3D {
    0%, 100% { 
        transform: translateY(0px) rotateX(0deg) rotateY(0deg);
        box-shadow: 0 10px 30px rgba(5, 84, 64, 0.1);
    }
    33% { 
        transform: translateY(-30px) rotateX(10deg) rotateY(5deg);
        box-shadow: 0 20px 40px rgba(5, 84, 64, 0.15);
    }
    66% { 
        transform: translateY(-15px) rotateX(-5deg) rotateY(-3deg);
        box-shadow: 0 15px 35px rgba(232, 136, 36, 0.1);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-3d {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-3d);
    transform-style: preserve-3d;
}

.btn-primary-3d {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-secondary-3d {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-white-3d {
    background: var(--white);
    color: var(--primary-green);
}

.btn-outline-3d {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-3d:hover {
    transform: translateY(-5px) rotateX(10deg);
    box-shadow: var(--shadow-hover);
}

.btn-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(45deg);
    transition: left 0.5s ease;
}

.btn-3d:hover::before {
    left: 100%;
}

/* ===== HERO 3D CARD ===== */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    animation: slideInRight 1s ease-out;
}

.hero-card-3d {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-3d);
    text-align: center;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.hero-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.hero-card-3d:hover {
    transform: rotateY(10deg) rotateX(10deg) translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-icon-3d {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: var(--white);
    animation: rotate3D 10s linear infinite;
    box-shadow: var(--shadow-3d);
}

@keyframes rotate3D {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.card-content h3 {
    color: var(--primary-green);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.stats-display {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(5, 84, 64, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(232, 136, 36, 0.1);
    transform: scale(1.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* ===== WHO WE ARE SECTION - COLLAPSIBLE CARDS ===== */
.who-we-are {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(5, 84, 64, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.who-we-are::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="%23055440" stroke-width="0.5" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    z-index: 0;
}

.who-we-are .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.about-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 3rem;
    position: relative;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-orange));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: var(--gradient-secondary);
    border-radius: 3px;
    animation: slideInWidth 1.5s ease-out 0.5s both;
}

@keyframes slideInWidth {
    from { width: 0; opacity: 0; }
    to { width: 100px; opacity: 1; }
}

.about-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* ===== COLLAPSIBLE CARDS ===== */
.collapsible-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-3d);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--primary-orange);
}

.collapsible-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--primary-green);
}

.card-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 136, 36, 0.1), transparent);
    transition: left 0.6s ease;
}

.card-header:hover::before {
    left: 100%;
}

.description-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.collapsible-card:hover .description-icon {
    transform: rotateY(180deg);
    background: var(--gradient-secondary);
}

.card-header-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header-content h4 {
    color: var(--primary-green);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.expand-arrow {
    width: 40px;
    height: 40px;
    background: rgba(5, 84, 64, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.expand-arrow i {
    color: var(--primary-green);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.collapsible-card.expanded .expand-arrow {
    background: var(--primary-green);
    transform: rotate(180deg);
}

.collapsible-card.expanded .expand-arrow i {
    color: var(--white);
}

.card-body {
    padding: 0 2rem 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.collapsible-card.expanded .card-body {
    padding: 0 2rem 2rem;
}

.card-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-content: space-between;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-3d);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.trust-item:hover::before {
    transform: scaleX(1);
}

.trust-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.trust-item i {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.trust-item:hover i {
    color: var(--primary-green);
    transform: scale(1.2);
}

.trust-item span {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 1rem;
}

/* ===== VISUAL CONTAINER WITH REAL IMAGE ===== */
.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
}

.visual-container {
    position: relative;
    width: 450px;
    height: 450px;
    transform-style: preserve-3d;
}

.main-business-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-3d);
    transition: all 0.5s ease;
    z-index: 2;
}

.main-business-image:hover {
    transform: translate(-50%, -50%) rotateY(5deg) rotateX(5deg);
    box-shadow: var(--shadow-hover);
}

.main-business-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.main-business-image:hover img {
    transform: scale(1.1);
}

.floating-badge {
    position: absolute;
    background: var(--white);
    border-radius: 15px;
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow-3d);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s ease;
    z-index: 3;
    border: 2px solid rgba(5, 84, 64, 0.1);
}

.floating-badge:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-orange);
}

.badge-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.floating-badge:hover .badge-icon {
    background: var(--gradient-secondary);
    transform: rotate(360deg);
}

.badge-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 0.2rem;
}

/* Positioning for floating badges */
.badge-1 {
    top: 0;
    right: 0;
    animation: float3D 6s ease-in-out infinite;
    animation-delay: 0.5s;
}

.badge-2 {
    bottom: 17%;
    left: -14%;
    animation: float3D 6s ease-in-out infinite;
    animation-delay: 1.5s;
}

.badge-3 {
    top: 20%;
    left: -15%;
    animation: float3D 6s ease-in-out infinite;
    animation-delay: 3s;
}

.badge-4 {
    bottom: 2%;
    right: -11%;
    animation: float3D 6s ease-in-out infinite;
    animation-delay: 2s;
}

.badge-5 {
    top: 50%;
    right: -20%;
    animation: float3D 6s ease-in-out infinite;
    animation-delay: 4s;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    padding: 6rem 0;
    background: var(--white);
}

.services-preview .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card-3d {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-3d);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(5, 84, 64, 0.1);
    transform-style: preserve-3d;
}

.service-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card-3d:hover::before {
    transform: scaleX(1);
}

.service-card-3d:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon-3d {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-icon-3d::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-card-3d:hover .service-icon-3d::before {
    opacity: 1;
    transform: rotate(45deg) translate(100%, 100%);
}

.service-card-3d h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
}

.service-card-3d p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(5, 84, 64, 0.1);
    color: var(--primary-green);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
    color: var(--primary-green);
}

/* ===== MOBILE SERVICES CAROUSEL ===== */
.services-carousel {
    display: none;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    display: flex;
    transition: transform 0.3s ease;
}

.carousel-slide {
    min-width: 90%;
    margin: 0 2.5%;
}

.carousel-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-3d);
}

.carousel-btn:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== GOVERNMENT PARTNERS SECTION - FIXED LOGO COLORS ===== */
.government-partners {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(5, 84, 64, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.government-partners .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.govt-logos-container {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}

.govt-logos-track {
    display: flex;
    align-items: center;
    animation: govtLogoScroll 60s linear infinite;
    width: calc(200px * 24); /* 12 logos × 2 sets × 200px width */
}

.govt-logo-item {
    min-width: 200px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    margin: 0 1rem;
}

/* FIXED: Remove grayscale filter and keep original logo colors */
.govt-logo-item img {
    max-width: 160px;
    max-height: 160px;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
    /* Removed: filter: grayscale(100%) opacity(0.7); */
}

.govt-logo-item:hover img {
    opacity: 1;
    transform: scale(1.1);
    /* Removed: filter: grayscale(0%) opacity(1); */
}

@keyframes govtLogoScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 12)); /* Move by exactly half the width */ }
}

/* ===== NEW CTA SECTION DESIGN ===== */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, rgba(5, 84, 64, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.cta-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Left Content */
.cta-left {
    padding-right: 2rem;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), #f39c3a);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.cta-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.cta-feature i {
    color: var(--primary-green);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

/* Right Content - Form */
.cta-right {
    position: relative;
}

.cta-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow-3d);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary-orange);
}

.cta-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(5, 84, 64, 0.1), rgba(232, 136, 36, 0.1));
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.cta-form-container h3 {
    color: var(--primary-green);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta-form .form-group {
    position: relative;
}

.cta-form input,
.cta-form select {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
    font-family: var(--font-primary);
}

.cta-form input:focus,
.cta-form select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(5, 84, 64, 0.1);
    transform: translateY(-2px);
}

.cta-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    border-radius: 15px;
    text-align: center;
}

.cta-contact-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    text-align: center;
}

.cta-or {
    color: var(--text-light);
    font-weight: 500;
    position: relative;
}

.cta-or::before,
.cta-or::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: rgba(5, 84, 64, 0.2);
}

.cta-or::before {
    right: 100%;
    margin-right: 1rem;
}

.cta-or::after {
    left: 100%;
    margin-left: 1rem;
}

.cta-contact-options .btn-3d {
    width: 100%;
    justify-content: center;
    /* Fixed: Make Call Now button text always visible */
    color: var(--white) !important;
    background: var(--primary-green) !important;
    text-align: center;
}

.cta-contact-options .btn-3d:hover {
    color: var(--white) !important;
    background: var(--primary-orange) !important;
}

/* Background Elements */
.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.cta-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(5, 84, 64, 0.05), rgba(232, 136, 36, 0.05));
    animation: float3D 12s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    animation-delay: 8s;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .visual-container {
        width: 400px;
        height: 400px;
    }
    
    .main-business-image {
        width: 300px;
        height: 300px;
    }
    
    .cta-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .cta-left {
        padding-right: 0;
    }

    .govt-logo-item {
        min-width: 150px;
        height: 80px;
        margin: 0 0.5rem;
    }

    .govt-logo-item img {
        max-width: 160px;
        max-height: 160px;
    }

    .govt-logos-track {
        width: calc(150px * 24);
    }

    @keyframes govtLogoScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-150px * 12)); }
    }
}

@media (max-width: 768px) {
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .cta-icon-container {
        width: 120px;
        height: 120px;
        margin-bottom: 2rem;
    }
    
    .cta-main-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .cta-orbit-icons {
        width: 120px;
        height: 120px;
    }
    
    .orbit-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-3d {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .cta-stat {
        padding: 1rem;
    }
    
    .cta-stat-number {
        font-size: 1.8rem;
    }
    
    .cta-stat-text {
        font-size: 0.8rem;
    }

    /* Mobile Services Carousel */
    .services-grid {
        display: none;
    }

    .services-carousel {
        display: block;
    }

    .ticker-item {
        font-size: 0.85rem;
        margin-right: 2rem;
    }
    
    /* Fix market ticker visibility */
    .market-ticker {
        margin-top: 70px;
        padding: 0.8rem 0;
        position: relative;
    }

    .hero {
        min-height: 70vh;
        padding: 1rem 0;
        margin-top: 0;
    }

    /* Hide market ticker on mobile when menu is open */
    body.menu-open .market-ticker.home-only {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        display: none;
    }

    /* FIXED: Hide hero card subtitle text on mobile only */
    .hero-card-3d .card-content p {
        display: none;
    }

    .about-text h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    /* FIXED: Hide about-description (collapsible cards) on mobile only */
    .about-description {
        display: none;
    }
    
    .collapsible-card .card-header {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .description-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-item {
        flex-direction: row;
        text-align: left;
        padding: 1rem;
        gap: 1rem;
    }

    .trust-item i {
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    /* Mobile optimized visual container */
    .visual-container {
        width: 100%;
        max-width: 350px;
        height: 350px;
        margin: 0 auto;
    }
    
    .main-business-image {
        width: 280px;
        height: 280px;
    }
    
    .floating-badge {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    .badge-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .badge-number {
        font-size: 1.2rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    /* Reposition badges for mobile */
    .badge-1 {
        top: 0%;
        right: -5%;
    }
    
    .badge-2 {
        bottom: 10%;
        left: -8%;
    }
    
    .badge-3 {
        top: 15%;
        left: -10%;
    }
    
    .badge-4 {
        bottom: -3%;
        right: -9%;
    }
    
    .badge-5 {
        top: 45%;
        right: -15%;
    }
    
    /* CTA Mobile Styles */
    .cta-form-container {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-features {
        gap: 0.8rem;
    }
    
    .cta-feature {
        font-size: 0.95rem;
    }

    /* Government Partners Mobile - FIXED COLORS */
    .govt-logo-item {
        min-width: 120px;
        height: 70px;
        margin: 0 0.3rem;
    }

    .govt-logo-item img {
        max-width: 100px;
        max-height: 50px;
        /* Keep original colors - no filter applied */
        opacity: 0.8;
    }

    .govt-logo-item:hover img {
        opacity: 1;
    }

    .govt-logos-track {
        width: calc(120px * 24);
    }

    @keyframes govtLogoScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-120px * 12)); }
    }
}

@media (max-width: 480px) {
    .visual-container {
        width: 300px;
        height: 300px;
    }

    .main-business-image {
        width: 240px;
        height: 240px;
    }

    .ticker-item {
        font-size: 0.8rem;
        margin-right: 1.5rem;
    }

    .trust-indicators {
        gap: 0.8rem;
    }

    .trust-item {
        padding: 0.8rem;
    }

    .hero-card-3d {
        padding: 2rem;
    }

    .stats-display {
        gap: 0.5rem;
    }

    .stat-item {
        padding: 0.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .collapsible-card .card-header {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .card-header-content {
        width: 100%;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .expand-arrow {
        width: 35px;
        height: 35px;
    }
    
    .floating-badge {
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .badge-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .badge-number {
        font-size: 1rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    .cta-form-container {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }

    /* Government Partners Extra Small - FIXED COLORS */
    .govt-logo-item {
        min-width: 100px;
        height: 60px;
        margin: 0 0.2rem;
    }

    .govt-logo-item img {
        max-width: 150px;
        max-height: 160px;
        /* Keep original colors - no filter applied */
        opacity: 0.8;
    }

    .govt-logo-item:hover img {
        opacity: 1;
    }

    .govt-logos-track {
        width: calc(100px * 17);
    }

    @keyframes govtLogoScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-100px * 12)); }
    }
}