/* ===================================
   VA Assistant Pro - Main CSS
   Modern, Professional Styling
   =================================== */

/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    --primary-blue: #2B82D8;
    --primary-green: #74E234;
    --primary-gray: #434343;
    --dark-gray: #2a2a2a;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
}

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

html {
    scroll-padding-top: 100px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ===================================
   Container & Grid Utilities
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

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

/* ===================================
   Typography
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: #2270bd;
    border-color: #2270bd;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-nav {
    padding: 10px 25px;
    font-size: 13px;
}

.btn-hero {
    padding: 18px 45px;
    font-size: 16px;
}

/* ===================================
   Header & Navigation
   =================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-lg);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
}

/* Desktop Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    font-size: 14px;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-blue);
    padding-left: 30px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-blue);
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2B82D8 0%, #1a5fa8 100%);
    padding-top: 100px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 30px;
    line-height: 1.8;
    font-weight: 400;
}

.hero-video {
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.video-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.video-wrapper img {
    width: 100%;
    height: auto;
}

/* Fade In Animations */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-delayed {
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Pulse animation for CTA buttons */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(43, 130, 216, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(43, 130, 216, 0);
    }
}

.btn-hero {
    animation: pulse 2s infinite;
}

.hero-image img {
    animation: float 3s ease-in-out infinite;
}

/* Hover grow animation */
.industry-card,
.trust-card,
.benefit-card,
.team-member,
.blog-card,
.pricing-card {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.industry-card:hover,
.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.trust-card:hover,
.team-member:hover,
.blog-card:hover {
    transform: translateY(-8px) scale(1.01);
}

/* Icon rotate on hover */
.industry-icon {
    transition: var(--transition), transform 0.5s ease;
}

.industry-card:hover .industry-icon {
    transform: rotateY(360deg) scale(1.1);
}

.trust-icon {
    transition: var(--transition);
}

.trust-card:hover .trust-icon {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
}

/* Animated underline - removed duplicate to fix double line issue */

/* Shake animation for errors */
@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-5px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(5px);
    }
}

.form-error-shake {
    animation: shake 0.5s;
}

/* Ripple effect on buttons */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    margin-bottom: 50px;
}

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

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

/* White subtitle for hero/colored sections */
.service-hero .lead,
.about-hero .lead,
.pricing-page-hero .lead {
    color: rgba(255, 255, 255, 1) !important;
    font-weight: 400;
}

.service-hero .section-subtitle,
.about-hero .section-subtitle,
.pricing-page-hero .section-subtitle {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* ===================================
   Industries Section
   =================================== */
.industries-section {
    background: var(--light-gray);
}

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

.industry-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.industry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.industry-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.industry-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

.industry-link:hover {
    gap: 10px;
}

/* ===================================
   Company Overview Section
   =================================== */
.company-overview {
    background: var(--white);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.overview-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.overview-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

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

.overview-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
}

.overview-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.overview-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.overview-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-mini {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-mini i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

.stat-mini span {
    font-size: 1rem;
    color: var(--text-gray);
}

.stat-mini strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* ===================================
   Pricing Highlight Section
   =================================== */
.pricing-highlight-section {
    background: var(--light-gray);
}

.pricing-highlight-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a5fa8 100%);
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pricing-highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.pricing-highlight-box::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.pricing-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.pricing-highlight-box h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--white);
    text-align: left;
}

.pricing-feature i {
    font-size: 1.5rem;
    color: var(--primary-green);
}

/* ===================================
   Trust Section
   =================================== */
.trust-section {
    background: var(--white);
}

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

.trust-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: var(--light-gray);
    transition: var(--transition);
}

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

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.trust-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.trust-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, rgba(43, 130, 216, 0.95), rgba(26, 95, 168, 0.95)),
        url('https://images.unsplash.com/photo-1556761175-b413da4baf72?w=1600&h=900&fit=crop') center/cover;
    color: var(--white);
    padding: 100px 0;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content>p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
}

/* ===================================
   Consultation Form
   =================================== */
.consultation-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.consultation-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.consultation-form form,
.contact-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consultation-form input,
.consultation-form textarea,
.contact-form-wrapper input,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-dark);
}

.consultation-form input:focus,
.consultation-form textarea:focus,
.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(43, 130, 216, 0.1);
}

.consultation-form textarea,
.contact-form-wrapper textarea {
    resize: vertical;
    min-height: 120px;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder,
.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: #999;
}

/* ===================================
   Footer
   =================================== */
