:root{
    --brand-navy:#0A1D4D;
    --grad-start:#00EAFE;
    --grad-end:#3B5BFF;
    --accent:#17C964;
    --lime-green: #32CD32;
    --dark-blue: #1a365d;
    --light-blue: #87CEEB;
    --white: #ffffff;
    --text-muted: #6c757d;
    /* Soft versions of brand colors - same hue, reduced saturation */
    --brand-navy-soft:#1A2D5A;
    --grad-start-soft:#4EC5D4;
    --grad-end-soft:#5A7FFF;
    /* Soft background colors for relaxation */
    --bg-soft: #F8FAFC;
    --bg-light: #F0F4F8;
    --text-soft: #4A5568;
    --border-soft: #E2E8F0;
    --card-1-bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --card-2-bg: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --card-3-bg: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --card-4-bg: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --card-5-bg: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --card-6-bg: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --card-7-bg: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    --card-8-bg: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --card-9-bg: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    --card-10-bg: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
    --card-11-bg: linear-gradient(135deg, #fad0c4 0%, #ffd1ff 100%);
    --card-12-bg: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    --card-13-bg: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    --card-14-bg: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    --card-15-bg: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
}
body{font-family:system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif}
.brand-gradient{
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
}
.btn-brand{
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    color:#fff;border:none;
}
.btn-brand:hover{opacity:.9;color:#fff}
.hero{
    color:#0b1a42;
    background:#f8fbff;
    padding:80px 0 60px;
}

/* Hero Section Enhancements */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--brand-navy);
}

.feature-icon {
    background: var(--accent);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

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

.btn-outline-brand {
    background: transparent;
    color: var(--brand-navy);
    border: 2px solid var(--brand-navy);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-brand:hover {
    background: var(--brand-navy);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 29, 77, 0.2);
}

/* Enhanced Service Cards Design - Scalable for 10-15 services */
.service-card-new {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

/* Soft Gradient Backgrounds with Rotating Palette */
.service-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--card-1-bg);
    opacity: 0.08;
    z-index: 1;
    transition: opacity 0.3s ease;
}

.service-card-2::before {
    background: var(--card-2-bg);
}

.service-card-3::before {
    background: var(--card-3-bg);
}

.service-card-4::before {
    background: var(--card-4-bg);
}

.service-card-5::before {
    background: var(--card-5-bg);
}

.service-card-6::before {
    background: var(--card-6-bg);
}

.service-card-7::before {
    background: var(--card-7-bg);
}

.service-card-8::before {
    background: var(--card-8-bg);
}

.service-card-9::before {
    background: var(--card-9-bg);
}

.service-card-10::before {
    background: var(--card-10-bg);
}

.service-card-11::before {
    background: var(--card-11-bg);
}

.service-card-12::before {
    background: var(--card-12-bg);
}

.service-card-13::before {
    background: var(--card-13-bg);
}

.service-card-14::before {
    background: var(--card-14-bg);
}

.service-card-15::before {
    background: var(--card-15-bg);
}

/* Premium Shadow & Hover Lift */
.service-card-new:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.service-card-new:hover::before {
    opacity: 0.12;
}

.service-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Service Image Styling */
.service-image-wrapper {
    margin-bottom: 1.5rem;
}

.service-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-image-placeholder {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-image-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--brand-navy);
    opacity: 0.6;
}

.service-image-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
}

/* ===== SERVICE ICON STYLES ===== */
.service-icon {
    width: 180px;
    height: 120px;
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(59, 91, 255, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-icon i {
    font-size: 3.5rem;
    color: var(--white);
    opacity: 0.9;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card-new:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(59, 91, 255, 0.35);
}

.service-card-new:hover .service-icon::before {
    opacity: 1;
}

.service-card-new:hover .service-icon i {
    transform: scale(1.1);
    opacity: 1;
}

.service-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--brand-navy);
    letter-spacing: -0.02em;
}

.service-description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex: 1;
    font-weight: 500;
}

.service-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: auto;
}

.btn-learn-more {
    color: var(--brand-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.btn-learn-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

.btn-learn-more:hover::after {
    width: 100%;
}

/* Bold, Persuasive START NOW Button with Brand Colors */
.btn-start-now {
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: auto;
    box-shadow: 0 8px 25px rgba(0, 234, 254, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-start-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-start-now:hover {
    background: linear-gradient(45deg, var(--grad-end), var(--grad-start));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 234, 254, 0.4);
}

.btn-start-now:hover::before {
    left: 100%;
}

.btn-start-now:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 234, 254, 0.3);
}

/* Placeholder Services */
.placeholder-services {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    border: 2px dashed #dee2e6;
}

.placeholder-services h3 {
    color: var(--brand-navy);
    margin-bottom: 1rem;
}

.placeholder-services p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Placeholder Testimonials */
.placeholder-testimonials {
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    border: 2px dashed #dee2e6;
}

.placeholder-testimonials h3 {
    color: var(--brand-navy);
    margin-bottom: 1rem;
}

.placeholder-testimonials p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Testimonials Section */
.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stars {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    flex: 1;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--brand-navy);
    font-size: 1.1rem;
    font-weight: 700;
}

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

/* Contact Section */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    color: var(--brand-navy);
    font-weight: 500;
}

.contact-icon {
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 234, 254, 0.3);
    transition: all 0.3s ease;
}

.contact-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 234, 254, 0.4);
    background: linear-gradient(45deg, var(--grad-end), var(--grad-start));
}

.contact-form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-form-card h3 {
    color: var(--brand-navy);
    font-weight: 800;
    font-size: 1.75rem;
}

.contact-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.contact-form .form-control:focus {
    border-color: var(--grad-start);
    box-shadow: 0 0 0 0.2rem rgba(0, 234, 254, 0.25);
    outline: none;
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.contact-form .invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.contact-form select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 3rem;
}

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

/* Footer Styles */
.footer-main {
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    margin-top: 80px;
}

.footer-top {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.social-link::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--white);
}

