.mobile-safe-btn {
    /* Base styles */
    touch-action: manipulation !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 9999 !important;
    cursor: pointer !important;
    /* Remove any hover conflicts */
    -webkit-tap-highlight-color: rgba(0,0,0,0.1) !important;
    user-select: none !important;
    /* FIXED: Desktop sizing */
    display: inline-flex !important; /* Prevents full-width stretching */
    align-items: center !important;
    justify-content: center !important;
    white-space: nowrap !important; /* Prevents text wrapping */
    /* Responsive sizing */
    padding: 12px 25px;
    font-size: 0.9rem;
    min-height: auto;
    min-width: auto;
    width: auto !important; /* Ensures auto-width on desktop */
}

/* Tablet */
@media (max-width: 992px) {
    .mobile-safe-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-safe-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}

/* Small mobile - proper touch targets */
@media (max-width: 576px) {
    .mobile-safe-btn {
        padding: 12px 16px;
        font-size: 0.75rem;
        min-height: 44px !important;
        min-width: 44px !important;
        display: flex !important; /* Full flex only on small mobile */
    }
}

:root {
    /* Primary colors - clean and modern */
    --primary: #ffffff;
    --secondary: #f8f9fa;
    --accent1: #000000;
    --accent2: #333333;
    --accent3: #666666;
    --accent4: #e74c3c;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    /* Subtle gradients for modern look */
    --gradient: linear-gradient(135deg, var(--accent1), var(--accent2));
    --gradient2: linear-gradient(135deg, var(--accent4), #c0392b);
    --card-bg: #ffffff;
    --card-shadow: rgba(0, 0, 0, 0.08);
    --border-light: #e9ecef;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    /* Success and status colors */
    --success: #27ae60;
    --warning: #f39c12;
    --error: #e74c3c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
    box-shadow: 0 2px 10px var(--card-shadow);
}

header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent1);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
    border-radius: 4px;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 35px;
}

nav ul li a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

nav ul li a:hover {
    color: var(--accent4);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent4);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-button {
    background: var(--accent1);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: var(--accent2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--accent1);
    color: var(--accent1);
}

.cta-button.secondary:hover {
    background: var(--accent1);
    color: white;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--accent1);
}

/* Hero Section with Animation Background */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-animation-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    background: url('../images/hero/hero-banner.png') center/cover no-repeat;
    opacity: 1;
    z-index: 0.18;
    color: #f0f0f0;
}

.hero-animation-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(231, 76, 60, 0.05) 0%, 
        transparent 25%, 
        rgba(0, 0, 0, 0.03) 50%, 
        transparent 75%, 
        rgba(231, 76, 60, 0.05) 100%);
    animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% {
        transform: translateX(-50px) translateY(-50px);
        opacity: 0.05;
    }
    50% {
        transform: translateX(50px) translateY(50px);
        opacity: 0.1;
    }
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: antiquewhite;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
}

/* Trust Section with Slideshow */
/* Trust Section with Slideshow */
/* Ultra-wide trust section - 98% of screen */
.trust {
    background-color: var(--secondary);
    padding: 60px 0;
    border-radius: var(--border-radius);
    margin: 0 auto;
    max-width: none;
    width: 98%; /* Nearly full screen width */
    border: 1px solid var(--border-light);
}

.trust .container {
    width: 100%;
    max-width: none;
    padding: 0 1%; /* Minimal padding */
}

.trust-slideshow {
    position: relative;
    max-width: none;
    width: 100%;
    margin: 0 auto;
}

.trust-slideshow-container {
    position: relative;
    width: 100%;
    height: 250px; /* Taller for ultra-wide proportion */
    border-radius: var(--border-radius);
    overflow: hidden;
    /* background: var(--primary); */
    box-shadow: 0 5px 15px var(--card-shadow);
    background: #ffffff !important; /* white canvas behind logos */ 
    border: 1px solid var(--border-light); /* subtle separation */ 
}



.section-title {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}



.trust-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    background: #ffffff !important; /* each slide panel is white */
}

.trust-slide.active {
    opacity: 1;
}

.trust-slide img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    /* filter: grayscale(100%) opacity(0.7); */
    transition: var(--transition);
     background: #ffffff; /* covers transparent PNG areas */
}

.trust-slide:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

.trust-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 -20px;
    z-index: 3;
    pointer-events: none;
}

.trust-nav button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    pointer-events: all;
}

.trust-nav button:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.trust-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.trust-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: var(--transition);
}

.trust-dot.active,
.trust-dot:hover {
    background: var(--accent4);
    transform: scale(1.2);
}


/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: var(--accent4);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent4), #c0392b);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--accent4);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--accent1);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.learn-more {
    color: var(--accent1);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
    font-size: 0.9rem;
}

.learn-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.learn-more:hover {
    color: var(--accent4);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Service Detail Pages - IMPROVED LAYOUT */
.service-detail {
    display: none;
    padding: 120px 0 80px;
}

.service-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.service-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent4);
    border-radius: 2px;
}

