/* Additional styles for separate pages */

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.breadcrumb {
    font-size: 1rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Services Preview on Home Page */
.services-preview {
    padding: 80px 0;
    background: white;
}

.services-preview h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.services-preview p {
    font-size: 1.2rem;
    text-align: center;
    color: #6c757d;
    margin-bottom: 3rem;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: #2c5aa0;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: #1e3d72;
    transform: translateY(-2px);
}

/* Enhanced Service Cards with Images */
.service-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content .service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.service-content h3 {
    font-size: 1.4rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    text-align: center;
}

.service-content p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-features-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.service-features-mini span {
    background: rgba(44,90,160,0.1);
    color: #2c5aa0;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-link {
    align-self: center;
    margin-top: auto;
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.why-choose h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.feature p {
    color: #6c757d;
    line-height: 1.6;
}

/* Quick Contact Section */
.quick-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
    color: white;
}

.contact-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 150px;
    justify-content: center;
}

.contact-btn.call-btn {
    background: #ff6b6b;
    color: white;
}

.contact-btn.whatsapp-btn {
    background: #25D366;
    color: white;
}

.contact-btn.form-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Service Section Styles */
.service-section {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-icon-large {
    font-size: 4rem;
    flex-shrink: 0;
}

.service-info h2 {
    font-size: 2rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.service-info p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
}

.service-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.service-features h3,
.service-pricing h3 {
    font-size: 1.3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #495057;
    position: relative;
    padding-right: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #2c5aa0;
    font-weight: bold;
}

.pricing-table {
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:nth-child(even) {
    background: rgba(44,90,160,0.05);
}

.price {
    font-weight: 700;
    color: #2c5aa0;
    font-size: 1.1rem;
}

/* Process Steps */
.process {
    padding: 80px 0;
    background: #f8f9fa;
}

.process h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c5aa0, #1e3d72);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.step-content p {
    color: #6c757d;
    line-height: 1.6;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: white;
}

.values h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #2c5aa0;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.value-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.team h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.team p {
    font-size: 1.2rem;
    text-align: center;
    color: #6c757d;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #2c5aa0;
}

.member-info h3 {
    font-size: 1.3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.member-info p {
    color: #6c757d;
    line-height: 1.6;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: white;
}

.mission h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.mission-text p {
    color: #495057;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
    color: white;
}

.statistics h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 4rem;
    color: rgba(44,90,160,0.1);
    font-family: serif;
}

.testimonial-content p {
    font-style: italic;
    color: #495057;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: #2c5aa0;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #6c757d;
    font-size: 0.9rem;
}

.testimonial-rating {
    margin-top: 1rem;
    font-size: 1.2rem;
}

/* Tips Section */
.tips {
    padding: 80px 0;
    background: white;
}

.tips h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 2px solid transparent;
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: #2c5aa0;
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.tip-card h3 {
    font-size: 1.2rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Service Areas */
.service-areas {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-areas h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.service-areas p {
    font-size: 1.2rem;
    text-align: center;
    color: #6c757d;
    margin-bottom: 3rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    background: #2c5aa0;
    color: white;
}

.area-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.area-card:hover h3 {
    color: white;
}

.area-card p {
    color: #6c757d;
    line-height: 1.6;
}

.area-card:hover p {
    color: rgba(255,255,255,0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button.primary {
    background: #ff6b6b;
    color: white;
}

.cta-button.secondary {
    background: #25D366;
    color: white;
}

.cta-button.tertiary {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
}

/* Emergency Contact */
.emergency-contact {
    padding: 60px 0;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
}

.emergency-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.emergency-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.emergency-box p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.emergency-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.emergency-btn:hover {
    background: white;
    color: #ff6b6b;
    transform: translateY(-2px);
}

.emergency-btn.whatsapp {
    background: #25D366;
    border-color: #25D366;
}

.emergency-btn.whatsapp:hover {
    background: white;
    color: #25D366;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-buttons,
    .cta-buttons,
    .emergency-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn,
    .cta-button,
    .emergency-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .hero-locations {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Visual Effects */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15) !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25) !important;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44,90,160,0.1), rgba(102,126,234,0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.gallery-item:hover::before {
    opacity: 1;
}

.gallery-item img {
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Enhanced Service Cards */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(44,90,160,0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

/* Enhanced Buttons */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

/* Enhanced Team Cards */
.team-member {
    position: relative;
    overflow: hidden;
}

.team-member::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.team-member:hover::after {
    left: 100%;
}

/* Enhanced Contact Cards */
.contact-card {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #2c5aa0;
    background: linear-gradient(135deg, rgba(44,90,160,0.05), rgba(102,126,234,0.05));
}

/* Floating Animation for Icons */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.service-icon,
.feature-icon,
.value-icon,
.tip-icon {
    animation: float 3s ease-in-out infinite;
}

.service-icon:nth-child(2n) { animation-delay: 0.5s; }
.service-icon:nth-child(3n) { animation-delay: 1s; }

/* Enhanced Hover Effects */
.tip-card:hover {
    background: linear-gradient(135deg, #2c5aa0, #1e3d72);
    color: white;
}

.tip-card:hover h3,
.tip-card:hover p {
    color: white;
}

/* Gradient Text Effects */
.hero-title {
    background: linear-gradient(135deg, #fff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    background: linear-gradient(135deg, #2c5aa0 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Shadows and Depth */
.service-card,
.feature,
.value-card,
.tip-card,
.team-member,
.contact-card {
    box-shadow: 
        0 4px 6px rgba(0,0,0,0.05),
        0 10px 20px rgba(0,0,0,0.1),
        0 0 0 1px rgba(255,255,255,0.05);
}

.service-card:hover,
.feature:hover,
.value-card:hover,
.tip-card:hover,
.team-member:hover,
.contact-card:hover {
    box-shadow: 
        0 8px 12px rgba(0,0,0,0.1),
        0 20px 40px rgba(0,0,0,0.15),
        0 0 0 1px rgba(44,90,160,0.1);
}

/* Pulse Animation for CTA Buttons */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,107,107,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255,107,107,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,107,107,0); }
}

.cta-button {
    animation: pulse 2s infinite;
}

.cta-button:hover {
    animation: none;
}

/* Enhanced Mobile Experience */
@media (max-width: 768px) {
    .gallery-item:hover {
        transform: translateY(-5px) scale(1.01) !important;
    }
    
    .service-card:hover,
    .feature:hover,
    .value-card:hover {
        transform: translateY(-3px) !important;
    }
}