.main-footer {
    background: var(--dark-gray);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-about p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-col ul li i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.footer-col a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ===================================
   Service Page Specific Styles
   =================================== */
.service-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a5fa8 100%);
    padding: 150px 0 100px;
    color: var(--white);
    text-align: center;
}

.service-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-hero .lead {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.95);
}

.benefits-section {
    background: var(--light-gray);
}

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

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-card h3 i {
    color: var(--primary-green);
    font-size: 1.5rem;
}

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

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

.process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.pricing-cta-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, #5bc921 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 0;
}

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

.pricing-cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.contact-form-section {
    background: var(--light-gray);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* ===================================
   Pricing Page Styles
   =================================== */
.pricing-page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a5fa8 100%);
    padding: 150px 0 100px;
    color: var(--white);
    text-align: center;
}

.pricing-page-hero h1 {
    color: var(--white);
}

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

.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.pricing-card.featured {
    border-color: var(--primary-green);
    transform: scale(1.05);
}

.pricing-card.featured .price-tag {
    background: var(--primary-green);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price-tag {
    background: var(--primary-blue);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    opacity: 0.9;
}

.features-list {
    text-align: left;
    margin-bottom: 30px;
}

.features-list li {
    padding: 12px 0;
    display: flex;
    align-items: start;
    gap: 10px;
    border-bottom: 1px solid var(--border-color);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 3px;
}

/* ===================================
   FAQ Page Styles
   =================================== */
.faq-section {
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-gray);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary-blue);
}

.faq-question {
    padding: 25px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question i {
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   About Page Styles
   =================================== */
.about-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a5fa8 100%);
    padding: 150px 0 100px;
    color: var(--white);
    text-align: center;
}

.about-hero h1 {
    color: #ffffff !important;
}

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

