/* ===== MINIMALIST BLUE & WHITE THEME ===== */
:root {
    --primary-color: #2563EB; /* Professional Blue */
    --primary-dark: #1D4ED8; /* Darker Blue */
    --secondary-color: #3B82F6; /* Bright Blue */
    --dark-bg: #FFFFFF; /* Pure White */
    --dark-card: #F8FAFC; /* Light Gray Card */
    --dark-lighter: #F1F5F9; /* Very Light Gray */
    --text-primary: #1E293B; /* Dark Gray */
    --text-secondary: #475569; /* Medium Gray */
    --text-tertiary: #94A3B8; /* Light Gray */
    --success: #10B981; /* Success Green */
    --warning: #F59E0B;
    --danger: #DC2626;
    --accent: #2563EB; /* Professional Blue */
    --border-radius: 8px;
    --card-shadow: 0 1px 3px rgba(37, 99, 235, 0.1);
    --transition: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
    font-weight: 300;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.3;
}

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

ul {
    list-style: none;
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--text-primary);
    font-weight: 400;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 1px;
    background: var(--primary-color);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    animation: scaleInX 0.8s ease 0.5s forwards;
}

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

section {
    padding: 80px 0;
    position: relative;
}

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

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

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

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

@keyframes scaleInX {
    from {
        transform: translateX(-50%) scaleX(0);
    }
    to {
        transform: translateX(-50%) scaleX(1);
    }
}

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

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px var(--primary-color);
    }
    50% {
        box-shadow: 0 0 10px var(--primary-color);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===== MINIMALIST DESIGN - REMOVED COMPLEX ANIMATIONS ===== */

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.slide-left {
    transform: translateX(-50px);
}

.animate-on-scroll.slide-left.visible {
    transform: translateX(0);
}

.animate-on-scroll.slide-right {
    transform: translateX(50px);
}

.animate-on-scroll.slide-right.visible {
    transform: translateX(0);
}

.animate-on-scroll.scale-up {
    transform: scale(0.8);
}

.animate-on-scroll.scale-up.visible {
    transform: scale(1);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--border-radius);
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    font-size: 0.9rem;
}

.btn::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:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--primary-color);
    color: #FFFFFF;
    border: 1px solid var(--primary-color);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
    z-index: -1;
}

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

.btn-outline:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    border-color: var(--secondary-color);
}

.btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    transition: var(--transition);
}

header.scrolled {
    padding: 12px 0;
    box-shadow: 0 2px 15px rgba(37, 99, 235, 0.1);
    background-color: rgba(255, 255, 255, 0.98);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(59, 130, 246, 0.01) 50%, rgba(147, 197, 253, 0.005) 100%);
    z-index: -1;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(90deg, var(--text-primary), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.3s forwards;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* Hero image styles removed for minimalist design */

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* ===== FEATURES SECTION ===== */
.features {
    background-color: var(--dark-lighter);
}

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

.feature-card {
    background-color: var(--dark-card);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInScale 0.8s ease forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(108, 99, 255, 0.1), transparent);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 191, 255, 0.2);
    border: 1px solid rgba(0, 191, 255, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0;
}

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

.feature-card:hover .feature-icon {
    transform: scale(1.02);
    box-shadow: 0 3px 10px rgba(0, 204, 85, 0.2);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.2);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.currency {
    font-size: 1.5rem;
    vertical-align: top;
    margin-right: 5px;
}

.period {
    font-size: 1rem;
    color: var(--text-tertiary);
    font-weight: 400;
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.pricing-features ul li i {
    margin-right: 10px;
    color: var(--success);
}

.pricing-features ul li.disabled {
    color: var(--text-tertiary);
}

.pricing-features ul li.disabled i {
    color: var(--danger);
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.pricing-footer .btn {
    width: 100%;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--dark-lighter);
}

.testimonial-slider {
    margin-bottom: 30px;
}

.testimonial-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--card-shadow);
    margin: 0 15px;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    position: relative;
    padding: 0 15px;
}

.testimonial-content p::before, .testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
}

