/* CSS Variables - React Theme */
:root {
    --primary: #030213;
    --primary-foreground: #ffffff;
    --secondary: #f1f5f9;
    --secondary-foreground: #030213;
    --background: #ffffff;
    --foreground: #030213;
    --muted: #f1f5f9;
    --muted-foreground: #64748b;
    --border: rgba(0, 0, 0, 0.1);
    --radius: 0.625rem;
}
:focus {
  outline: none;
  border-radius: 5px;
  box-shadow: 
    0 0 0 3px white,
    0 0 0 5px black !important;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

/* Container - React style */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: 0;
  top: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  z-index: 10000;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  overflow: visible;
  top: 10px;
  left: 10px;
}

/* Focus style for main content when skip link is used */
main#main-content:focus-visible {
  outline: 3px solid #2563EB;
  outline-offset: 2px;
}

@media (min-width: 640px) {
    .container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }
}

/* Typography */
h1 {
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

h2 {
    font-size: 1.875rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--foreground);
}

h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: inherit;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.25rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background-color: rgba(3, 2, 19, 0.9);
    border-color: rgba(3, 2, 19, 0.9);
}

.btn-outline {
    background-color: var(--background);
    color: var(--foreground);
    border-color: var(--border);
}

.btn-outline:hover {
    background-color: var(--muted);
    color: var(--foreground);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background-color: rgba(241, 245, 249, 0.8);
}

.btn-lg {
    height: 40px;
    padding: 0 24px;
    font-size: 0.875rem;
}
/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    padding: 0 20px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.logo-main {
    font-weight: 700;
    font-size: 1.25rem;
    color: #333;
}

.logo-sub {
    font-size: 0.875rem;
    color: #666;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: #2563EB;
    text-decoration: underline;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Section Styling - React Pattern */
section {
    padding: 80px 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #e0e7ff 100%);
    padding: 80px 0;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #2563EB;
    color: white;
}

.cta-section-white {
    padding: 80px 0;
    background: white;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: white;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #f9fafb;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #f9fafb;
}

/* Services Tabs */
.services-tabs {
    padding: 80px 0;
    background: white;
}

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

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

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

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

.hero-text h1 {
    color: var(--foreground);
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 32px;
}

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

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

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

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

.section-header h2 {
    color: var(--foreground);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 16px;
}

.service-card h3 {
    color: var(--foreground);
    margin-bottom: 12px;
}

.service-card p {
    color: var(--muted-foreground);
}

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

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

.about-text h2 {
    color: #1f2937;
    margin-bottom: 24px;
}

.about-text p {
    margin-bottom: 16px;
}

.about-text .btn {
    margin-top: 16px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

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

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

.contact-form {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

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

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

.contact-info h3 {
    color: #1f2937;
    margin-bottom: 16px;
}

.contact-info p {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item strong {
    color: inherit;
    font-weight: 600;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 48px 0 24px;
}

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

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

.footer-logo .logo-main {
    color: white;
}

.footer-logo .logo-sub {
    color: white;
}

/* Footer logo SVG styling */
.footer-logo svg circle {
    fill: white;
}

.footer-logo svg path,
.footer-logo svg line {
    stroke: #1f2937;
}

.footer-section h4 {
    color: white;
    margin-bottom: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #60a5fa;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        gap: 16px;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .hero-buttons {
        justify-content: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/* Additional Styles for New Pages */

/* Hero Content Center */
.hero-content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: white;
}

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

.why-choose-text h2 {
    color: #1f2937;
    margin-bottom: 24px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-content h3 {
    color: #1f2937;
    margin-bottom: 8px;
}

.feature-content p {
    color: #6b7280;
}

.why-choose-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

/* CTA Sections */
.cta-section {
    padding: 80px 0;
    background: #2563EB;
    color: white;
}

.cta-section-white {
    padding: 80px 0;
    background: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: inherit;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-secondary {
    background-color: white;
    color: #2563EB;
}

.btn-secondary:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

/* Services Tabs */
.services-tabs {
    padding: 80px 0;
    background: white;
}

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

.tabs-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 48px;
    background: #f3f4f6;
    padding: 8px;
    border-radius: 12px;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: white;
    color: #2563EB;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
}

.service-icon-large {
    margin-bottom: 24px;
}

.service-detail-text h2 {
    color: #1f2937;
    margin-bottom: 24px;
}

.service-detail-text p {
    margin-bottom: 32px;
}

.service-features-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-features-card h3 {
    color: #1f2937;
    margin-bottom: 24px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #374151;
}

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

/* Process Section */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

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

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 16px;
}

.process-step h3 {
    color: #1f2937;
    margin-bottom: 12px;
}

.process-step p {
    color: #6b7280;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background: white;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-icon {
    margin-bottom: 24px;
}

.mission-card h2,
.vision-card h2 {
    color: #1f2937;
    margin-bottom: 16px;
}

.mission-card p,
.vision-card p {
    color: #6b7280;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #f9fafb;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.value-icon {
    margin-bottom: 16px;
}

.value-card h3 {
    color: #1f2937;
    margin-bottom: 12px;
}

.value-card p {
    color: #6b7280;
}

/* Contact Section - React Style */
.contact-section {
    padding: 80px 0;
    background: white;
}

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

/* Contact Form Card - React Card Style */
.contact-form-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 24px 24px 0;
}

.card-header h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 8px;
}

.card-header p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0;
}

.card-content {
    padding: 24px;
}

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

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

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) - 2px);
    font-size: 0.875rem;
    background-color: var(--background);
    color: var(--foreground);
    transition: border-color 0.2s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