.service-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--accent1);
}

.service-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* IMPROVED SERVICE CONTENT LAYOUT */
.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

.service-description {
    padding-right: 20px;
}

.service-description h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--accent1);
    line-height: 1.3;
}

.service-description p {
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
}

/* IMPROVED BEFORE/AFTER CONTAINER */
.before-after-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ENHANCED BEFORE/AFTER COMPARISON */
.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.before,
.after {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 20px;
    border: 1px solid var(--border-light);
    box-shadow: 0 5px 15px var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.before:hover,
.after:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.before h3,
.after h3 {
    position: absolute;
    top: 15px;
    left: 20px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
    margin: 0;
}

.before h3 {
    background: rgba(231, 76, 60, 0.9);
    color: white;
}

.after h3 {
    background: rgba(39, 174, 96, 0.9);
    color: white;
}

.before img,
.after img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.before ul,
.after ul {
    list-style: none;
    padding: 0;
    margin-top: 10px;
}

.before ul li,
.after ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.9rem;
    color: var(--text);
}

.before ul li:before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--error);
    font-weight: bold;
}

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

/* ENHANCED SERVICE BENEFITS CARD */
.service-benefits {
    background: linear-gradient(135deg, var(--secondary), #f0f0f0);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    border: 1px solid var(--border-light);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.service-benefits::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(231, 76, 60, 0.05), transparent);
    transform: rotate(45deg);
}

.service-benefits h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--accent1);
    position: relative;
    z-index: 2;
}

/* IMPROVED BENEFITS LIST LAYOUT */
.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.benefits-list li {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text);
}

.benefits-list li i {
    color: var(--success);
    margin-right: 10px;
    font-size: 1rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    color: var(--accent1);
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: var(--transition);
}

.back-button i {
    margin-right: 8px;
    transition: var(--transition);
}

.back-button:hover {
    color: var(--accent4);
}

.back-button:hover i {
    transform: translateX(-5px);
}

/* Why Choose Us */
.why-choose-us {
    background-color: var(--secondary);
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
}

.why-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--accent1);
}

.why-text .benefits-list li {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.why-text .benefits-list li i {
    color: var(--success);
    font-size: 1.3rem;
    margin-right: 15px;
    margin-top: 5px;
}

.benefit-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--accent1);
}

.benefit-text p {
    color: var(--text-light);
}

.why-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--card-shadow);
}

.dashboard-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dashboard-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.metric {
    text-align: center;
    color: white;
}

.metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Case Study Section */
.case-study {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--card-shadow);
}

.case-study-slideshow {
    position: relative;
}

.case-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.case-slide.active {
    display: block;
}

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

.case-content {
    max-width: 800px;
    margin: 0 auto;
}

.case-content i {
    font-size: 2.5rem;
    color: var(--accent4);
    margin-bottom: 25px;
}

.case-content h3 {
    font-size: 1.7rem;
    margin-bottom: 25px;
    color: var(--accent1);
}

.case-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    font-style: italic;
    line-height: 1.6;
}

.case-details {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: var(--secondary);
    border-radius: var(--border-radius);
}

.case-details img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--border-radius);
    flex-shrink: 0;
}

.case-info {
    flex: 1;
    text-align: left;
}

.company {
    font-weight: 600;
    color: var(--accent1);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.result-badge {
    display: inline-block;
    background: rgba(39, 174, 96, 0.1);
    color: var(--success);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    border: 1px solid rgba(39, 174, 96, 0.2);
    font-size: 0.9rem;
}

.case-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.case-nav button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.case-nav button:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.case-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.case-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-light);
    cursor: pointer;
    transition: var(--transition);
}

.case-dot.active,
.case-dot:hover {
    background: var(--accent4);
    transform: scale(1.2);
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: var(--secondary);
    padding: 80px 0;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--accent1);
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Footer */
footer {
    background-color: var(--accent1);
    color: white;
    padding: 60px 0 30px;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    color: white;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent4);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    transform: translateX(3px);
}

.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 15000 !important; /* Changed from 2000 to 15000 */
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;        /* ✅ limit height to viewport */
    overflow-y: scroll;      /* ✅ always scrollable */
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-light);
    z-index: 15001 !important; /* Higher than modal background */
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--accent1);
    transform: rotate(90deg);
}

.modal h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--accent1);
}

.modal p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
    background: var(--card-bg);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent1);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.submit-btn {
    background: var(--accent1);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--accent2);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.confirmation {
    display: none;
    text-align: center;
    padding: 30px;
}

.confirmation i {
    font-size: 3.5rem;
    color: var(--success);
    margin-bottom: 20px;
}

.confirmation h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--accent1);
}

.confirmation p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Service Filter Buttons */
.service-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--card-bg);
    color: var(--text);
    border: 2px solid var(--border-light);
    padding: 10px 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent1);
    color: white;
    border-color: var(--accent1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Support Section Styles */
.support {
    background-color: var(--secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-light);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.support-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
}