.social-link i {
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.social-text {
    font-weight: 400;
    font-size: 0.9rem;
}

.social-link:hover {
    color: var(--white);
    padding-left: 15px;
    text-decoration: none;
}

.social-link:hover::before {
    opacity: 1;
}

.footer-title {
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

.footer-subtitle {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--white);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.contact-info {
    margin-bottom: 25px;
}

/* Footer contact titles - with dots */
.footer-widget .contact-title {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
    text-align: left;
}

.footer-widget .contact-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

/* Hero contact titles - without dots */
.contact-hero .contact-title {
    color: var(--white);
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 0;
}

.contact-hero .contact-title::before {
    display: none;
}

.contact-address {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.contact-phone,
.contact-email {
    margin-bottom: 5px;
}

.contact-phone a,
.contact-email a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.contact-phone a:hover,
.contact-email a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.2);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.footer-tagline {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

.gtech-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.gtech-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

.gtech-link:hover {
    color: var(--white);
    text-decoration: none;
}

.gtech-link:hover::after {
    width: 100%;
}

/* Responsive Design for Footer Social */
@media (max-width: 768px) {
    .footer-social {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .social-link {
        padding-left: 0;
    }
    
    .social-text {
        display: none;
    }
    
    .social-link i {
        font-size: 1.1rem;
        width: auto;
    }
    
    .social-link:hover {
        padding-left: 0;
    }
    
    .social-link:hover::before {
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-features {
        gap: 0.5rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .service-card-new {
        min-height: 300px;
        padding: 2rem;
    }
    
    .service-image,
    .service-image-placeholder {
        height: 100px;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .service-actions {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }
    
    .btn-start-now {
        margin-left: 0;
        text-align: center;
        padding: 0.75rem 1.5rem;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .contact-item {
        font-size: 1rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 40px 0 30px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero .lead {
        font-size: 1rem;
    }
    
    .feature-item {
        font-size: 0.85rem;
    }
    
    .service-card-new {
        padding: 1.5rem;
        min-height: 280px;
    }
    
    .service-image,
    .service-image-placeholder {
        height: 80px;
    }
    
    .service-title {
        font-size: 1.1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    .btn-start-now {
        padding: 0.7rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
        gap: 1rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-top {
        padding: 40px 0 30px;
    }
    
    .footer-widget {
        margin-bottom: 20px;
    }
    
    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 20px 0;
        text-align: center;
    }
    
    .copyright-text,
    .footer-tagline {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .footer-top {
        padding: 30px 0 20px;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-description {
        font-size: 0.85rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .contact-address,
    .contact-phone a,
    .contact-email a {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* More Testimonials Button */
.testimonials-section .btn-brand {
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 234, 254, 0.3);
    position: relative;
    overflow: hidden;
}

.testimonials-section .btn-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.testimonials-section .btn-brand:hover {
    background: linear-gradient(45deg, var(--grad-end-soft), var(--grad-start-soft));
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(78, 197, 212, 0.35);
    color: var(--white);
    text-decoration: none;
}

.testimonials-section .btn-brand:hover::before {
    left: 100%;
}

.testimonials-section .btn-brand:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(0, 234, 254, 0.3);
}

.testimonials-section .btn-brand i {
    font-size: 1.2rem;
}

/* Service Detail Page Styles */

/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.service-hero::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.min-vh-75 {
    min-height: 75vh;
}

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


.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.feature-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-cta .btn {
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-cta .btn-primary {
    background: var(--white);
    color: var(--grad-start);
    border: 2px solid var(--white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-cta .btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.hero-cta .btn-outline-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.service-hero-image:hover {
    transform: scale(1.05);
}

.service-hero-placeholder {
    width: 400px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-hero-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Service Details Section */
.service-details {
    padding: 80px 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 100%;
}

.section-header {
    margin-bottom: 48px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    border-radius: 2px;
}

.service-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 60px;
}

.service-content h1, .service-content h2, .service-content h3 {
    color: var(--dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.service-content p {
    margin-bottom: 20px;
}

/* Benefits Section */
.benefits-section {
    margin-top: 60px;
}

.benefits-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 40px;
    text-align: center;
}

.benefit-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 234, 254, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 234, 254, 0.15);
    border-color: rgba(0, 234, 254, 0.3);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(0, 234, 254, 0.3);
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--white);
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.benefit-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Sticky */
.contact-form-sticky {
    position: sticky;
    top: 100px;
}

.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 234, 254, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-form-card:hover {
    box-shadow: 0 30px 80px rgba(0, 234, 254, 0.15);
    transform: translateY(-5px);
}

.form-header {
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    padding: 32px;
    text-align: center;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-badge i {
    color: #FFD700;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

/* Contact Form */
.contact-form {
    padding: 32px;
}

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

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-label i {
    color: var(--grad-start);
    font-size: 1rem;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-control:focus {
    border-color: var(--grad-start);
    box-shadow: 0 0 0 0.2rem rgba(0, 234, 254, 0.25);
    background: var(--white);
    outline: none;
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 0.7;
}

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

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.error-message::before {
    content: '⚠';
    font-size: 1rem;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 234, 254, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover {
    background: linear-gradient(45deg, var(--grad-end), var(--grad-start));
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 234, 254, 0.4);
    color: var(--white);
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:active {
    transform: translateY(-1px);
}

/* Form Footer */
.form-footer {
    padding: 24px 32px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-item i {
    color: var(--grad-start);
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark), #2c3e50);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::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 100 100"><defs><pattern id="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>');
    opacity: 0.3;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-buttons .btn-light {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-light:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.cta-buttons .btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .contact-form-sticky {
        position: static;
        margin-top: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 767.98px) {
    .service-hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .form-header {
        padding: 24px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 12px;
    }
}

/* Testimonials Page Styles */

/* Hero Section */
.testimonials-hero {
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-hero::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 100 100"><defs><pattern id="grain3" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain3)"/></svg>');
    opacity: 0.3;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: #FFD700;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 48px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    margin-top: 40px;
    text-align: center;
}

.hero-cta .btn {
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: var(--white);
    color: var(--grad-start);
    border: 2px solid var(--white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-cta .btn:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

/* Filter Section */
.testimonials-filter {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid #e9ecef;
}

.filter-wrapper {
    display: flex;
    justify-content: center;
}

.filter-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--text-muted);
    border: 2px solid #e9ecef;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.filter-btn:hover {
    border-color: var(--grad-start);
    color: var(--grad-start);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 234, 254, 0.15);
}

.filter-btn.active {
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    border-color: var(--grad-start);
    box-shadow: 0 8px 25px rgba(0, 234, 254, 0.3);
}

.filter-btn i {
    font-size: 1rem;
}

/* Testimonials Grid */
.testimonials-grid {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Testimonial Card - Matching Home Page Design */
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 234, 254, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 234, 254, 0.15);
    border-color: rgba(0, 234, 254, 0.3);
}

.testimonial-content {
    position: relative;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 0;
}

.empty-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 20px 60px rgba(0, 234, 254, 0.3);
}

.empty-icon i {
    color: var(--white);
    font-size: 3rem;
}

.empty-state h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.empty-state p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.empty-cta {
    margin-top: 40px;
    text-align: center;
}

.empty-cta .btn {
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    border: none;
    box-shadow: 0 8px 25px rgba(0, 234, 254, 0.3);
}

.empty-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 234, 254, 0.4);
    color: var(--white);
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(135deg, var(--dark), #2c3e50);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-cta::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 100 100"><defs><pattern id="grain4" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain4)"/></svg>');
    opacity: 0.3;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.cta-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-features .feature-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.cta-buttons .btn {
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 200px;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.cta-buttons .btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

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

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 767.98px) {
    .testimonials-hero {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* About Page Styles */

/* Hero Section - About Page Specific */
.about-hero {
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-hero::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 100 100"><defs><pattern id="grain5" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain5)"/></svg>');
    opacity: 0.3;
}

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

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-badge i {
    color: #FFD700;
}

.about-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-hero .hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 48px;
    opacity: 0.95;
}

.about-hero .hero-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.about-hero .stat-item {
    text-align: center;
}

.about-hero .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-hero .stat-label {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero .hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.about-hero .hero-cta .btn {
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-hero .hero-cta .btn-primary {
    background: var(--white);
    color: var(--grad-start);
    border: 2px solid var(--white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.about-hero .hero-cta .btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.about-hero .hero-cta .btn-outline-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.about-hero .hero-cta .btn-outline-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

.about-hero .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-image-placeholder {
    width: 400px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.about-image-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Our Story Section */
.our-story {
    padding: 100px 0;
    background: var(--white);
}

.story-content {
    max-width: 100%;
}

.section-header {
    margin-bottom: 48px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.story-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.story-features .feature-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.story-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 234, 254, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 234, 254, 0.15);
    border-color: rgba(0, 234, 254, 0.3);
}

.story-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(0, 234, 254, 0.3);
}

.story-icon i {
    font-size: 2rem;
    color: var(--white);
}

.story-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.story-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background: #f8f9fa;
}

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 234, 254, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 234, 254, 0.15);
    border-color: rgba(0, 234, 254, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(0, 234, 254, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Services Overview Section */
.services-overview {
    padding: 100px 0;
    background: var(--white);
}

.services-content {
    max-width: 100%;
}

.services-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(0, 234, 254, 0.05);
    transform: translateX(8px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 234, 254, 0.3);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.service-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.service-details p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.services-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-image-placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(45deg, rgba(0, 234, 254, 0.1), rgba(0, 234, 254, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 234, 254, 0.2);
}

.services-image-placeholder i {
    font-size: 4rem;
    color: var(--grad-start);
}

/* About CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--dark), #2c3e50);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-cta::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 100 100"><defs><pattern id="grain6" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain6)"/></svg>');
    opacity: 0.3;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.cta-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-features .feature-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.cta-buttons .btn {
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    min-width: 200px;
}

.cta-buttons .btn-primary {
    background: var(--white);
    color: var(--dark);
    border: 2px solid var(--white);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.cta-buttons .btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* Responsive Design - About Page Specific */
@media (max-width: 991.98px) {
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-stats {
        gap: 40px;
    }
    
    .about-hero .stat-number {
        font-size: 2rem;
    }
    
    .about-hero .hero-cta {
        flex-direction: column;
    }
    
    .about-hero .hero-cta .btn {
        width: 100%;
    }
    
    .story-visual {
        margin-top: 40px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        padding: 80px 0;
    }
    
    .about-hero .hero-title {
        font-size: 2rem;
    }
    
    .about-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .about-hero .hero-stats {
        gap: 30px;
    }
    
    .about-hero .stat-number {
        font-size: 1.8rem;
    }
    
    .about-hero .stat-label {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .story-card {
        padding: 24px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .service-item {
        padding: 20px;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ===== SERVICES PAGE STYLES ===== */
.services-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

.services-section::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 100 100"><defs><pattern id="subtle-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(59,91,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23subtle-dots)"/></svg>');
    opacity: 0.6;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--grad-start);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    border-radius: 2px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.empty-state {
    padding: 80px 20px;
}

.empty-icon {
    color: var(--text-muted);
    opacity: 0.5;
}

.empty-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.empty-description {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 400px;
    margin: 0 auto;
}

.cta-section {
    background: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-end) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::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 100 100"><defs><pattern id="cta-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-dots)"/></svg>');
    opacity: 0.3;
}

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

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons .btn {
    margin: 0.5rem;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-brand {
    background: var(--white);
    color: var(--grad-start);
    border: 2px solid var(--white);
}

.cta-buttons .btn-brand:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn-outline-brand {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-outline-brand:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ===== SERVICE CARD STYLES ===== */
.service-card-new {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card-header {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-header .service-icon {
    width: 180px;
    height: 120px;
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(59, 91, 255, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card-header .service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0.15) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card-header .service-icon i {
    font-size: 3.5rem;
    color: var(--white);
    opacity: 0.9;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card-new:hover .service-card-header .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 40px rgba(59, 91, 255, 0.35);
}

.service-card-new:hover .service-card-header .service-icon::before {
    opacity: 1;
}

.service-card-new:hover .service-card-header .service-icon i {
    transform: scale(1.1);
    opacity: 1;
}

.service-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-footer {
    padding: 0 1.5rem 1.5rem;
    margin-top: auto;
    position: relative;
    z-index: 5;
}

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

.service-description {
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

/* ===== SERVICE BUTTON STYLES ===== */
.service-btn {
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(59, 91, 255, 0.3);
    position: relative;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
}

.service-btn:hover {
    background: linear-gradient(135deg, var(--grad-end), var(--grad-start));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 91, 255, 0.4);
    text-decoration: none;
}

.service-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(59, 91, 255, 0.3);
}

.service-btn:focus {
    outline: 2px solid var(--grad-start);
    outline-offset: 2px;
}

/* Ensure service cards don't interfere with button clicks */
.service-card-new {
    pointer-events: auto;
}

.service-card-new * {
    pointer-events: auto;
}

/* Force button to be clickable and visible */
.service-btn {
    position: relative !important;
    z-index: 999 !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    display: inline-block !important;
    text-decoration: none !important;
}

/* Ensure no other elements are blocking the button */
.service-card-footer {
    position: relative !important;
    z-index: 100 !important;
    pointer-events: auto !important;
}

/* Service button hover state */
.service-btn:hover {
    background: linear-gradient(135deg, var(--grad-end), var(--grad-start)) !important;
    color: var(--white) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(59, 91, 255, 0.4) !important;
    text-decoration: none !important;
}

/* Service card footer with multiple buttons */
.service-card-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    padding: 1rem 1.5rem 1.5rem 1.5rem;
}

.service-card-footer .service-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

/* Learn More button (secondary) */
.service-card-footer .service-btn:not(.service-btn-primary) {
    background: transparent !important;
    color: var(--brand-navy) !important;
    border: 2px solid var(--brand-navy) !important;
    font-weight: 600 !important;
}

.service-card-footer .service-btn:not(.service-btn-primary):hover {
    background: var(--brand-navy) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 15px rgba(10, 29, 77, 0.3) !important;
}

/* Start Now button (primary) */
.service-card-footer .service-btn-primary {
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end)) !important;
    color: white !important;
    border: 2px solid transparent !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 10px rgba(0, 234, 254, 0.3) !important;
}

.service-card-footer .service-btn-primary:hover {
    background: linear-gradient(135deg, var(--grad-end), var(--grad-start)) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 234, 254, 0.4) !important;
}

/* Single button layout */
.service-card-footer:has(.service-btn:only-child) .service-btn {
    margin-top: 0.5rem;
}

/* Two button layout */
.service-card-footer:has(.service-btn:nth-child(2)) {
    gap: 0.5rem;
}

.service-card-footer:has(.service-btn:nth-child(2)) .service-btn:first-child {
    margin-bottom: 0;
}

.service-card-footer:has(.service-btn:nth-child(2)) .service-btn:last-child {
    margin-top: 0;
}

/* Responsive design for service cards */
@media (max-width: 768px) {
    .service-card-footer {
        padding: 0.75rem 1rem 1rem 1rem;
        gap: 0.4rem;
    }
    
    .service-card-footer .service-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        min-height: 40px;
    }
}

@media (max-width: 576px) {
    .service-card-footer {
        padding: 0.5rem 0.75rem 0.75rem 0.75rem;
        gap: 0.3rem;
    }
    
    .service-card-footer .service-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        min-height: 36px;
    }
}

/* Final service button styling */
.service-btn {
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end)) !important;
    color: var(--white) !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 4px 15px rgba(59, 91, 255, 0.3) !important;
    position: relative !important;
    z-index: 999 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    min-width: 120px !important;
    min-height: 40px !important;
}

/* ===== BLOG STYLES ===== */
.blog-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

.blog-section::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 100 100"><defs><pattern id="blog-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="rgba(59,91,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23blog-dots)"/></svg>');
    opacity: 0.6;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.blog-card-header {
    position: relative;
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.blog-image-placeholder svg {
    width: 48px;
    height: 48px;
    opacity: 0.8;
}

.blog-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.blog-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-date {
    font-weight: 600;
    color: var(--grad-start);
}

.blog-author {
    font-style: italic;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--grad-start);
}

.blog-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    flex-grow: 1;
}

.blog-card-footer {
    padding: 0 1.5rem 1.5rem;
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

.blog-read-more {
    color: var(--grad-start);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    cursor: pointer;
    pointer-events: auto;
}

.blog-read-more:hover {
    color: var(--grad-end);
    transform: translateX(5px);
}

.blog-read-more i {
    transition: transform 0.3s ease;
}

.blog-read-more:hover i {
    transform: translateX(3px);
}

/* Blog Detail Page Styles */
.blog-detail-hero {
    background: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-end) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-detail-hero::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 100 100"><defs><pattern id="blog-hero-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23blog-hero-dots)"/></svg>');
    opacity: 0.3;
}

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

.blog-detail-hero .blog-meta {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.blog-detail-hero .blog-date {
    color: var(--white);
}

.blog-detail-hero .blog-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.blog-detail-hero .blog-excerpt {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.blog-content-section {
    background: var(--white);
}

.blog-post {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.blog-featured-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: var(--grad-start);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-post-footer {
    border-top: 1px solid #e9ecef;
}

.author-title,
.share-title {
    font-weight: 600;
    color: var(--grad-start);
    margin-bottom: 0.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

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

.share-buttons {
    display: flex;
    gap: 0.5rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--white);
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.email {
    background: var(--grad-start);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.related-posts-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

/* Pagination Styles */
.pagination {
    margin-top: 3rem;
}

.page-link {
    color: var(--grad-start);
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--grad-start);
    color: var(--white);
    border-color: var(--grad-start);
}

.page-item.active .page-link {
    background: var(--grad-start);
    border-color: var(--grad-start);
    color: var(--white);
}

/* ===== HOME HERO SECTION - UNIQUE STYLES ===== */
.home-hero {
    background: linear-gradient(135deg, 
        #0A1D4D 0%, 
        #1A2B5C 25%, 
        #2A3B6C 50%, 
        #3B5BFF 75%, 
        #00EAFE 100%);
    color: var(--white);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 234, 254, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 91, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    opacity: 1;
}

.home-hero::after {
    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 100 100"><defs><pattern id="subtle-dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23subtle-dots)"/></svg>');
    opacity: 0.6;
}

/* Floating Elements for Visual Interest */
.home-hero .floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

.home-hero .floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.home-hero .floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.home-hero .floating-element:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 30%;
    right: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

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

/* Hero Content */
.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 10px 24px;
    margin-bottom: 28px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: badgeGlow 3s ease-in-out infinite alternate;
}

@keyframes badgeGlow {
    0% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    100% {
        box-shadow: 0 8px 32px rgba(0, 234, 254, 0.2);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 4s ease-in-out infinite;
}

@keyframes titleShine {
    0%, 100% {
        background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    50% {
        background: linear-gradient(135deg, #00EAFE 0%, #ffffff 50%, #3B5BFF 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Hero Features */
.hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}

.hero-feature-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-feature-icon svg {
    width: 12px;
    height: 12px;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    color: var(--grad-start);
    border: 2px solid var(--white);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary:hover {
    background: linear-gradient(135deg, #00EAFE 0%, #3B5BFF 100%);
    color: var(--white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 234, 254, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.hero-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-btn-secondary:hover::before {
    left: 100%;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: var(--white);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.05);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 234, 254, 0.1) 0%, rgba(59, 91, 255, 0.1) 100%);
    border-radius: 24px;
    pointer-events: none;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    min-width: 100px;
    transition: transform 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.hero-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Home Hero */
@media (max-width: 991.98px) {
    .home-hero {
        padding: 100px 0 80px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat {
        min-width: 80px;
        padding: 16px;
    }
}

@media (max-width: 767.98px) {
    .home-hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-feature {
        font-size: 0.95rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .hero-stat {
        min-width: 70px;
        padding: 12px;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .home-hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .hero-features-list {
        gap: 10px;
    }
    
    .hero-feature-icon {
        width: 20px;
        height: 20px;
    }
    
    .hero-feature-icon svg {
        width: 10px;
        height: 10px;
    }
}

/* ===== THANK YOU PAGE STYLES ===== */
.thank-you-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    padding: 80px 0;
}

.thank-you-card {
    background: var(--white);
    border-radius: 24px;
    padding: 60px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thank-you-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--grad-start), var(--grad-end));
}

/* Success Icon */
.success-icon {
    margin-bottom: 32px;
    color: var(--accent);
    animation: successPulse 2s ease-in-out infinite;
}

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

/* Thank You Content */
.thank-you-content {
    margin-bottom: 48px;
}

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.thank-you-subtitle {
    font-size: 1.25rem;
    color: var(--grad-start);
    font-weight: 600;
    margin-bottom: 24px;
}

.thank-you-message {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Next Steps */
.next-steps {
    margin-bottom: 48px;
    text-align: left;
}

.next-steps h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 24px;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 16px;
    border-left: 4px solid var(--grad-start);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.step-number {
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Contact Information */
.contact-info-section {
    margin-bottom: 48px;
}

.contact-info-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 16px;
}

.contact-info-section > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.contact-method {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--grad-start);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-method:nth-child(1) .contact-icon {
    background: #25D366; /* WhatsApp green */
}

.contact-method:nth-child(2) .contact-icon {
    background: var(--grad-start);
}

.contact-method:nth-child(3) .contact-icon {
    background: var(--accent);
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.whatsapp-link {
    background: #25D366;
    color: var(--white);
}

.whatsapp-link:hover {
    background: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.phone-link {
    background: var(--grad-start);
    color: var(--white);
}

.phone-link:hover {
    background: var(--grad-end);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 234, 254, 0.3);
}

.email-link {
    background: var(--accent);
    color: var(--white);
}

.email-link:hover {
    background: #15a052;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 201, 100, 0.3);
}

/* Business Hours */
.business-hours {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.business-hours h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 16px;
    text-align: center;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 8px;
    border-left: 3px solid var(--grad-start);
}

.hours-item .day {
    font-weight: 600;
    color: var(--brand-navy);
}

.hours-item .time {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-buttons .btn {
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

.action-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 768px) {
    .thank-you-page {
        padding: 40px 0;
    }
    
    .thank-you-card {
        padding: 40px 24px;
        margin: 0 16px;
    }
    
    .thank-you-title {
        font-size: 2rem;
    }
    
    .thank-you-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .step-item {
        padding: 16px;
        gap: 16px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 576px) {
    .thank-you-card {
        padding: 32px 20px;
    }
    
    .thank-you-title {
        font-size: 1.75rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .hours-item {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
    background: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-end) 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.contact-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    min-width: 120px;
    transition: transform 0.3s ease;
}

.contact-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-stat .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.contact-stat .stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 16px;
}

.form-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
}

/* Contact Page Form */
.contact-page-form .form-group {
    margin-bottom: 24px;
}

.contact-page-form .form-label {
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.contact-page-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.contact-page-form .form-control:focus {
    border-color: var(--grad-start);
    box-shadow: 0 0 0 0.2rem rgba(0, 234, 254, 0.25);
    outline: none;
    transform: translateY(-2px);
}

.contact-page-form .form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.contact-page-form .error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 8px;
    font-weight: 500;
}

.contact-page-form .btn {
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 234, 254, 0.3);
}

.contact-page-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 234, 254, 0.4);
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: sticky;
    top: 20px;
}

.contact-info-header {
    text-align: center;
    margin-bottom: 32px;
}

.contact-info-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 12px;
}

.contact-info-header p {
    color: var(--text-muted);
    margin: 0;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-method {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--grad-start);
}

.contact-method .contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-method:nth-child(1) .contact-icon {
    background: #25D366; /* WhatsApp green */
}

.contact-method:nth-child(2) .contact-icon {
    background: var(--grad-start);
}

.contact-method:nth-child(3) .contact-icon {
    background: var(--accent);
}

.contact-method .contact-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 8px;
}

.contact-method .contact-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.whatsapp-link {
    background: #25D366;
    color: var(--white);
}

.whatsapp-link:hover {
    background: #128C7E;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.phone-link {
    background: var(--grad-start);
    color: var(--white);
}

.phone-link:hover {
    background: var(--grad-end);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 234, 254, 0.3);
}

.email-link {
    background: var(--accent);
    color: var(--white);
}

.email-link:hover {
    background: #15a052;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(23, 201, 100, 0.3);
}

/* Business Hours */
.business-hours {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.business-hours h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 16px;
    text-align: center;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 8px;
    border-left: 3px solid var(--grad-start);
}

.hours-item .day {
    font-weight: 600;
    color: var(--brand-navy);
}

.hours-item .time {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Office Location */
.office-location {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
}

.office-location h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 16px;
    text-align: center;
}

.location-details {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-muted);
}

.location-details i {
    color: var(--grad-start);
    font-size: 1.2rem;
    margin-top: 4px;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background: var(--white);
}

.map-wrapper h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-navy);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .contact-hero {
        padding: 80px 0 60px;
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-stats {
        gap: 20px;
    }
    
    .contact-stat {
        min-width: 100px;
        padding: 16px;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 32px;
    }
    
    .contact-info-wrapper {
        position: static;
        margin-top: 32px;
    }
}

@media (max-width: 767.98px) {
    .contact-hero {
        padding: 60px 0 40px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-stats {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .contact-stat {
        width: 100%;
        max-width: 200px;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 24px;
    }
    
    .form-header h2 {
        font-size: 1.75rem;
    }
    
    .contact-methods {
        gap: 16px;
    }
    
    .contact-method {
        padding: 20px;
    }
    
    .hours-item {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 20px;
    }
    
    .contact-page-form .form-control {
        padding: 12px 14px;
    }
    
    .contact-page-form .btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* ===== RESPONSIVE DESIGN OPTIMIZATIONS ===== */

/* Global Responsive Improvements */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .contact-title {
        font-size: 2.75rem;
    }
    
    .service-card-new {
        padding: 2rem;
        min-height: 300px;
    }
}

@media (max-width: 991.98px) {
    /* Hero Sections */
    .home-hero,
    .contact-hero {
        padding: 80px 0 60px;
    }
    
    .hero-title,
    .contact-hero .contact-title {
        font-size: 2.5rem;
    }
    
    .hero-description,
    .contact-hero .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features-list {
        gap: 0.5rem;
    }
    
    .hero-feature {
        font-size: 0.95rem;
    }
    
    .hero-feature-icon {
        width: 18px;
        height: 18px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
    
    .hero-stats,
    .contact-hero .contact-stats {
        gap: 20px;
        justify-content: center;
    }
    
    .hero-stat,
    .contact-hero .contact-stat {
        min-width: 100px;
        padding: 16px;
    }
    
    .hero-stat-number,
    .contact-hero .contact-stat .stat-number {
        font-size: 1.5rem;
    }
    
    /* Service Cards */
    .service-card-new {
        padding: 1.75rem;
        min-height: 280px;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .service-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-start-now,
    .btn-learn-more {
        width: 100%;
        text-align: center;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .filter-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Contact Form */
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2rem;
    }
    
    .contact-info-wrapper {
        position: static;
        margin-top: 2rem;
    }
    
    .contact-methods {
        gap: 1rem;
    }
    
    .contact-method {
        padding: 1.5rem;
    }
    
    /* About Page */
    .story-content h2 {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.75rem;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.95rem;
    }
    
    /* Service Detail Page */
    .service-hero {
        padding: 60px 0;
    }
    
    .service-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .service-details {
        padding: 60px 0;
    }
    
    .benefits-grid {
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .contact-form-sticky {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    /* Navbar Logo */
    .navbar-brand {
        max-width: 150px;
    }
    
    .navbar-brand img {
        max-height: 35px;
    }
    
    /* Hero Sections */
    .home-hero,
    .contact-hero {
        padding: 60px 0 40px;
    }
    
    .hero-title,
    .contact-hero .contact-title {
        font-size: 2rem;
    }
    
    .hero-description,
    .contact-hero .contact-subtitle {
        font-size: 1rem;
    }
    
    .hero-badge,
    .contact-hero .contact-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .hero-features-list {
        gap: 0.4rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-feature {
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .hero-feature-icon {
        width: 16px;
        height: 16px;
    }
    
    .hero-stats,
    .contact-hero .contact-stats {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .hero-stat,
    .contact-hero .contact-stat {
        width: 100%;
        max-width: 200px;
        padding: 12px;
    }
    
    .hero-stat-number,
    .contact-hero .contact-stat .stat-number {
        font-size: 1.25rem;
    }
    
    .hero-stat-label,
    .contact-hero .contact-stat .stat-label {
        font-size: 0.8rem;
    }
    
    /* Service Cards */
    .service-card-new {
        padding: 1.5rem;
        min-height: 260px;
    }
    
    .service-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .service-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .service-image-wrapper {
        height: 120px;
        margin-bottom: 1rem;
    }
    
    .service-image-placeholder {
        height: 120px;
    }
    
    .service-image-placeholder svg {
        width: 2rem;
        height: 2rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .stars {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-author strong {
        font-size: 1rem;
    }
    
    .testimonial-author span {
        font-size: 0.85rem;
    }
    
    /* Contact Form */
    .contact-form-section {
        padding: 40px 0;
    }
    
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }
    
    .form-header h2 {
        font-size: 1.75rem;
    }
    
    .form-header p {
        font-size: 0.95rem;
    }
    
    .contact-page-form .form-control {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
    
    .contact-page-form .btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .contact-methods {
        gap: 0.75rem;
    }
    
    .contact-method {
        padding: 1.25rem;
    }
    
    .contact-method h4 {
        font-size: 1rem;
    }
    
    .contact-method p {
        font-size: 0.85rem;
    }
    
    .contact-link {
        font-size: 0.9rem;
    }
    
    /* About Page */
    .story-content h2 {
        font-size: 1.75rem;
    }
    
    .story-content .lead {
        font-size: 1.1rem;
    }
    
    .story-content p {
        font-size: 0.95rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-card h4 {
        font-size: 1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    /* Service Detail Page */
    .service-hero {
        padding: 40px 0;
    }
    
    .service-hero .hero-title {
        font-size: 2rem;
    }
    
    .service-hero .hero-description {
        font-size: 1rem;
    }
    
    .service-details {
        padding: 40px 0;
    }
    
    .service-content {
        font-size: 1rem;
    }
    
    .benefits-grid {
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1.25rem;
    }
    
    .benefit-card h4 {
        font-size: 1rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-widget h4 {
        font-size: 1.1rem;
    }
    
    .footer-widget p,
    .footer-widget li {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    /* Navbar Logo */
    .navbar-brand {
        max-width: 120px;
    }
    
    .navbar-brand img {
        max-height: 30px;
    }
    
    /* Hero Sections */
    .hero-title,
    .contact-hero .contact-title {
        font-size: 1.75rem;
    }
    
    .hero-description,
    .contact-hero .contact-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-badge,
    .contact-hero .contact-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .hero-features-list {
        gap: 0.3rem;
    }
    
    .hero-feature {
        font-size: 0.85rem;
    }
    
    .hero-feature-icon {
        width: 14px;
        height: 14px;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Service Cards */
    .service-card-new {
        padding: 1.25rem;
        min-height: 240px;
    }
    
    .service-title {
        font-size: 1rem;
    }
    
    .service-description {
        font-size: 0.85rem;
    }
    
    .service-image-wrapper {
        height: 100px;
    }
    
    .service-image-placeholder {
        height: 100px;
    }
    
    .service-image-placeholder svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .btn-start-now,
    .btn-learn-more {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-content p {
        font-size: 0.9rem;
    }
    
    .stars {
        font-size: 1rem;
    }
    
    /* Contact Form */
    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.25rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .contact-page-form .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .contact-page-form .btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    /* About Page */
    .story-content h2 {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    /* Service Detail Page */
    .service-hero .hero-title {
        font-size: 1.75rem;
    }
    
    .benefit-card {
        padding: 1rem;
    }
    
    /* Footer */
    .footer-widget {
        margin-bottom: 1.5rem;
    }
    
    .footer-widget h4 {
        font-size: 1rem;
    }
    
    .footer-widget p,
    .footer-widget li {
        font-size: 0.85rem;
    }
}

/* ===== DESIGN SYNCHRONIZATION FIXES ===== */

/* Unified Button Styles - Using Soft Brand Colors */
.btn-brand {
    background: linear-gradient(45deg, var(--grad-start-soft), var(--grad-end-soft));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(78, 197, 212, 0.2);
}

.btn-brand:hover {
    background: linear-gradient(45deg, var(--grad-end-soft), var(--grad-start-soft));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(78, 197, 212, 0.3);
    text-decoration: none;
}

.btn-outline-brand {
    background: transparent;
    color: var(--grad-start);
    border: 2px solid var(--grad-start);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-outline-brand:hover {
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 234, 254, 0.3);
    text-decoration: none;
}

/* Unified Card Styles */
.service-card-new,
.testimonial-card,
.feature-card,
.benefit-card,
.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.service-card-new:hover,
.testimonial-card:hover,
.feature-card:hover,
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

/* Unified Form Styles */
.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus {
    border-color: var(--grad-start);
    box-shadow: 0 0 0 0.2rem rgba(0, 234, 254, 0.25);
    outline: none;
}

/* Unified Section Spacing */
section {
    padding: 80px 0;
}

@media (max-width: 991.98px) {
    section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 40px 0;
    }
}

/* Navbar Logo Fix */
.navbar-brand img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.navbar-brand {
    max-width: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Ensure hero titles are clean */
.contact-hero .contact-title,
.contact-hero .contact-subtitle,
.contact-hero .contact-badge {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* ===== TWO-LAYER NAVIGATION SYSTEM ===== */

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 8px 0;
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-item i {
    color: var(--grad-start);
    font-size: 0.875rem;
    width: 16px;
    text-align: center;
}

.top-bar-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-item a:hover {
    color: var(--grad-start);
}

.top-bar-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.social-icon:hover {
    background: var(--grad-start);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Main Navigation */
.navbar {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.navbar-nav .nav-link {
    color: #333333;
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--grad-start);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--grad-start);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 250px;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    color: #333333;
    transition: all 0.3s ease;
    font-weight: 500;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    color: #ffffff;
    transform: translateX(5px);
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .top-bar-info {
        gap: 1rem;
    }
    
    .top-bar-social {
        justify-content: flex-start;
        margin-top: 0.5rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }
    
    .dropdown-menu {
        min-width: 200px;
    }
}

@media (max-width: 576px) {
    .top-bar-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .top-bar-social {
        margin-top: 0.75rem;
    }
}

/* Unified Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--brand-navy);
    line-height: 1.2;
}

.lead {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Unified Icon Styles */
.feature-icon,
.service-icon,
.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 234, 254, 0.3);
    transition: all 0.3s ease;
}

.feature-icon:hover,
.service-icon:hover,
.benefit-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 234, 254, 0.4);
    background: linear-gradient(45deg, var(--grad-end), var(--grad-start));
}

/* Unified Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Performance Optimizations */
* {
    box-sizing: border-box;
}

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

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

/* Focus States for Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    outline: 2px solid var(--grad-start);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .btn,
    .hero-actions,
    .contact-form,
    .footer {
        display: none !important;
    }
    
    .hero,
    .contact-hero {
        background: white !important;
        color: black !important;
    }
}

/* ===== ENHANCED SERVICE DETAIL PAGE STYLES ===== */

/* Service Detail Hero Section */
.service-detail-hero {
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: auto;
}

.service-detail-hero::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 100 100"><defs><pattern id="grain6" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain6)"/></svg>');
    opacity: 0.3;
}

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

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-hero-badge i {
    color: #FFD700;
}

.service-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.95;
}

/* Enhanced Features */
.service-hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
}

.service-feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-feature-icon i {
    color: #4CAF50;
    font-size: 0.8rem;
}

/* Trust Indicators */
.service-trust-indicators {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.trust-stat {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px;
    min-width: 80px;
    transition: transform 0.3s ease;
}

.trust-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.trust-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced CTA */
.service-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-btn-primary {
    background: var(--white);
    color: var(--grad-start);
    border: 2px solid var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.service-btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.service-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.service-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: var(--white);
}

/* Service Hero Visual */
.service-hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.service-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.service-hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.service-hero-image:hover {
    transform: scale(1.05);
}

.service-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 234, 254, 0.1) 0%, rgba(59, 91, 255, 0.1) 100%);
    border-radius: 24px;
    pointer-events: none;
}

.service-hero-placeholder {
    width: 400px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.placeholder-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.service-hero-placeholder h4 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-hero-placeholder p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Floating Trust Card */
.floating-trust-card {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 250px;
}

.trust-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-weight: 600;
    color: var(--brand-navy);
}

.trust-card-header i {
    color: var(--grad-start);
}

.trust-card-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-card-stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stat-icon {
    font-size: 1.2rem;
}

.stat-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brand-navy);
}

/* Enhanced Service Details Section */
.service-details-enhanced {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8f9fa 100%);
}

.service-content-wrapper {
    max-width: 100%;
}

.service-overview-section {
    margin-bottom: 60px;
}

.section-header-enhanced {
    margin-bottom: 32px;
}

.section-title-enhanced {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 16px;
}

.section-divider-enhanced {
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    border-radius: 2px;
}

.service-content-enhanced {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.service-content-enhanced h1, 
.service-content-enhanced h2, 
.service-content-enhanced h3 {
    color: var(--brand-navy);
    margin-top: 32px;
    margin-bottom: 16px;
}

.service-content-enhanced p {
    margin-bottom: 20px;
}

/* Enhanced Benefits Section */
.benefits-section-enhanced {
    margin-bottom: 60px;
}

.benefits-title-enhanced {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 40px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-card-enhanced {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.benefit-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.benefit-icon-enhanced {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(0, 234, 254, 0.3);
    transition: all 0.3s ease;
}

.benefit-card-enhanced:hover .benefit-icon-enhanced {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 234, 254, 0.4);
    background: linear-gradient(45deg, var(--grad-end), var(--grad-start));
}

.benefit-card-enhanced h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 16px;
}

.benefit-card-enhanced p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.benefit-highlight {
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
}

/* Process Section */
.process-section {
    margin-bottom: 60px;
}

.process-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 40px;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 234, 254, 0.3);
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Enhanced Contact Form */
.contact-form-sticky-enhanced {
    position: sticky;
    top: 80px;
    z-index: 100;
}

.contact-form-card-enhanced {
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--grad-start);
    position: relative;
    overflow: hidden;
}

.contact-form-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
}

.form-header-enhanced {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.form-badge-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0, 234, 254, 0.3);
    animation: pulse 2s infinite;
}

.form-title-enhanced {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 12px;
}

.form-subtitle-enhanced {
    color: var(--text-muted);
    line-height: 1.6;
}

.form-group-enhanced {
    margin-bottom: 24px;
}

.form-label-enhanced {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 8px;
}

.form-label-enhanced i {
    color: var(--grad-start);
}

.contact-form-enhanced .form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-form-enhanced .form-control:focus {
    border-color: var(--grad-start);
    box-shadow: 0 0 0 0.3rem rgba(0, 234, 254, 0.25), 0 4px 15px rgba(0, 234, 254, 0.1);
    outline: none;
    transform: translateY(-1px);
}

.error-message-enhanced {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 4px;
}

.btn-submit-enhanced {
    background: linear-gradient(45deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    border: none;
    border-radius: 50px;
    padding: 18px 32px;
    font-weight: 800;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 234, 254, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-submit-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-submit-enhanced:hover::before {
    left: 100%;
}

.btn-submit-enhanced:hover {
    background: linear-gradient(45deg, var(--grad-end), var(--grad-start));
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 234, 254, 0.5);
}

.form-footer-enhanced {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e9ecef;
}

.trust-indicators-enhanced {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.trust-item-enhanced {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.trust-item-enhanced i {
    color: var(--grad-start);
    width: 16px;
}

/* Enhanced CTA Section */
.cta-section-enhanced {
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section-enhanced::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 100 100"><defs><pattern id="grain7" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain7)"/></svg>');
    opacity: 0.3;
}

.cta-content-enhanced {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-title-enhanced {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-description-enhanced {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-features-enhanced {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 500;
}

.cta-feature i {
    color: #4CAF50;
}

.cta-buttons-enhanced {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    background: var(--white);
    color: var(--grad-start);
    border: 2px solid var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.cta-btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

.cta-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: var(--white);
}

/* Pulse Animation for Form Badge */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 234, 254, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 234, 254, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 234, 254, 0.3);
    }
}

/* Responsive Design for Service Detail Page */
@media (max-width: 991.98px) {
    .service-detail-hero {
        padding: 50px 0;
    }
    
    .service-hero-title {
        font-size: 2.75rem;
    }
    
    .service-hero-description {
        font-size: 1.1rem;
    }
    
    .service-trust-indicators {
        gap: 20px;
    }
    
    .trust-stat {
        min-width: 80px;
        padding: 16px;
    }
    
    .service-hero-actions {
        flex-direction: column;
    }
    
    .service-btn-primary,
    .service-btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .floating-trust-card {
        position: static;
        margin-top: 20px;
        max-width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-form-sticky-enhanced {
        position: static;
        margin-top: 40px;
    }
    
    .cta-title-enhanced {
        font-size: 2.5rem;
    }
    
    .cta-features-enhanced {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .cta-buttons-enhanced {
        flex-direction: column;
    }
    
    .cta-btn-primary,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .service-detail-hero {
        padding: 40px 0;
    }
    
    .service-hero-title {
        font-size: 2.25rem;
    }
    
    .service-hero-description {
        font-size: 1rem;
    }
    
    .service-hero-features {
        gap: 12px;
    }
    
    .service-feature-item {
        font-size: 1rem;
    }
    
    .service-trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .trust-stat {
        width: 100%;
        max-width: 200px;
    }
    
    .section-title-enhanced {
        font-size: 2rem;
    }
    
    .benefits-title-enhanced {
        font-size: 1.75rem;
    }
    
    .process-title {
        font-size: 1.75rem;
    }
    
    .cta-title-enhanced {
        font-size: 2rem;
    }
    
    .cta-description-enhanced {
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .service-hero-title {
        font-size: 1.75rem;
    }
    
    .service-hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .service-btn-primary,
    .service-btn-secondary {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .section-title-enhanced {
        font-size: 1.75rem;
    }
    
    .benefits-title-enhanced {
        font-size: 1.5rem;
    }
    
    .process-title {
        font-size: 1.5rem;
    }
    
    .cta-title-enhanced {
        font-size: 1.75rem;
    }
}
