/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eaf6 100%);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

/* Navigation */
.navbar {
    background-color: white;
    padding: 12px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 60px;
}

.logo img {
    width: 220px;
    height: auto;
    transition: transform 0.3s;
}

.logo:hover img {
    transform: scale(1.05);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #ff8c5a);
    transition: width 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #ff6b35;
}

.btn-quote {
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s;
}

.btn-quote::after {
    display: none;
}

.btn-quote:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* Hero Section */
.solutions-hero {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #e8d5f2 0%, #d4c5e8 50%, #f5e6d3 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    top: 50%;
    right: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #ff6b35, #fbbf24);
    bottom: -80px;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(40px, 10px) rotate(270deg);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.gradient-text {
    background: linear-gradient(135deg, #ff6b35, #ff8c5a, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 20px;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.stat-box {
    background: white;
    padding: 30px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-slide-up {
    animation: slideUp 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Services Categories */
.services-categories {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.category-card > * {
    position: relative;
    z-index: 1;
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    transition: all 0.4s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.category-card:hover .category-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: rotateY(360deg);
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    transition: color 0.4s;
}

.category-card:hover .category-title {
    color: white;
}

.category-description {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    transition: color 0.4s;
}

.category-card:hover .category-description {
    color: rgba(255, 255, 255, 0.9);
}

.category-count {
    display: inline-block;
    padding: 8px 20px;
    background: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #ff6b35;
    transition: all 0.4s;
}

.category-card:hover .category-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Featured Services */
.featured-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8d5f2 0%, #d4c5e8 50%, #f5e6d3 100%);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.featured-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.featured-image {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.8), rgba(255, 140, 90, 0.8));
    transition: opacity 0.4s;
}

.featured-card:hover .image-overlay {
    opacity: 0.9;
}

.featured-icon {
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.featured-content {
    padding: 35px;
}

.featured-title {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.featured-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.featured-list {
    list-style: none;
    margin-bottom: 30px;
}

.featured-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 15px;
}

.featured-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 18px;
}

.featured-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.featured-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* All Services Section */
.all-services {
    padding: 100px 0;
    background: white;
}

.service-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.service-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    transition: all 0.6s;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.service-item:hover::before {
    width: 500px;
    height: 500px;
}

.service-item > * {
    position: relative;
    z-index: 1;
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b35;
    transition: all 0.4s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.service-item:hover .service-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: rotateY(360deg) scale(1.1);
}

.service-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    transition: color 0.4s;
}

.service-item:hover .service-name {
    color: white;
}

.service-desc {
    font-size: 14px;
    color: #666;
    transition: color 0.4s;
    margin-bottom: 15px;
}

.service-item:hover .service-desc {
    color: rgba(255, 255, 255, 0.9);
}

.service-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.service-item:hover .service-btn {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(251, 191, 36, 0.4);
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
}

.cta-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: #ff6b35;
    top: -200px;
    right: -100px;
    animation: float 15s infinite ease-in-out;
}

.cta-shape.shape-2 {
    width: 300px;
    height: 300px;
    background: #ff8c5a;
    bottom: -150px;
    left: -50px;
    animation: float 20s infinite ease-in-out reverse;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #ff6b35, #ff8c5a);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 100%);
    padding: 70px 0 35px;
    color: white;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr 1fr;
    gap: 45px;
}

.footer-contact-column {
    grid-column: span 2;
}

.footer-bottom-bar {
    max-width: 1400px;
    margin: 40px auto 0;
    padding: 20px 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.footer-left {
    padding-right: 25px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 22px;
}

.footer-logo img {
    width: 220px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 320px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 22px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 22px;
    color: white;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    padding-left: 6px;
    font-weight: 500;
}

.footer-social-column {
    align-items: flex-start;
}

.footer-social-icons {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.footer-credit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.credit-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: opacity 0.3s;
}

.credit-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 52px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-left {
        grid-column: 1 / -1;
    }

    .footer-contact-column {
        grid-column: span 2;
    }

    .footer-bottom-bar {
        margin-top: 25px;
        padding: 15px 20px 0;
    }

    .footer-bottom-text {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-box {
        padding: 25px 30px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-description {
        font-size: 18px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .footer-contact-column {
        grid-column: 1 / -1;
    }

    .footer-bottom-bar {
        margin-top: 20px;
        padding: 12px 15px 0;
    }

    .footer-bottom-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .stat-box {
        padding: 20px 25px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-contact-column {
        grid-column: 1;
    }

    .footer-column {
        text-align: center;
    }

    .footer-social-column {
        align-items: center;
    }

    .footer-bottom-text {
        font-size: 11px;
    }
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading {
    animation: shimmer 2s infinite;
    background: linear-gradient(to right, #f0f0f0 8%, #e0e0e0 18%, #f0f0f0 33%);
    background-size: 1000px 100%;
}