/* Alert Messages */
.alert {
    padding: 12px 16px;
    border-radius: calc(var(--radius) - 2px);
    margin-bottom: 16px;
    border-left: 4px solid;
    font-size: 0.875rem;
    line-height: 1.5;
}

.alert-success {
    background-color: #f0fdf4;
    border-left-color: #22c55e;
    color: #166534;
}

.alert-error {
    background-color: #fef2f2;
    border-left-color: #ef4444;
    color: #991b1b;
}

.full-width {
    width: 100%;
}

.form-note {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: 8px;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-content h2 {
    font-size: 1.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 24px;
}

.contact-info-content p {
    color: var(--muted-foreground);
    margin-bottom: 32px;
}

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

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 4px;
}

.contact-details a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-details a:hover {
    color: #2563EB;
}

.contact-details span {
    color: var(--muted-foreground);
}

.contact-image {
    margin-top: 0;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

/* FAQ Section - React max-w-4xl container */
.faq-section {
    padding: 80px 0;
    background: #f9fafb;
}

.faq-section-container {
    max-width: 896px; /* max-w-4xl = 896px */
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 640px) {
    .faq-section-container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .faq-section-container {
        padding: 0 32px;
    }
}

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

.faq-section .section-header h2 {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .faq-section .section-header h2 {
        font-size: 2.25rem; /* md:text-4xl */
    }
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 24px; /* space-y-6 */
}

.faq-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.faq-card .card-header {
    padding: 24px 24px 0;
}

.faq-card .card-header h3 {
    font-size: 1rem; /* Default CardTitle size */
    font-weight: 500;
    color: var(--foreground);
    margin: 0;
    line-height: 1.5;
}

.faq-card .card-content {
    padding: 24px;
    padding-top: 16px;
}

.faq-card .card-content p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin: 0;
    line-height: 1.5;
}

.full-width {
    width: 100%;
}

/* Responsive Design for Contact */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Text Center Utility */
.text-center {
    text-align: center;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .why-choose-content {
        grid-template-columns: 1fr;
    }

    .tabs-nav {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

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

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

    .step-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .tabs-nav {
        grid-template-columns: 1fr;
    }

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