/* Immops - Modern Optimized CSS */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap");

/* ==================== */
/* Variables CSS */
/* ==================== */
:root {
    --primary-green: #1a5f3f;
    --secondary-green: #25d366;
    --accent-yellow: #ffd700;
    --gradient-green-yellow: linear-gradient(135deg, #1a5f3f 0%, #2d7a4f 50%, #ffd700 100%);
    --gradient-dark-green: linear-gradient(135deg, #0f3d2a 0%, #1a5f3f 100%);
    --text-dark: #1a1a1a;
    --text-muted: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(26, 95, 63, 0.08);
    --shadow-md: 0 4px 20px rgba(26, 95, 63, 0.12);
    --shadow-lg: 0 8px 40px rgba(26, 95, 63, 0.16);
}

/* ==================== */
/* Reset & Base */
/* ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text-dark);
    background: var(--white);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    outline: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 16px;
}

/* ==================== */
/* Modern Gradient Background */
/* ==================== */
.modern-gradient {
    background: linear-gradient(135deg, #f0f9f4 0%, #ffffff 50%, #fffef0 100%);
    position: relative;
    overflow: hidden;
}

.modern-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(26, 95, 63, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(37, 211, 102, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.modern-gradient .container {
    position: relative;
    z-index: 2;
}

/* ==================== */
/* Navbar */
/* ==================== */
.navbar-custom {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 95, 63, 0.1);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.navbar-custom .navbar-brand {
    font-weight: 700;
    color: var(--primary-green);
}

.navbar-custom .navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 16px;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link.active {
    color: var(--primary-green);
}

.navbar-custom.nav-sticky {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.navbar-toggler {
    border: none;
    padding: 8px;
    color: var(--primary-green);
}

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

.navbar-toggler .mdi {
    font-size: 28px;
}

/* ==================== */
/* Buttons */
/* ==================== */
.btn {
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    font-size: 15px;
}

.btn-primary {
    background: var(--gradient-dark-green);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #0a2a1a 0%, #0f3d2a 100%);
}

.btn-success {
    background: linear-gradient(135deg, var(--secondary-green) 0%, #20c997 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    background: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary.active {
    background: var(--gradient-dark-green);
    color: var(--white);
    border-color: var(--primary-green);
}

/* ==================== */
/* Hero Section */
/* ==================== */
.hero-1-bg {
    min-height: 90vh;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
}

.hero-badge .badge {
    background: linear-gradient(135deg, rgba(26, 95, 63, 0.1) 0%, rgba(37, 211, 102, 0.1) 100%);
    color: var(--primary-green);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid rgba(26, 95, 63, 0.2);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title .text-primary {
    background: var(--gradient-green-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ==================== */
/* Hero Leadgen Form */
/* ==================== */
.hero-leadgen {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(26, 95, 63, 0.1);
    box-shadow: var(--shadow-lg);
}

.btn-profile-leadgen {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    background: white;
    color: var(--text-muted);
    font-weight: 600;
    border-radius: 12px;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.btn-profile-leadgen:first-child {
    margin-left: 0;
}

.btn-profile-leadgen:last-child {
    margin-right: 0;
}

.btn-profile-leadgen:hover,
.btn-profile-leadgen.active {
    background: var(--gradient-dark-green);
    border-color: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ==================== */
/* WhatsApp Phone Mockup */
/* ==================== */
.phone-mockup-container {
    display: flex;
    justify-content: center;
    perspective: 1200px;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
    border-radius: 32px;
    padding: 10px;
    box-shadow: 
        0 0 0 3px #333,
        0 25px 50px rgba(0, 0, 0, 0.3);
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.4s ease;
}

.phone-frame:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #0d1418;
    border-radius: 24px;
    overflow: hidden;
}

.whatsapp-header {
    background: var(--primary-green);
    color: white;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    padding: 8px 16px;
    font-size: 12px;
    background: rgba(0, 0, 0, 0.2);
}

.chat-header {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info {
    display: flex;
    align-items: center;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--secondary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.chat-messages {
    height: 400px;
    padding: 16px;
    background: #0d1418;
    overflow-y: auto;
}

.message {
    margin-bottom: 10px;
}

.message-bubble {
    background: var(--secondary-green);
    color: white;
    padding: 0;
    border-radius: 16px;
    max-width: 90%;
    margin-left: auto;
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.25);
    animation: messageSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.property-image {
    width: 100%;
    height: 100px;
    background: 
        radial-gradient(circle at 30% 40%, rgba(45, 122, 79, 0.9) 0%, transparent 70%),
        radial-gradient(circle at 70% 60%, rgba(255, 215, 0, 0.6) 0%, transparent 60%),
        linear-gradient(135deg, #1a5f3f 0%, #2d7a4f 60%, #3a8f5f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 -20px 20px rgba(0, 0, 0, 0.3);
}

.property-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(45deg, 
            transparent, 
            transparent 15px, 
            rgba(255, 255, 255, 0.04) 15px, 
            rgba(255, 255, 255, 0.04) 30px);
    z-index: 1;
}

.property-image i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.property-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, 
            transparent 0%, 
            rgba(0, 0, 0, 0.2) 50%, 
            rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.property-image-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    background: rgba(255, 255, 255, 0.95);
    color: #1a5f3f;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 9px;
    font-weight: 700;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 2px;
}

.typing-indicator {
    padding: 12px 16px;
    background: transparent;
    display: none;
    align-items: center;
    margin-bottom: 12px;
}

.typing-dots {
    display: flex;
    margin-right: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 18px;
}

.typing-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary-green);
    margin-right: 4px;
    animation: typingDots 1.4s infinite ease-in-out;
}

.typing-dots span:last-child {
    margin-right: 0;
}

.typing-text {
    color: #8696a0;
    font-size: 13px;
    font-weight: 500;
}

.property-card {
    background: transparent;
    padding: 8px 10px;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.property-price {
    font-size: 16px;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.price-badge {
    background: rgba(255, 71, 87, 0.95);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 2px;
    box-shadow: 0 2px 8px rgba(255, 71, 87, 0.4);
}

.property-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    margin-bottom: 6px;
    font-weight: 600;
}

.property-location i {
    font-size: 12px;
}

.property-details {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 6px;
}

.property-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 4px;
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 6px;
    border-radius: 6px;
}

.property-detail-item:last-child {
    margin-bottom: 0;
}

.property-detail-item i {
    font-size: 11px;
    margin-top: 1px;
    flex-shrink: 0;
}

.property-highlight {
    background: rgba(255, 215, 0, 0.25);
    padding: 5px 8px;
    border-radius: 8px;
    margin-top: 6px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.property-highlight i {
    font-size: 12px;
}

.message-time {
    font-size: 9px;
    opacity: 0.7;
    text-align: right;
    margin-top: 4px;
    padding: 0 10px 6px;
}

@keyframes typingDots {
    0%, 80%, 100% { 
        transform: scale(0.8); 
        opacity: 0.5; 
    }
    40% { 
        transform: scale(1.2); 
        opacity: 1; 
    }
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ==================== */
/* Clients Section */
/* ==================== */
.clients-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
}

.client-logo-box {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo-box:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.client-logo-placeholder {
    text-align: center;
    color: var(--text-muted);
}

.client-logo-placeholder i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.client-logo-placeholder span {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

/* ==================== */
/* Modern Cards */
/* ==================== */
.modern-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(26, 95, 63, 0.08);
    overflow: hidden;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.anomaly-card {
    transition: all 0.3s ease;
}

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

/* ==================== */
/* Badge Styles */
/* ==================== */
.badge-primary-soft {
    background: rgba(26, 95, 63, 0.1);
    color: var(--primary-green);
    border-radius: 50px;
    padding: 8px 16px;
    font-weight: 600;
}

.badge-success-soft {
    background: rgba(37, 211, 102, 0.1);
    color: var(--secondary-green);
    border-radius: 50px;
    padding: 8px 16px;
    font-weight: 600;
}

.badge-warning-soft {
    background: rgba(255, 215, 0, 0.15);
    color: #d4af37;
    border-radius: 50px;
    padding: 8px 16px;
    font-weight: 600;
}

.text-warning {
    color: #d4af37 !important;
}

.badge-danger-soft {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border-radius: 50px;
    padding: 8px 16px;
    font-weight: 600;
}

.badge-info-soft {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
    border-radius: 50px;
    padding: 8px 16px;
    font-weight: 600;
}

.badge-secondary-soft {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border-radius: 50px;
    padding: 8px 16px;
    font-weight: 600;
}

/* ==================== */
/* Sections */
/* ==================== */
.section {
    padding: 80px 0;
}

.section-title h2 {
    position: relative;
    display: inline-block;
}

.tech-bg {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
}

.tech-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, rgba(26, 95, 63, 0.02) 1px, transparent 1px),
        linear-gradient(rgba(26, 95, 63, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.bg-dark {
    background: var(--gradient-dark-green) !important;
}

.feather-bg-img {
    background-position: center center;
    background-size: cover;
}

/* ==================== */
/* Pricing Section */
/* ==================== */
.pricing-box {
    position: relative;
    overflow: hidden;
    background: white;
    border-radius: 24px;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-green-yellow);
}

.pricing-item {
    list-style: none;
    padding-left: 0;
}

.pricing-item li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
}

.pricing-item li i {
    margin-right: 12px;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-features .col-md-6 {
    margin-bottom: 20px;
}

.pricing-action {
    margin-top: 32px;
}

/* ==================== */
/* Blog & Features */
/* ==================== */
.blog-box {
    transition: all 0.3s ease;
}

.blog-box img {
    border-radius: 16px;
    transition: all 0.3s ease;
}

.blog-box:hover img {
    transform: scale(1.05);
}

.feature-icon {
    transition: all 0.3s ease;
}

.feature-list .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 15px;
}

.feature-list .feature-item i {
    font-size: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

/* ==================== */
/* Footer */
/* ==================== */
.footer {
    background: var(--gradient-dark-green);
    padding: 60px 0 30px;
}

.footer-alt {
    background: #0a2a1a;
    padding: 20px 0;
}

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

.footer a:hover {
    color: var(--accent-yellow);
}

/* ==================== */
/* Form Controls */
/* ==================== */
.form-control {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 15px;
    background-color: white;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(26, 95, 63, 0.1);
    outline: none;
    background-color: white;
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 1.5rem;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ==================== */
/* Contact Section */
/* ==================== */
.contact-detail {
    font-size: 15px;
}

.contact-detail p {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.contact-detail i,
.contact-detail .icon {
    margin-right: 12px;
    color: var(--primary-green);
}

/* ==================== */
/* Animations */
/* ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out;
}

/* ==================== */
/* Responsive Design */
/* ==================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .phone-frame {
        width: 280px;
        height: 560px;
    }
}

@media (max-width: 768px) {
    .hero-1-bg {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-leadgen {
        padding: 24px;
        margin: 0 15px;
    }
    
    .btn-profile-leadgen {
        padding: 12px 8px;
        font-size: 14px;
        margin: 0 3px;
    }
    
    .btn-profile-leadgen i {
        margin-right: 4px !important;
    }
    
    .phone-frame {
        width: 260px;
        height: 520px;
        transform: none;
    }
    
    .property-image {
        height: 130px;
    }
    
    .property-image i {
        font-size: 3rem;
    }
    
    .property-image-badge {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .property-detail-item {
        font-size: 12px;
        padding: 5px 8px;
    }
    
    .property-detail-item i {
        font-size: 14px;
    }
    
    .property-highlight {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .property-highlight i {
        font-size: 16px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .client-logo-box {
        height: 120px;
        padding: 20px;
    }
    
    .client-logo-placeholder i {
        font-size: 2rem;
    }
    
    .navbar-nav {
        padding-top: 16px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 16px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .btn-profile-leadgen {
        padding: 10px 6px;
        font-size: 12px;
        margin: 0 2px;
    }
    
    .btn-profile-leadgen i {
        display: none;
    }
    
    .hero-leadgen {
        padding: 20px;
    }
    
    .phone-frame {
        width: 240px;
        height: 480px;
    }
    
    .chat-messages {
        height: 340px;
    }
    
    .property-image {
        height: 110px;
    }
    
    .property-image i {
        font-size: 2.5rem;
    }
    
    .property-image-badge {
        font-size: 9px;
        padding: 3px 6px;
        top: 6px;
        left: 6px;
    }
    
    .property-card {
        padding: 10px 12px;
    }
    
    .property-header {
        margin-bottom: 8px;
        padding-bottom: 8px;
    }
    
    .property-price {
        font-size: 18px;
    }
    
    .price-badge {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .property-location {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .property-details {
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .property-detail-item {
        font-size: 11px;
        gap: 6px;
        padding: 4px 8px;
        margin-bottom: 5px;
    }
    
    .property-detail-item i {
        font-size: 12px;
    }
    
    .property-highlight {
        font-size: 11px;
        padding: 7px 10px;
        margin-top: 8px;
    }
    
    .property-highlight i {
        font-size: 14px;
    }
    
    .client-logo-box {
        height: 100px;
        padding: 16px;
    }
    
    .client-logo-placeholder i {
        font-size: 1.5rem;
    }
    
    .client-logo-placeholder span {
        font-size: 12px;
    }
    
    .pricing-features .col-md-6 {
        margin-bottom: 10px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}

/* ==================== */
/* Feature Icons & Text Colors */
/* ==================== */
.text-info {
    color: #17a2b8 !important;
}

.text-danger {
    color: #dc3545 !important;
}

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

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

.text-white {
    color: white !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ==================== */
/* Utility Classes */
/* ==================== */
.text-primary {
    color: var(--primary-green) !important;
}

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

.text-warning {
    color: var(--accent-yellow) !important;
}

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

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

.bg-light {
    background: var(--bg-light) !important;
}

.font-weight-bold {
    font-weight: 700;
}

.font-weight-semibold {
    font-weight: 600;
}

.font-weight-medium {
    font-weight: 500;
}

/* ==================== */
/* Font Sizes */
/* ==================== */
.font-size-12 { font-size: 12px; }
.font-size-13 { font-size: 13px; }
.font-size-14 { font-size: 14px; }
.font-size-15 { font-size: 15px; }
.font-size-16 { font-size: 16px; }
.font-size-17 { font-size: 17px; }
.font-size-18 { font-size: 18px; }
.font-size-19 { font-size: 19px; }
.font-size-20 { font-size: 20px; }

/* ==================== */
/* Line Heights */
/* ==================== */
.line-height-1_4 { line-height: 1.4; }
.line-height-1_6 { line-height: 1.6; }

/* ==================== */
/* Text Utilities */
/* ==================== */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.text-uppercase {
    text-transform: uppercase;
}

/* ==================== */
/* Loader */
/* ==================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-dark-green);
    z-index: 9999999;
}

#status {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

/* ==================== */
/* Smooth Scrolling */
/* ==================== */
html {
    scroll-behavior: smooth;
}

/* ==================== */
/* Print Styles */
/* ==================== */
@media print {
    .navbar-custom,
    .footer,
    .btn {
        display: none;
    }
}

