/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8fafc;
}

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

/* Header */
.header {
    background: white;
    color: #1e3a8a;
    padding: 0.75rem 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid #f59e0b;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    max-height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-symbol {
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.logo-text h1 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.logo-text h1 a {
    color: white;
    text-decoration: none;
}

.logo-text p {
    font-size: 0.8rem;
    color: #bfdbfe;
    font-weight: 400;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav a {
    color: #1e3a8a;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.85rem;
}

.nav a:hover,
.nav a.active {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(245, 158, 11, 0.4);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 3px 10px rgba(245, 158, 11, 0.3);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    box-shadow: 0 3px 10px rgba(5, 150, 105, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(5, 150, 105, 0.4);
}

.btn-secondary-outline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-outline:hover {
    background-color: white;
    color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: #1e3a8a;
    border: 2px solid #1e3a8a;
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
}

.btn-outline:hover {
    background-color: #1e3a8a;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(30, 58, 138, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(217, 119, 6, 0.2) 100%);
    color: #fbbf24;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(245, 158, 11, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.hero-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #bfdbfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #bfdbfe;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 120px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fbbf24;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.8rem;
    color: #bfdbfe;
    margin-top: 0.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-content h1 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.page-hero-content p {
    font-size: 1rem;
    color: #bfdbfe;
    font-weight: 400;
}

/* Features Section */
.features-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

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

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #f59e0b;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.5;
    font-weight: 400;
    font-size: 0.85rem;
}

/* Services Section */
.services {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 550px;
    margin: 0 auto;
    font-weight: 400;
}

.service-categories {
    margin-bottom: 3rem;
}

.category {
    margin-bottom: 2.5rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.category:hover {
    border-color: #f59e0b;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.category-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.category h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a8a;
    flex: 1;
}

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

.service-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #f59e0b;
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.service-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    font-weight: 400;
}

.service-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(4, 120, 87, 0.1) 100%);
    color: #059669;
    padding: 0.25rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    border: 1px solid rgba(5, 150, 105, 0.2);
}

/* Additional Services */
.additional-services {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    border: 2px solid #e2e8f0;
}

.additional-services .section-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
    position: relative;
}

.additional-services .section-header h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 2px;
}

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

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #f8fafc 100%);
    transform: translateX(4px);
    border-color: #f59e0b;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-item-content {
    flex: 1;
}

.service-name {
    font-weight: 700;
    color: #1e3a8a;
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.service-desc {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 400;
}

/* About Section Styles */
.about-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 1.25rem;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 2px;
}

.about-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a8a;
    margin: 1.5rem 0 0.75rem 0;
}

.about-text p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 400;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #f59e0b;
}

.stat-card .stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f59e0b;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Values Section */
.values-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.value-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #f59e0b;
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: #64748b;
    line-height: 1.5;
    font-weight: 400;
    font-size: 0.85rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: 3rem 0;
    background: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.why-choose-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-color: #f59e0b;
}

.why-icon {
    font-size: 1.5rem;
    color: #f59e0b;
    margin-top: 0.15rem;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

.why-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.why-content p {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.8rem;
    font-weight: 400;
}

/* CTA Section */
.cta-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.06)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1rem;
    color: #bfdbfe;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 1rem;
    position: relative;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 2px;
}

.contact-info > p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.contact-item:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-color: #f59e0b;
}

.contact-icon {
    font-size: 1.25rem;
    color: #f59e0b;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

.contact-item-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.25rem;
}

.contact-item-content p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    font-weight: 400;
}

.contact-features {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border: 2px solid #e2e8f0;
}

.contact-features h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

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

.contact-features li {
    color: #64748b;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Form */
.contact-form-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    border: 2px solid #e2e8f0;
}

.form-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    position: relative;
}

.form-header h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 2px;
}

.form-header p {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 400;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #f8fafc;
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
    background-color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.5;
}

.form-footer {
    margin-top: 1.5rem;
}

.form-note {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: #f1f5f9;
    border-radius: 6px;
    border-left: 3px solid #f59e0b;
    line-height: 1.4;
    font-weight: 400;
}

.form-note a {
    color: #f59e0b;
    text-decoration: none;
    font-weight: 600;
}

.form-note a:hover {
    text-decoration: underline;
}

.privacy-icon {
    color: #059669;
    margin-right: 0.5rem;
}

.btn-icon {
    font-size: 0.9rem;
}

/* Legal Content */
.legal-content {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.legal-document {
    max-width: 750px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    border: 2px solid #e2e8f0;
}

.legal-meta {
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #f59e0b;
}

.legal-meta p {
    margin: 0;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f59e0b;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a8a;
    margin: 1.25rem 0 0.75rem 0;
}

.legal-section p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 0.85rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-size: 0.85rem;
}

.contact-info {
    background: #f1f5f9;
    padding: 1.25rem;
    border-radius: 6px;
    border-left: 4px solid #f59e0b;
}

.contact-info p {
    margin: 0.5rem 0;
    font-weight: 600;
    color: #1e3a8a;
    font-size: 0.85rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    color: white;
    padding: 2.5rem 0 1rem;
    margin-top: 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.04)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo .logo-image {
    max-height: 40px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.9rem;
    color: #bfdbfe;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #fbbf24;
    border-radius: 2px;
}

.footer-section.social-section h4 {
    color: #fbbf24;
    font-size: 1rem;
}