.team-member {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-member-image {
    width: 100%;
    height: 300px;
    background: var(--light-gray);
    overflow: hidden;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .team-member-image img {
    transform: scale(1.1);
}

.team-member-info {
    padding: 25px;
    text-align: center;
}

.team-member-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.team-member-role {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 15px;
}

/* ===================================
   Blog & News Styles
   =================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--light-gray);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-meta i {
    color: var(--primary-blue);
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.blog-content h3 a {
    color: var(--text-dark);
    transition: var(--transition);
}

.blog-content h3 a:hover {
    color: var(--primary-blue);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    gap: 10px;
}

/* ===================================
   Why Choose Us Section with Images
   =================================== */
.why-choose-section {
    background: var(--light-gray);
}

.why-choose-grid {
    display: grid;
    gap: 50px;
}

.why-choose-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-choose-item:nth-child(even) {
    direction: rtl;
}

.why-choose-item:nth-child(even)>* {
    direction: ltr;
}

.why-choose-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.why-choose-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.why-choose-item:hover .why-choose-image img {
    transform: scale(1.05);
}

.why-choose-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-choose-content h3 i {
    color: var(--primary-blue);
    font-size: 1.8rem;
}

.why-choose-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   Testimonials with Images
   =================================== */
.testimonials-with-images {
    background: var(--white);
}

.testimonials-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-with-image {
    background: var(--light-gray);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-with-image:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.testimonial-with-image:hover .testimonial-image img {
    transform: scale(1.1);
}

.testimonial-content {
    padding: 30px;
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

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

.testimonial-author-info h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-author-info span {
    color: var(--primary-blue);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===================================
   Process Visual Section
   =================================== */
.process-visual-section {
    background: linear-gradient(135deg, #f5f9ff 0%, #fff 100%);
}

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

.process-visual-item {
    text-align: center;
    transition: var(--transition);
}

.process-visual-item:hover {
    transform: translateY(-10px);
}

.process-visual-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.process-visual-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.process-visual-item:hover .process-visual-image img {
    transform: scale(1.05);
}

.process-visual-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
}

.process-visual-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.process-visual-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===================================
   Blog Detail & Sidebar
   =================================== */
.blog-post-header {
    padding: 60px 0;
    padding-top: 60px;
    margin-top: 90px;
    background: linear-gradient(135deg, #f0f6ff 0%, var(--light-gray) 50%, #f0fff0 100%);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.blog-post-header h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
}

.blog-post-meta {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-post-meta span {
    margin: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-post-meta i {
    color: var(--primary-blue);
}

.blog-post-content {
    padding: 50px 0 80px;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--text-light);
}

.blog-post-content .row {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
}

.main-content {
    max-width: 780px;
    width: 100%;
    flex-shrink: 0;
}

.main-content>p:first-of-type {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.9;
}

.blog-post-content h2 {
    font-size: 1.6rem;
    margin: 45px 0 18px;
    color: var(--text-dark);
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f0fe;
}

.blog-post-content h3 {
    font-size: 1.25rem;
    margin: 28px 0 12px;
    color: var(--text-dark);
}

.blog-post-content p {
    margin-bottom: 16px;
}

.blog-post-content img {
    width: 100%;
    border-radius: 12px;
    margin: 30px 0;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 16px 0 20px 24px;
}

.blog-post-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--primary-blue);
    background: #f0f6ff;
    margin: 28px 0;
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--text-dark);
}

.blog-post-content blockquote p {
    margin-bottom: 0;
}

.blog-key-takeaway {
    background: linear-gradient(135deg, #f0f6ff, #e8f4fd);
    border: 1px solid #d0e3f7;
    border-radius: 12px;
    padding: 24px 28px;
    margin: 32px 0;
}

.blog-key-takeaway h4 {
    color: var(--primary-blue);
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-key-takeaway ul {
    margin: 0 0 0 20px;
    list-style: none;
}

.blog-key-takeaway li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.blog-key-takeaway li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: 700;
}

.blog-cta-box {
    background: linear-gradient(135deg, var(--primary-blue), #1a6bc4);
    color: var(--white);
    border-radius: 12px;
    padding: 32px;
    margin: 40px 0;
    text-align: center;
}

.blog-cta-box h3 {
    color: var(--white) !important;
    margin: 0 0 10px !important;
    border: none !important;
    font-size: 1.4rem;
}

.blog-cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.blog-cta-box .btn {
    background: var(--white);
    color: var(--primary-blue);
    font-weight: 600;
}

.blog-cta-box .btn:hover {
    background: var(--primary-green);
    color: var(--text-dark);
}

.blog-share {
    margin-top: 50px;
    padding-top: 28px;
    border-top: 1px solid var(--border-color);
}

.blog-share h4 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 1rem;
}

.blog-share .social-links {
    display: flex;
    gap: 12px;
}

.blog-share .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--text-light);
    font-size: 1.2rem;
    transition: var(--transition);
}

.blog-share .social-links a:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Sidebar */
.blog-sidebar {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    position: sticky;
    top: 110px;
    align-self: flex-start;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.sidebar-widget {
    margin-bottom: 30px;
    padding: 24px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.sidebar-widget h4 {
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-blue);
    width: fit-content;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.recent-post-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.recent-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-info h5 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    line-height: 1.4;
    font-weight: 500;
}

.recent-post-info a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.recent-post-info a:hover {
    color: var(--primary-blue);
}

.recent-post-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-blue), #1a6bc4);
    padding: 28px 24px;
    border-radius: 12px;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
}

.sidebar-cta h4 {
    border-bottom-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.sidebar-cta .btn {
    background: var(--white);
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-block;
    width: 100%;
}

.sidebar-cta .btn:hover {
    background: var(--primary-green);
    color: var(--text-dark);
}


/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 992px) {

    .hero-content,
    .overview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-video {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .main-nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        overflow-y: auto;
    }

    .main-nav.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--light-gray);
        margin-top: 10px;
    }

    .has-dropdown .dropdown-menu {
        display: none;
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .blog-post-content .row {
        flex-direction: column;
    }

    .blog-sidebar {
        max-width: 100%;
        min-width: 100%;
        position: static;
    }

    .blog-post-header h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section {
        padding: 60px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .industries-grid,
    .benefits-grid,
    .process-steps,
    .trust-grid,
    .team-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .consultation-form,
    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .service-hero h1,
    .pricing-page-hero h1,
    .about-hero h1 {
        font-size: 2.2rem;
    }

    .blog-post-header {
        padding: 40px 0 30px;
    }

    .blog-post-header h1 {
        font-size: 1.6rem;
    }

    .pricing-features {
        grid-template-columns: 1fr;
    }

    /* New image sections responsive */
    .why-choose-item {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .why-choose-item:nth-child(even) {
        direction: ltr;
    }

    .testimonials-image-grid {
        grid-template-columns: 1fr;
    }

    .process-visual-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo img {
        height: 50px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .btn-hero,
    .btn-lg {
        padding: 14px 30px;
        font-size: 14px;
    }

    .hero-section {
        min-height: 70vh;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .pricing-highlight-box h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}