.testimonial-content p::before {
    top: -20px;
    left: -10px;
}

.testimonial-content p::after {
    bottom: -35px;
    right: -10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-tertiary);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.testimonial-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--dark-card);
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-controls button:hover {
    background-color: var(--primary-color);
}

/* ===== CTA SECTION ===== */
.cta {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(59, 130, 246, 0.03) 100%);
    background-size: cover;
    background-position: center;
    text-align: center;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-lighter);
    padding: 80px 0 20px;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

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

.footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-col p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: var(--transition);
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Brand-specific social media colors */
.social-links a[href*="whatsapp"]:hover, 
.social-links a[aria-label="WhatsApp"]:hover {
    background-color: #25D366 !important; /* Official WhatsApp Green */
    color: #ffffff !important;
}

.social-links a[href*="instagram"]:hover,
.social-links a[aria-label="Instagram"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: #ffffff !important;
}

.social-links a[href*="linkedin"]:hover,
.social-links a[aria-label="LinkedIn"]:hover {
    background-color: #0A66C2 !important; /* Official LinkedIn Blue */
    color: #ffffff !important;
}

.social-links a[href*="twitter"]:hover,
.social-links a[aria-label="Twitter"]:hover {
    background-color: #1DA1F2 !important; /* Official Twitter Blue */
    color: #ffffff !important;
}

.social-links a[href*="facebook"]:hover,
.social-links a[aria-label="Facebook"]:hover {
    background-color: #1877F2 !important; /* Official Facebook Blue */
    color: #ffffff !important;
}

/* Social media icon default colors */
.social-links a .fa-whatsapp {
    color: #25D366;
}

.social-links a .fa-linkedin-in {
    color: #0A66C2;
}

.social-links a .fa-instagram {
    color: #E4405F;
}

.social-links a .fa-twitter {
    color: #1DA1F2;
}

.social-links a .fa-facebook-f {
    color: #1877F2;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
}

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

.footer-col ul li a {
    color: var(--text-secondary);
}

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

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.contact-info li i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 5px;
}

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

.footer-bottom p {
    color: var(--text-tertiary);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-tertiary);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 80px 0;
    }
    
    .hero {
        padding: 160px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
}

/* Mobile Menu Styling */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--dark-bg);
    z-index: 1001;
    padding: 80px 20px 30px;
    box-shadow: -5px 0 15px rgba(37, 99, 235, 0.1);
    border-left: 1px solid rgba(37, 99, 235, 0.1);
    transition: 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-links a {
    padding: 10px 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 99, 235, 0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== ENHANCED HERO SECTION ===== */
.enhanced-hero {
    min-height: 100vh;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(59, 130, 246, 0.02) 50%, rgba(147, 197, 253, 0.01) 100%);
    z-index: 1;
}

.enhanced-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.enhanced-hero .hero-content {
    max-width: 600px;
}

.enhanced-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.enhanced-hero .hero-content h1 .highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.enhanced-hero .hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    opacity: 0.6;
    z-index: -1;
}

.enhanced-hero .hero-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

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

.hero-stats .stat-item {
    text-align: center;
    min-width: fit-content;
    flex-shrink: 0;
}

.hero-stats .stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: visible;
    text-overflow: unset;
    width: auto;
    min-width: fit-content;
    display: block;
}

.hero-stats .stat-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Enhanced hero image styles removed for minimalist design */

/* ===== TRUSTED BY SECTION ===== */
.trusted-by {
    background-color: var(--dark-lighter);
    padding: 50px 0;
    text-align: center;
}

