/**
 * Page Styles for Internal Pages
 * Includes: Services, About, Contact, Single Service
 */

/* ==========================================================================
   Common Page Hero Styles
   ========================================================================== */
.page-hero,
.services-hero,
.about-hero,
.contact-hero,
.service-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    overflow: hidden;
    min-height: 400px;
}

.page-hero-content,
.about-hero-content,
.contact-hero-content,
.service-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.page-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero-particles-subtle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    z-index: 2;
}

/* ==========================================================================
   Services Page Styles
   ========================================================================== */
.services-main {
    padding: 80px 0;
}

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

.service-main-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

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

.service-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0,0,0,0.05);
    line-height: 1;
}

.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.service-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    opacity: 0.1;
}

.service-icon-wrapper .dashicons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-main-card h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: var(--heading-color);
}

.service-main-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link span {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.service-link:hover span {
    margin-left: 10px;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    padding: 60px 0;
}

.process-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--secondary-color), transparent);
    z-index: 1;
}

.process-step {
    position: relative;
    text-align: center;
    display: inline-block;
    width: 20%;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.step-content h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.875rem;
    color: #666;
    padding: 0 20px;
}

/* Services CTA */
.services-cta {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-box {
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

/* ==========================================================================
   Single Service Page Styles
   ========================================================================== */
.service-hero {
    padding-bottom: 60px;
}

.breadcrumb {
    margin-bottom: 30px;
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    margin: 0 10px;
}

.service-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-tagline {
    font-size: 1.25rem;
    opacity: 0.9;
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.service-main {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-featured-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}

.service-featured-image img {
    width: 100%;
    height: auto;
}

/* Service Features Section */
.service-features-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon .dashicons {
    color: white;
    font-size: 24px;
}

.feature-content h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

/* Benefits Section */
.service-benefits {
    margin-top: 60px;
}

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

.benefit-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gradient-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.gradient-icon .dashicons {
    color: white;
    font-size: 32px;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-box {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.quick-info h3,
.related-services h3,
.download-box h4 {
    margin-bottom: 20px;
}

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

.info-list li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.info-list li:last-child {
    border-bottom: none;
}

.cta-box h3 {
    color: white;
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.btn-block {
    width: 100%;
    margin-bottom: 15px;
}

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

.related-list li {
    margin-bottom: 15px;
}

.related-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: var(--heading-color);
    transition: all 0.3s ease;
}

.related-list a:hover {
    background: var(--primary-color);
    color: white;
}

.download-box {
    text-align: center;
    background: #f8f9fa;
}

.download-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-icon .dashicons {
    font-size: 28px;
    color: var(--primary-color);
}

.download-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.download-link:hover {
    background: var(--primary-color);
    color: white;
}

/* Process Cards */
.process-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-card {
    position: relative;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px 30px 30px;
    max-height: 500px;
}

/* ==========================================================================
   About Us Page Styles
   ========================================================================== */
.mission-vision {
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mv-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.lead-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
}

.mv-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    justify-content: space-around;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.stats-overlay .stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    padding: 0 0 60px;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 50%;
    padding-right: 60px;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50%;
    padding-left: 60px;
}

.timeline-date {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 10px 20px;
    border: 3px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 700;
    color: var(--primary-color);
    z-index: 2;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.timeline-content p {
    color: #666;
    line-height: 1.6;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon .dashicons {
    font-size: 36px;
    color: white;
}

.value-card h3 {
    font-size: 1.375rem;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.gradient-bg-2 {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.gradient-bg-3 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.gradient-bg-4 {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.member-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    padding: 20px;
    transition: bottom 0.3s ease;
}

.team-member:hover .member-overlay {
    bottom: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
}

.social-links .dashicons {
    font-size: 20px;
    color: #333;
}

.social-links a:hover .dashicons {
    color: white;
}

.team-member h4 {
    margin: 20px 0 10px;
    font-size: 1.25rem;
}

.member-role {
    color: #666;
    font-size: 0.875rem;
    padding-bottom: 20px;
    display: block;
}

/* Statistics Section */
.stats-section {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    display: block;
}

.stat-item .stat-label {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.9);
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.partner-logo {
    background: white;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.logo-placeholder {
    width: 120px;
    height: 40px;
    background: #e0e0e0;
    border-radius: 4px;
}

/* About CTA */
.about-cta {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-cta .lead-text {
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-info-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.info-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon .dashicons {
    font-size: 32px;
    color: white;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.info-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-link span {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.info-link:hover span {
    margin-left: 10px;
}

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

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.form-header p {
    color: #666;
}

.contact-form {
    margin-top: 30px;
}

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

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

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

.required {
    color: #e74c3c;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.checkbox-group {
    margin: 30px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-label span {
    color: #666;
    font-size: 0.95rem;
}

.form-actions {
    margin-top: 30px;
}

.btn-icon {
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Contact Sidebar */
.contact-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.sidebar-widget h3 {
    font-size: 1.375rem;
    margin-bottom: 20px;
}

/* Office Hours */
.hours-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #333;
}

.time {
    color: #666;
}

.support-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: #f0f8ff;
    border-radius: 8px;
    color: #0066cc;
    font-size: 0.875rem;
}

/* Quick Links */
.quick-links ul {
    list-style: none;
    padding: 0;
}

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

.quick-links a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.quick-links a:before {
    content: "→";
    margin-right: 10px;
    color: var(--primary-color);
}

.quick-links a:hover {
    color: var(--primary-color);
}

/* Social Widget */
.social-widget {
    color: white;
}

.social-widget h3 {
    color: white;
}

.social-widget p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

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

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    transform: scale(1.1);
}

.social-link .dashicons {
    font-size: 20px;
    color: white;
}

.social-link:hover .dashicons {
    color: var(--primary-color);
}

/* Emergency Contact */
.emergency-contact {
    background: #fff3cd;
    border: 2px solid #ffc107;
    text-align: center;
}

.emergency-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-icon .dashicons {
    font-size: 30px;
    color: white;
}

.emergency-contact h4 {
    font-size: 1.125rem;
    margin-bottom: 10px;
    color: #856404;
}

.emergency-contact p {
    color: #856404;
    margin-bottom: 15px;
}

.emergency-number {
    display: inline-block;
    padding: 12px 25px;
    background: #ffc107;
    color: #333;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.emergency-number:hover {
    background: #e0a800;
    transform: scale(1.05);
}

/* Map Section */
.map-section {
    padding: 0;
}

.map-container {
    position: relative;
    height: 500px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-info {
    text-align: center;
    color: white;
}

.map-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.map-info p {
    font-size: 1.125rem;
    margin-bottom: 30px;
}

/* Global Offices */
.global-offices {
    padding: 80px 0;
    background: #f8f9fa;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.office-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.office-location {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.office-location .dashicons {
    font-size: 24px;
    color: var(--primary-color);
}

.office-location h4 {
    font-size: 1.375rem;
    margin: 0;
}

.office-card p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.office-card address {
    font-style: normal;
    color: #666;
    line-height: 1.8;
}

.office-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.office-card a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1200px) {
    .services-main-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .service-layout,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .service-sidebar,
    .contact-sidebar {
        position: static;
    }

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

    .timeline::before {
        left: 30px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 80px;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        text-align: left;
    }

    .timeline-date {
        left: 30px;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .page-hero-title {
        font-size: 2.5rem;
    }

    .page-hero-subtitle {
        font-size: 1.125rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .process-step {
        width: 100%;
        margin-bottom: 40px;
    }

    .process-line {
        display: none;
    }

    .contact-form-wrapper {
        padding: 30px;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

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

@media (max-width: 576px) {
    .page-hero-title {
        font-size: 2rem;
    }

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

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

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

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