/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

.logo-icon {
    background: #2563eb;
    padding: 8px;
    border-radius: 8px;
    color: white;
    font-size: 24px;
}

.logo-text h1 {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    margin: 0;
}

.logo-text p {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2563eb;
}

.btn-quote {
    background: #2563eb;
    color: white;
    padding: 8px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-quote:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #374151;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #e5e7eb;
    margin-top: 16px;
}

.mobile-nav-link {
    color: #374151;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #2563eb;
}

.mobile-quote-btn {
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s ease;
}

.mobile-quote-btn:hover {
    background: #1d4ed8;
}

/* Hero Styles */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbeafe 0%, #ffffff 50%, #f9fafb 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.bg-circle {
    position: absolute;
    width: 288px;
    height: 288px;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(40px);
    opacity: 0.3;
    animation: pulse 6s ease-in-out infinite;
}

.bg-circle-1 {
    top: 80px;
    left: 40px;
    background: #bfdbfe;
}

.bg-circle-2 {
    top: 160px;
    right: 40px;
    background: #e9d5ff;
    animation-delay: 2s;
}

.bg-circle-3 {
    bottom: 80px;
    left: 50%;
    background: #fce7f3;
    animation-delay: 4s;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #dbeafe;
    color: #1e40af;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #1f2937;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: #2563eb;
    font-size: 20px;
}

