/* ============================================
   ISSA LOGISTICS - PAGES REDESIGN CSS
   Styles for Services, About, and Contact Pages
   ============================================ */

/* ============================================
   SHARED PAGE HEADER (INNER PAGES)
   ============================================ */
.page-header {
    background: var(--gradient-primary);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 1;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header-content {
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.breadcrumb a,
.breadcrumb span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Services Intro */
.services-intro {
    padding: 100px 0 60px;
    background: var(--white);
}

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

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-intro h2 span {
    color: var(--accent-color);
}

.services-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Detailed Services Grid */
.services-detailed {
    padding: 60px 0 100px;
    background: var(--off-white);
}

.service-detailed-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 400px;
    transition: all var(--transition-normal);
}

.service-detailed-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-detailed-card:nth-child(even) {
    direction: rtl;
}

.service-detailed-card:nth-child(even) > * {
    direction: ltr;
}

.service-detailed-image {
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.service-detailed-image::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.service-detailed-image svg {
    width: 150px;
    height: 150px;
    fill: var(--white);
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.service-detailed-card:nth-child(1) .service-detailed-image {
    background: var(--gradient-secondary);
}

.service-detailed-card:nth-child(2) .service-detailed-image {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
}

.service-detailed-card:nth-child(3) .service-detailed-image {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
}

.service-detailed-card:nth-child(4) .service-detailed-image {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.service-detailed-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detailed-content h3 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-detailed-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-feature svg {
    width: 20px;
    height: 20px;
    fill: var(--accent-color);
    flex-shrink: 0;
}

.service-feature span {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.why-choose-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

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

.why-choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.why-choose-card:hover .why-choose-icon {
    background: var(--gradient-accent);
    transform: scale(1.1);
}

.why-choose-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.why-choose-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.why-choose-card p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    position: relative;
}

.process-section .section-title h2 {
    color: var(--white);
}

.process-section .section-title h2::after {
    background: var(--accent-light);
}

.process-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

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

.process-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.process-number::after {
    content: '';
    position: absolute;
    inset: -5px;
    border: 3px solid var(--accent-light);
    border-radius: var(--radius-full);
    opacity: 0.5;
}

.process-step h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 15px;
}

.process-step p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* Company Story */
.company-story {
    padding: var(--section-padding);
    background: var(--white);
}

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

.story-image {
    position: relative;
}

.story-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.story-image::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    right: -30px;
    bottom: -30px;
    background: var(--gradient-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.story-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.story-badge .number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
}

.story-badge .text {
    font-size: 0.875rem;
    color: var(--dark-gray);
    text-transform: uppercase;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.story-content h2 span {
    color: var(--accent-color);
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-highlights {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--light-gray);
}

.story-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
}

.story-highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-highlight-icon svg {
    width: 25px;
    height: 25px;
    fill: var(--white);
}

.story-highlight-text h5 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.story-highlight-text span {
    font-size: 0.875rem;
    color: var(--dark-gray);
}

/* Mission & Values */
.mission-values {
    padding: var(--section-padding);
    background: var(--off-white);
}

.mission-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mission-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mission-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-card:nth-child(2) .mission-icon {
    background: var(--gradient-accent);
}

.mission-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--white);
}

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

.mission-card p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Values Grid */
.values-section {
    padding: var(--section-padding);
    background: var(--white);
}

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

.value-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: var(--radius-lg);
    background: var(--off-white);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: var(--accent-color);
    background: var(--white);
    transform: translateY(-8px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.value-card:hover .value-icon {
    background: var(--gradient-accent);
    transform: scale(1.1) rotate(5deg);
}

.value-icon svg {
    width: 35px;
    height: 35px;
    fill: var(--white);
}

.value-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Timeline */
.timeline-section {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.timeline-section .section-title h2 {
    color: var(--white);
}

.timeline-section .section-title h2::after {
    background: var(--accent-light);
}

.timeline-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

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

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

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: var(--accent-light);
    border-radius: var(--radius-full);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3);
    z-index: 1;
}

.timeline-content {
    flex: 1;
}

.timeline-year {
    display: inline-block;
    background: var(--accent-light);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.timeline-content h4 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: var(--section-padding);
    background: var(--off-white);
}

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

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    height: 280px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.team-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
}

