/* Modern CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #374151;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #6b7280;
}

/* Container */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand .brand-logo {
    text-decoration: none;
}

.brand-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2563eb;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2563eb;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

.nav-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #374151;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: #2563eb;
    color: white;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background: #f9fafb;
    border-color: #9ca3af;
}

.btn-primary-outline {
    background: transparent;
    color: #2563eb;
    border: 1px solid #2563eb;
}

.btn-primary-outline:hover {
    background: #2563eb;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

.hero-badge {
    margin-bottom: 1.5rem;
}

.badge {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #111827;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 1.75rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #9ca3af;
    font-weight: 500;
}

.hero-image-container {
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

/* Section Styling */
.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: #6b7280;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    z-index: 1;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #2563eb 50%, transparent 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-top: 1rem;
}

.service-item {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(229, 231, 235, 0.6);
    border-radius: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #10b981);
    transition: left 0.5s ease;
}

.service-item:hover::before {
    left: 0;
}

.service-item:nth-child(1):hover::before {
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
}

.service-item:nth-child(2):hover::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.service-item:nth-child(3):hover::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
}

.service-item:nth-child(4):hover::before {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed);
}

.service-item:nth-child(5):hover::before {
    background: linear-gradient(90deg, #ef4444, #dc2626);
}

.service-item:nth-child(6):hover::before {
    background: linear-gradient(90deg, #06b6d4, #0891b2);
}

.service-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.service-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.1));
    border: 2px solid rgba(37, 99, 235, 0.2);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-item:hover .service-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-color: #1d4ed8;
    transform: scale(1.1) rotate(5deg);
}

.service-item:nth-child(2):hover .service-icon {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #047857;
}

.service-item:nth-child(3):hover .service-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: #b45309;
}

.service-item:nth-child(4):hover .service-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    border-color: #6d28d9;
}

.service-item:nth-child(5):hover .service-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-color: #b91c1c;
}

.service-item:nth-child(6):hover .service-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    border-color: #0e7490;
}

.service-icon i {
    font-size: 1.75rem;
    color: #2563eb;
    transition: all 0.4s ease;
}

.service-item:hover .service-icon i {
    color: white;
    transform: scale(1.1);
}

.service-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.service-item:hover .service-title {
    color: #1f2937;
}

.service-description {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.service-item:hover .service-description {
    color: #4b5563;
}

/* Current Openings Section */
.openings-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.carousel-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 1rem;
}

.openings-carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    align-items: stretch;
}

.opening-card {
    min-width: calc(33.333% - 1.33rem);
    background: white;
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
}

.opening-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.opening-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.opening-badge {
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.opening-salary {
    font-weight: 600;
    color: #10b981;
    font-size: 0.95rem;
}

.opening-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.opening-company {
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.opening-location {
    color: #6b7280;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.opening-location i {
    color: #9ca3af;
    font-size: 0.875rem;
}

.opening-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    min-height: 3.5rem;
    align-content: flex-start;
}

.skill-tag {
    background: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.opening-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.opening-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.opening-actions .btn {
    flex: 1;
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
    text-align: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.carousel-btn:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.carousel-btn-prev {
    left: -1.5rem;
}

.carousel-btn-next {
    right: -1.5rem;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    background: white;
    color: #9ca3af;
    border-color: #e5e7eb;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 0.75rem;
    height: 0.75rem;
    background: #d1d5db;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: #2563eb;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #2563eb;
    font-size: 1.25rem;
}

.feature-content h4 {
    font-size: 1.1rem;
    color: #111827;
    margin-bottom: 0.25rem;
}

.feature-content p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.about-placeholder {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.about-placeholder i {
    font-size: 4rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.about-placeholder h3 {
    color: #111827;
    margin-bottom: 0.5rem;
}

.about-placeholder p {
    color: #6b7280;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    margin-bottom: 1rem;
}

.quote-icon i {
    font-size: 1.5rem;
    color: #2563eb;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author h4 {
    color: #111827;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #f9fafb;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-description {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.contact-form-wrapper .section-title {
    margin-bottom: 1rem;
    text-align: left;
}

.contact-form-wrapper .contact-description {
    margin-bottom: 2rem;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: #2563eb;
    font-size: 1.25rem;
}

.contact-text h4 {
    color: #111827;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-text p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    transform: translateY(-2px);
}

.form-title {
    color: #111827;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.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);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    border: 2px dashed #d1d5db;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafafa;
    text-align: center;
    min-height: 100px;
}

.file-upload-label:hover {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}

.file-upload-label i {
    font-size: 2rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.file-upload-label:hover i {
    color: #2563eb;
}

.upload-text {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.95rem;
}

.file-upload-label:hover .upload-text {
    color: #2563eb;
}

.file-upload-label input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.file-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 0.5rem;
    margin-top: 0.5rem;
}

.file-name {
    color: #0369a1;
    font-weight: 500;
    font-size: 0.875rem;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.remove-file {
    background: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.remove-file:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.captcha-group {
    text-align: center;
    margin-top: auto;
}

.g-recaptcha {
    display: inline-block;
    margin: 0 auto;
}

.captcha-fallback {
    background: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-top: 1rem;
}

.captcha-fallback p {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.math-captcha {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.math-captcha span {
    font-weight: 600;
    color: #111827;
    font-size: 1.1rem;
}

.math-captcha input {
    width: 100px;
    text-align: center;
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    font-size: 1rem;
}

.btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

.btn:disabled:hover {
    background: #9ca3af;
    transform: none;
    box-shadow: none;
}

/* Footer */
.footer {
    background: #111827;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.footer-brand .brand-text {
    color: white;
    font-size: 1.5rem;
}

.brand-tagline {
    color: #9ca3af;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.footer-info p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .service-item {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 4.5rem;
        height: 4.5rem;
    }
    
    .opening-card {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-section {
        padding: 6rem 0 3rem;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-wrapper {
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    .service-icon {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1.5rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.25rem;
    }
    
    .opening-card {
        min-width: 100%;
    }
    
    .carousel-btn-prev {
        left: -1rem;
    }
    
    .carousel-btn-next {
        right: -1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-item,
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
    
    .math-captcha {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .math-captcha input {
        width: 120px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

*:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}