.trusted-by h2 {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.client-logo {
    filter: grayscale(1) opacity(0.7);
    transition: var(--transition);
}

.client-logo:hover {
    filter: grayscale(0) opacity(1);
}

/* ===== SERVICES PAGE STYLES ===== */
.page-header {
    background-color: var(--dark-lighter);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.services-overview {
    padding: 100px 0;
}

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

.service-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 180, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-features {
    margin-top: auto;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.service-features li i {
    color: var(--primary-color);
    font-size: 14px;
}

/* ===== WORK PROCESS SECTION ===== */
.work-process {
    background-color: var(--dark-lighter);
    padding: 100px 0;
}

.process-steps {
    margin-top: 60px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 25px;
    width: 2px;
    height: calc(100% - 30px);
    background-color: var(--primary-color);
    opacity: 0.3;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content {
    padding-top: 5px;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--text-secondary);
}

/* ===== CASE STUDIES SECTION ===== */
.case-studies {
    padding: 100px 0;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.case-study {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.case-study:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.case-image {
    height: 200px;
    overflow: hidden;
}

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

.case-study:hover .case-image img {
    transform: scale(1.1);
}

.case-content {
    padding: 30px;
}

.case-tag {
    display: inline-block;
    background-color: rgba(0, 180, 219, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.case-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.case-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 180, 219, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-stats {
    display: flex;
    margin-top: 40px;
    gap: 30px;
}

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

.about-stats .stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.about-stats .stat-item p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* ===== MISSION & VALUES SECTION ===== */
.mission-values {
    background-color: var(--dark-lighter);
    padding: 100px 0;
}

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

.value-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.value-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 180, 219, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-secondary);
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 100px 0;
}

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

.team-member {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.member-img {
    height: 300px;
    overflow: hidden;
}

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

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

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

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

.member-info p {
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-info .social-links a {
    width: 35px;
    height: 35px;
    background-color: var(--dark-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    background-color: var(--dark-lighter);
    padding: 100px 0;
}

.process-timeline {
    max-width: 800px;
    margin: 60px auto 0;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 70px;
    left: 25px;
    width: 2px;
    height: calc(100% - 30px);
    background-color: var(--primary-color);
    opacity: 0.3;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.timeline-content {
    background-color: var(--dark-card);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    flex-grow: 1;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ===== SUCCESS METRICS SECTION ===== */
.success-metrics {
    padding: 100px 0;
}

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

.metric-card {
    background-color: var(--dark-card);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.metric-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* ===== PRICING CTA ===== */
.pricing-cta {
    text-align: center;
    margin-top: 50px;
}

.pricing-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.pricing-cta a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: var(--transition);
}

.pricing-cta a:hover {
    color: var(--primary-dark);
}

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 1200px) {
    .enhanced-hero .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .enhanced-hero {
        padding: 150px 0 80px;
    }
    
    .enhanced-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .enhanced-hero .hero-content {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    /* Enhanced hero image styles removed */
    
    .about-grid,
    .timeline-item {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .service-card,
    .case-study,
    .team-member,
    .value-card,
    .metric-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .services-grid,
    .case-studies-grid,
    .team-grid,
    .values-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .hero-stats .stat-item {
        width: 100%;
        max-width: 200px;
    }
    
    .hero-stats .stat-item h3 {
        white-space: nowrap;
        overflow: visible;
        text-overflow: unset;
        width: auto;
        min-width: fit-content;
        display: block;
    }
}

@media (max-width: 576px) {
    .enhanced-hero .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .client-logos {
        gap: 20px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 30px;
    }
} 

/* ===== FULL QUOTE SECTION STYLES ===== */
.quote-container {
    margin: 100px 0;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark-card), var(--dark-lighter));
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}

.quote-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.quote-card {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

/* Removed hover effects for minimalist design */

.quote-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.quote-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-card > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.quote-features {
    margin: 30px 0 40px;
    padding: 0;
    list-style: none;
}

.quote-features li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px;
    font-size: 1rem;
    padding-left: 20px;
}

.quote-features li i {
    color: var(--secondary-color);
    margin-right: 15px;
    font-size: 1.1rem;
    width: 20px;
}

.quote-cta {
    margin-top: 40px;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
}

.quote-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* ===== PROMO SECTION STYLES ===== */
.promo-section {
    background: linear-gradient(135deg, var(--dark-lighter), var(--dark-bg));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.promo-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"><circle cx="50" cy="50" r="1" fill="%232563eb" opacity="0.1"><animate attributeName="r" values="1;20;1" dur="3s" repeatCount="indefinite"/></circle></svg>') repeat;
    animation: float 10s ease-in-out infinite;
}

.promo-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.promo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.promo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
}

.promo-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0 50px;
    flex-wrap: wrap;
}

.promo-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 120px;
}

.promo-benefit i {
    width: 50px;
    height: 50px;
    background: var(--dark-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.promo-benefit:hover i {
    background: var(--primary-color);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.promo-benefit span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

/* ===== RESPONSIVE STYLES FOR NEW SECTIONS ===== */
@media (max-width: 768px) {
    .quote-container {
        margin: 80px 0;
        padding: 100px 0;
    }
    
    .quote-card {
        padding: 0 30px;
    }
    
    .quote-card h3 {
        font-size: 1.6rem;
    }
    
    .quote-features li {
        justify-content: center;
        padding-left: 0;
    }
    
    .promo-content h2 {
        font-size: 2rem;
    }
    
    .promo-benefits {
        gap: 20px;
    }
    
    .promo-benefit {
        min-width: 100px;
    }
}

@media (max-width: 576px) {
    .quote-container {
        margin: 60px 0;
        padding: 80px 0;
    }
    
    .quote-card {
        padding: 0 20px;
    }
    
    .quote-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .promo-content h2 {
        font-size: 1.8rem;
    }
    
    .promo-benefits {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
} 

/* ===== PROFESSIONAL CEO MESSAGE SECTION STYLES ===== */
.ceo-section {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
}

.ceo-message-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: var(--dark-card);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    border: 1px solid var(--dark-lighter);
    position: relative;
}

.ceo-profile-image {
    flex-shrink: 0;
    position: relative;
}

.ceo-profile-image img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    transition: all 0.2s ease;
}

.ceo-profile-image img:hover {
    border-color: var(--secondary-color);
}

.ceo-message-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.ceo-message-header h3 {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.ceo-message-header h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.ceo-message-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 300;
}

.ceo-message-text p:last-child {
    margin-bottom: 0;
}

/* ===== RESPONSIVE STYLES FOR CEO SECTION ===== */
@media (max-width: 1024px) {
    .ceo-profile {
        grid-template-columns: 250px 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .ceo-photo img {
        width: 180px;
        height: 180px;
    }
    
    .ceo-header h3 {
        font-size: 1.9rem;
    }
}

@media (max-width: 768px) {
    .ceo-section {
        padding: 60px 0;
    }
    
    .ceo-content {
        gap: 30px;
        padding: 0 20px;
    }
    
    .ceo-image img {
        width: 200px;
        height: 200px;
    }
    
    .ceo-message h2 {
        font-size: 1.8rem;
    }
    
    .lead-quote {
        font-size: 1.2rem !important;
        padding-left: 20px;
    }
    
    .message-content p {
        font-size: 1rem;
    }
} 

/* ===== REDUCED HOVER EFFECTS FOR PROFESSIONAL LOOK ===== */

/* Remove excessive floating animations from cards */
.feature-card {
    animation: none;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Simplify testimonial card hovers */
.testimonial-card:hover {
    transform: none;
}

/* Reduce quote card hover effects */
.quote-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
}

/* Simplify value card hovers */
.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Professional button hover effects */
.btn:hover {
    transform: translateY(-2px);
}

/* Remove excessive glow effects */
.feature-icon::before {
    display: none;
} 

@media (max-width: 768px) {
    .ceo-message-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 40px;
    }
    
    .ceo-profile-image img {
        width: 120px;
        height: 120px;
    }
    
    .ceo-message-header h3 {
        font-size: 1.2rem;
    }
    
    .ceo-message-header h4 {
        font-size: 1.4rem;
    }
    
    .ceo-message-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .ceo-section {
        padding: 60px 0;
    }
    
    .ceo-message-container {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .ceo-profile-image img {
        width: 100px;
        height: 100px;
    }
    
    .ceo-message-header h3 {
        font-size: 1.1rem;
    }
    
    .ceo-message-header h4 {
        font-size: 1.2rem;
    }
    
    .ceo-message-text p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
} 