.footer-section.social-section h4::after {
    background: #fbbf24;
    width: 30px;
}

.footer-section p {
    font-size: 0.8rem;
    color: #bfdbfe;
    line-height: 1.5;
    font-weight: 400;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bfdbfe;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

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

.footer-bottom {
    border-top: 1px solid rgba(191, 219, 254, 0.2);
    padding-top: 1rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #bfdbfe;
    font-weight: 400;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 200;
}

.mobile-menu-toggle span {
    position: absolute;
    left: 10px;
    width: 20px;
    height: 2px;
    background-color: #1e3a8a;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:first-child {
    top: 14px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 19px;
}

.mobile-menu-toggle span:last-child {
    top: 24px;
}

.mobile-menu-toggle.active {
    position: fixed;
}

.mobile-menu-toggle.active span {
    background-color: white;
}

.mobile-menu-toggle.active span:first-child {
    top: 19px;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:last-child {
    top: 19px;
    transform: rotate(-45deg);
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 90;
}

.overlay.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #1e3a8a;
        flex-direction: column;
        padding: 20px;
        transition: all 0.3s ease;
        z-index: 100;
    }

    .nav.active {
        right: 0;
    }

    .nav ul {
        flex-direction: column;
        width: 100%;
        margin-top: 20px;
    }

    .nav ul li {
        width: 100%;
        margin-bottom: 5px;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }

    .nav.active ul li {
        opacity: 1;
        transform: translateX(0);
    }

    .nav ul li:nth-child(1) { transition-delay: 0.1s; }
    .nav ul li:nth-child(2) { transition-delay: 0.15s; }
    .nav ul li:nth-child(3) { transition-delay: 0.2s; }
    .nav ul li:nth-child(4) { transition-delay: 0.25s; }
    .nav ul li:nth-child(5) { transition-delay: 0.3s; }

    .nav ul li a {
        display: flex;
        align-items: center;
        padding: 16px 20px;
        width: 100%;
        color: white;
        font-size: 1rem;
        font-weight: 500;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        margin: 2px 0;
        transition: all 0.2s ease;
    }

    .nav ul li a.active {
        background: #f59e0b;
        color: white;
    }

    .nav ul li a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .mobile-menu-toggle.active + .overlay + .nav {
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    }
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .category,
    .additional-services,
    .contact-form-container,
    .legal-document {
        padding: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-hero-content h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .page-hero-content h1 {
        font-size: 1.6rem;
    }
    
    .category h3,
    .additional-services h3 {
        font-size: 1.2rem;
    }
    
    .service-card {
        padding: 1.25rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .services {
        padding: 2.5rem 0;
    }
    
    .contact-section {
        padding: 2.5rem 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-text h1 {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 0.75rem;
    }
}

/* Additional animations and micro-interactions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.feature-card,
.value-card {
    animation: fadeInUp 0.5s ease-out;
}

/* Improved focus states for accessibility */
.btn:focus,
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: 2px solid rgba(245, 158, 11, 0.5);
    outline-offset: 2px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    animation: whatsappBounce 1.2s ease-in-out infinite;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25D366;
    opacity: 0.4;
    animation: whatsappPulse 2s ease-out infinite;
}

.whatsapp-button:hover {
    background-color: #22c15e;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 36px;
    height: 36px;
    fill: white;
    position: relative;
    z-index: 1;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

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

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 15px;
    flex-wrap: wrap;
}

.social-icon-link {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
}

.social-icon-link:hover {
    transform: translateY(-2px) scale(1.05);
}

.social-icon-link:hover::before {
    transform: scale(1);
}

.social-icon-link img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.social-icon-link.facebook { background: #1877F2; }
.social-icon-link.instagram { 
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-icon-link.twitter { background: #1DA1F2; }
.social-icon-link.youtube { background: #FF0000; }
.social-icon-link.linkedin { background: #0A66C2; }
.social-icon-link.tiktok { background: #000000; }
.social-icon-link.telegram { background: #0088cc; }

.footer-section .social-icons {
    margin-top: 15px;
}

.contact-social {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.contact-social h3 {
    margin-bottom: 15px;
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Guide Page Styles */
.guide-content {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.daily-updates {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.update-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    border: 2px solid #e2e8f0;
    overflow: hidden;
}

.update-date {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    color: white;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid #f59e0b;
}

.update-content {
    padding: 2rem;
}

.update-item {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.update-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.update-item h2 {
    color: #1e3a8a;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0.5rem 0 1rem;
    line-height: 1.3;
}

.post-meta {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 1rem;
    font-weight: 500;
}

.guide-card.featured .post-meta {
    color: #bfdbfe;
}

.guide-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.guide-card.featured h2 {
    color: white;
}

.guide-card p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guide-card.featured p {
    color: #bfdbfe;
}

.guide-highlights {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.highlight-tag {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
    color: #f59e0b;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.guide-card.featured .highlight-tag {
    background: rgba(255, 255, 255, 0.1);
    color: #fbbf24;
    border-color: rgba(255, 255, 255, 0.2);
}

.guide-cta {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0,0,0,0.06);
    border: 2px solid #e2e8f0;
}

.guide-cta h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.guide-cta p {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .guide-card.featured {
        grid-column: span 1;
    }

    .guide-cta {
        padding: 2rem;
    }
}

/* Enhanced hover effects */
.nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #fbbf24;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav a:hover::before {
    width: 100%;
}