.team-image svg {
    width: 100px;
    height: 100px;
    fill: rgba(255, 255, 255, 0.5);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team-info .role {
    font-size: 0.95rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.team-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 38px;
    height: 38px;
    background: var(--off-white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.team-social a:hover {
    background: var(--secondary-color);
}

.team-social a:hover svg {
    fill: var(--white);
}

.team-social svg {
    width: 16px;
    height: 16px;
    fill: var(--dark-gray);
}

/* Certifications */
.certifications-section {
    padding: 80px 0;
    background: var(--white);
}

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

.certification-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.certification-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.certification-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.certification-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.certification-card p {
    font-size: 0.85rem;
    color: var(--dark-gray);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Info Section */
.contact-info-section {
    padding: var(--section-padding);
    background: var(--white);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.contact-info-card {
    text-align: center;
    padding: 40px 25px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.contact-info-card:hover .contact-info-icon {
    background: var(--gradient-accent);
    transform: scale(1.1);
}

.contact-info-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
}

.contact-info-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.contact-info-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.contact-info-card a {
    color: var(--secondary-color);
    transition: color var(--transition-fast);
}

.contact-info-card a:hover {
    color: var(--accent-color);
}

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

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    font-size: 1rem;
    margin-bottom: 30px;
}

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

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

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

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

.form-group label span {
    color: #e74c3c;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}

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

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%237f8c8d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 50px;
}

.form-submit {
    margin-top: 10px;
}

.form-submit .btn {
    width: 100%;
    padding: 16px 32px;
}

/* Map Section */
.map-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
}

.map-wrapper h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.map-placeholder svg {
    width: 60px;
    height: 60px;
    fill: var(--white);
    margin-bottom: 15px;
}

.map-placeholder p {
    font-size: 1.1rem;
    color: var(--white);
    margin: 0;
}

/* Quick Contact */
.quick-contact {
    margin-top: 30px;
    padding: 30px;
    background: var(--off-white);
    border-radius: var(--radius-md);
}

.quick-contact h4 {
    font-size: 1.15rem;
    margin-bottom: 15px;
}

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

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

.quick-contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary-color);
}

.quick-contact-item a {
    color: var(--dark-gray);
    font-size: 0.95rem;
}

.quick-contact-item a:hover {
    color: var(--secondary-color);
}

/* ============================================
   SERVICE PAGE CTA
   ============================================ */
.service-cta {
    padding: 80px 0;
    background: var(--off-white);
    text-align: center;
}

.service-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.service-cta h2 {
    font-size: 2.25rem;
    margin-bottom: 15px;
}

.service-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

/* ============================================
   RESPONSIVE STYLES FOR PAGES
   ============================================ */

@media (max-width: 1024px) {
    .page-header h1 {
        font-size: 2.75rem;
    }

    .service-detailed-card {
        grid-template-columns: 1fr;
    }

    .service-detailed-card:nth-child(even) {
        direction: ltr;
    }

    .service-detailed-image {
        min-height: 250px;
    }

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

    .process-steps::before {
        display: none;
    }

    .story-grid {
        gap: 50px;
    }

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

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

@media (max-width: 768px) {
    .page-header {
        padding: 140px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .service-detailed-content {
        padding: 30px;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-image::before {
        display: none;
    }

    .story-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-top: -60px;
        margin-left: auto;
        width: fit-content;
    }

    .story-highlights {
        flex-direction: column;
        gap: 20px;
    }

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

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

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

    .timeline-item,
    .timeline-item:nth-child(odd) {
        flex-direction: column;
    }

    .timeline-dot {
        left: 20px;
    }

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

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

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

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

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

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.75rem;
    }

    .breadcrumb {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-detailed-content {
        padding: 25px 20px;
    }

    .why-choose-card {
        padding: 30px 20px;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .mission-card {
        padding: 35px 25px;
    }

    .timeline-content {
        padding-left: 50px !important;
    }

    .team-image {
        height: 220px;
    }

    .contact-form-wrapper {
        padding: 25px 20px;
    }

    .map-container,
    .map-placeholder {
        height: 300px;
    }
}