.feature-item span {
    color: #374151;
    font-weight: 500;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2563eb;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.btn-primary i {
    transition: transform 0.2s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-secondary {
    border: 2px solid #d1d5db;
    color: #374151;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-secondary:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

.hero-image {
    position: relative;
}

.hero-img-container {
    position: relative;
    z-index: 10;
    transition: transform 0.5s ease;
}

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

.hero-img-container img {
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-card-1 {
    top: -24px;
    left: -24px;
}

.floating-card-2 {
    bottom: -24px;
    right: -24px;
    animation-delay: 1s;
}

.card-icon {
    background: #dbeafe;
    padding: 8px;
    border-radius: 8px;
    color: #2563eb;
}

.card-title {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

.card-subtitle {
    font-size: 12px;
    color: #6b7280;
    margin: 0;
}

/* Services Styles */
.services {
    padding: 80px 0;
    background: #f9fafb;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
    max-width: 768px;
    margin: 0 auto;
}

.text-blue {
    color: #2563eb;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

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

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

.service-icon {
    background: #dbeafe;
    width: 64px;
    height: 64px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    font-size: 32px;
    color: #2563eb;
}

.service-card:hover .service-icon {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.service-card > p {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #374151;
    font-weight: 500;
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #2563eb;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-btn {
    width: 100%;
    background: #1f2937;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.service-btn:hover {
    background: #2563eb;
}

.benefits-section {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.benefits-header {
    text-align: center;
    margin-bottom: 48px;
}

.benefits-header h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.benefits-header p {
    color: #6b7280;
    font-size: 18px;
}

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

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

.benefit-icon {
    background: #dbeafe;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
    font-size: 40px;
    color: #2563eb;
}

.benefit-item:hover .benefit-icon {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.benefit-item h4 {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 12px;
}

.benefit-item p {
    color: #6b7280;
}

/* Products Styles */
.products {
    padding: 80px 0;
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.product-card {
    background: #f9fafb;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.product-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 256px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

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

.product-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #2563eb;
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.product-content {
    padding: 32px;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.product-header h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
}

.product-price {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
}

.product-description {
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-item i {
    color: #2563eb;
    font-size: 16px;
}

.spec-item span {
    font-size: 14px;
    color: #374151;
}

.product-features {
    margin-bottom: 24px;
}

.product-features h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.product-features ul {
    list-style: none;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: #6b7280;
}

.product-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #2563eb;
    border-radius: 50%;
    flex-shrink: 0;
}

.product-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-buttons .btn-primary {
    justify-content: center;
    padding: 12px 24px;
}

.product-buttons .btn-secondary {
    background: none;
    border: 2px solid #d1d5db;
    color: #374151;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.product-buttons .btn-secondary:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

.custom-solution {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    color: white;
}

.custom-solution h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.custom-solution p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-white {
    background: white;
    color: #2563eb;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: #f9fafb;
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* About Styles */
.about {
    padding: 80px 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
}

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

.stat-icon {
    background: #dbeafe;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
    font-size: 40px;
    color: #2563eb;
}

.stat-item:hover .stat-icon {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
}

.stat-item p {
    color: #6b7280;
    font-weight: 500;
}

.mission-section {
    margin-bottom: 80px;
}

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

.mission-text {
    space-y: 24px;
}

.mission-text h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 24px;
}

.mission-text p {
    color: #6b7280;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.certifications {
    display: flex;
    gap: 24px;
    padding-top: 16px;
}

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

.cert-title {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
    margin: 0;
}

.cert-subtitle {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.mission-image {
    position: relative;
}

.mission-image img {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: auto;
}

.experience-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.experience-number {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
    margin: 0;
}

.experience-text {
    color: #6b7280;
    margin: 0;
}

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

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

.team-header h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.team-header p {
    color: #6b7280;
    font-size: 18px;
}

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

.team-member {
    background: #f9fafb;
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.team-member:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.team-member img {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

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

.team-member h4 {
    font-size: 20px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 8px;
}

.member-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 12px;
}

.member-description {
    color: #6b7280;
    font-size: 14px;
}

/* Contact Styles */
.contact {
    padding: 80px 0;
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form-wrapper {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    width: 100%;
    background: #2563eb;
    color: white;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    background: white;
    padding: 24px 58px 114px 58px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.contact-icon {
    background: #dbeafe;
    padding: 12px;
    border-radius: 8px;
    color: #2563eb;
    font-size: 24px;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: #2563eb;
    color: white;
    transform: scale(1.1);
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.contact-value {
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-value a {
    color: #2563eb;
    text-decoration: none;
}

.contact-value a:hover {
    color: #1d4ed8;
}

.contact-description {
    font-size: 14px;
    color: #6b7280;
}

.response-time-card {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    padding: 32px;
    border-radius: 12px;
    color: white;
}

.response-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.response-header i {
    font-size: 32px;
}

.response-header h3 {
    font-size: 20px;
    font-weight: bold;
}

.response-time-card p {
    margin-bottom: 16px;
    opacity: 0.9;
}

.response-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
}

/* Footer Styles */
.footer {
    background: #1f2937;
    color: white;
    padding: 64px 0 32px;
}

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

.footer-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.social-link {
    background: #374151;
    padding: 8px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: #2563eb;
}

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

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: white;
}

.contact-info-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-item i {
    color: #2563eb;
    font-size: 20px;
}

.contact-info-item a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-info-item a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Services Page Specific Styles */
.services-page-header {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    padding: 120px 0 80px;
}

.back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: white;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 32px;
    transition: all 0.2s ease;
}

.back-btn:hover {
    color: #bfdbfe;
}

.services-header-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 16px;
}

.services-header-content p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 768px;
}

.service-detail-section {
    padding: 80px 0;
}

.service-detail-section:nth-child(even) {
    background: #f9fafb;
}

.service-detail-header {
    text-align: center;
    margin-bottom: 64px;
}

.service-detail-header h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 16px;
}

.service-subtitle {
    font-size: 20px;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 24px;
}

.service-description {
    font-size: 18px;
    color: #6b7280;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-hero-image {
    margin-bottom: 64px;
}

.service-hero-image img {
    width: 100%;
    height: 384px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-sections {
    margin-bottom: 64px;
}

.service-section {
    margin-bottom: 80px;
}

.service-section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.service-section.reverse .service-section-content {
    direction: rtl;
}

.service-section.reverse .service-section-text,
.service-section.reverse .service-section-image {
    direction: ltr;
}

.service-section-text h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 24px;
}

.service-section-text p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
}

.service-section-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-benefits {
    background: #f9fafb;
    border-radius: 16px;
    padding: 48px;
}

.service-benefits h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 32px;
    text-align: center;
}

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

.service-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.service-benefits .benefit-item i {
    color: #10b981;
    font-size: 24px;
    flex-shrink: 0;
}

.service-benefits .benefit-item span {
    color: #374151;
    font-weight: 500;
}

.services-cta {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.services-cta h2 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 24px;
}

.services-cta p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta-primary {
    background: white;
    color: #2563eb;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-cta-primary:hover {
    background: #f9fafb;
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.btn-cta-secondary {
    border: 2px solid white;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.2s ease;
}

.btn-cta-secondary:hover {
    background: white;
    color: #2563eb;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .certifications {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .services-header-content h1 {
        font-size: 2.5rem;
    }
    
    .service-detail-header h2 {
        font-size: 2rem;
    }
    
    .service-section-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-section.reverse .service-section-content {
        direction: ltr;
    }
    
    .service-section-text h3 {
        font-size: 1.5rem;
    }
    
    .service-section-text p {
        font-size: 16px;
    }
    
    .services-cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .product-card {
        margin: 0 8px;
    }
    
    .benefits-section,
    .contact-form-wrapper,
    .custom-solution {
        padding: 24px;
    }
}