* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.95) 0%, rgba(51, 65, 85, 0.95) 100%);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.nav-logo {
    height: 40px;
    width: auto;
    margin-right: 0.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}

.nav-brand:hover .nav-logo {
    filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.4));
}

.nav-brand i {
    margin-right: 0.5rem;
    color: #f59e0b;
    filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.nav-links a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    opacity: 1;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0B1426 0%, #1A2942 50%, #334155 100%);
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #94A3B8;
    font-weight: 300;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature-item i {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.feature-item span {
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

/* Services Section */
.services {
    padding: 80px 20px;
    background: #f8fafc;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    border: 2px solid #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.service-pricing {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 10px;
    border: 2px solid #e2e8f0;
}

.service-pricing .price {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.service-pricing .price-alt {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

.service-card.featured .service-pricing {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-color: #f59e0b;
}

.service-card.featured .service-pricing .price {
    color: #92400e;
}

.premium-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #f59e0b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
}

.service-benefits {
    margin-top: 1.5rem;
}

.service-benefits h4 {
    margin-bottom: 0.5rem;
    color: #1e293b;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benefit-tag {
    display: inline-block;
    background: #e2e8f0;
    color: #475569;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 0.2rem 0.3rem 0.2rem 0;
    font-weight: 500;
}

.service-card.featured .benefit-tag {
    background: #f59e0b;
    color: white;
}

.service-note {
    margin-top: 1rem;
    padding: 0.8rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 8px;
    border-left: 3px solid #f59e0b;
}

.service-note small {
    color: #92400e;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-note i {
    color: #f59e0b;
}

/* Protection Benefits */
.protection-benefits {
    padding: 6rem 0;
    background: #1a365d;
    color: white;
}

.protection-benefits h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    opacity: 0.9;
}

/* Why Choose Section - Distinct Design */
.why-choose-section {
    text-align: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.why-choose-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    color: #1e293b;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

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

.why-choose-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.15);
    border-color: #f59e0b;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.icon-circle i {
    font-size: 1.5rem;
    color: white;
}

.why-choose-item h4 {
    margin-bottom: 0.8rem;
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
}

.why-choose-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Video Showcase Section */
.video-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0B1426 0%, #1A2942 100%);
    color: white;
}

.video-showcase h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    font-weight: 600;
    color: white;
}

.video-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #94A3B8;
    margin-bottom: 3rem;
    font-weight: 300;
}

.video-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    background: #1E293B;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.showcase-video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
    z-index: 10;
}

.video-overlay.hidden {
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
}

.video-container:hover .video-overlay:not(.hidden) {
    background: rgba(0, 0, 0, 0.6);
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(239, 68, 68, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
    transform: scale(1);
    transition: transform 0.3s ease;
}

.video-container:hover .play-button {
    transform: scale(1.1);
}

.video-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 600;
}

.video-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 8px;
    border-left: 3px solid #EF4444;
}

.highlight-item i {
    color: #EF4444;
    font-size: 1.3rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: white;
}

.highlight-item p {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.video-note {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1.2rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 8px;
    font-style: italic;
}

.video-note i {
    color: #3B82F6;
    font-size: 1.1rem;
    margin-top: 0.1rem;
    min-width: 16px;
}

.video-note p {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Video Showcase Mobile Styles */
@media (max-width: 768px) {
    .video-showcase {
        padding: 3rem 0;
    }
    
    .video-showcase h2 {
        font-size: 2rem;
    }
    
    .video-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .video-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .highlight-item {
        padding: 0.8rem;
    }
    
    .highlight-item h4 {
        font-size: 1rem;
    }
    
    .highlight-item p {
        font-size: 0.9rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }
}
.about {
    padding: 80px 20px;
    background: white;
}

.about h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
    text-align: center;
}

.about-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #64748b;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.experience-highlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.experience-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 15px;
    border-left: 4px solid #f59e0b;
}

.experience-item i {
    font-size: 1.5rem;
    color: #f59e0b;
    margin-top: 0.2rem;
}

.experience-item h4 {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.experience-item p {
    color: #64748b;
    font-size: 0.95rem;
}

.quality-assurance {
    text-align: center;
}

.quality-assurance h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

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

.quality-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    transition: all 0.3s;
}

.quality-item:hover {
    border-color: #f59e0b;
    transform: translateY(-2px);
}

.quality-item i {
    font-size: 1.2rem;
    color: #f59e0b;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a365d 0%, #334155 100%);
    color: white;
}

.contact h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #f59e0b;
}

.contact-info p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-method i {
    font-size: 1.5rem;
    color: #f59e0b;
    margin-top: 0.2rem;
}

.contact-method h4 {
    margin-bottom: 0.5rem;
    color: #f59e0b;
}

.contact-method p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
    font-size: 0.9rem;
}

.contact-method strong {
    color: white;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-form h3 {
    margin-bottom: 1.5rem;
    color: #f59e0b;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
}

.form-group select option {
    background: #1e293b;
    color: white;
    padding: 0.5rem;
}

.form-group select option:hover {
    background: #334155;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f59e0b;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-brand i {
    margin-right: 0.5rem;
    color: #f59e0b;
}

.footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
    color: #f59e0b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, rgba(30, 41, 59, 0.98) 0%, rgba(51, 65, 85, 0.98) 100%);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        margin: 1rem 0;
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 80%;
        text-align: center;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #fff;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quality-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-highlight {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .service-area-content {
        grid-template-columns: 1fr;
    }
}

.mobile-menu-toggle {
    display: none;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background: #f8fafc;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-left: 4px solid #f59e0b;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stars {
    color: #f59e0b;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.testimonial-author strong {
    color: #1e293b;
    display: block;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Success and Experience Cards */
.success-card, .experience-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border-left: 4px solid #10b981;
}

.success-card:hover, .experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.experience-card {
    border-left-color: #3b82f6;
}

.success-header, .experience-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.success-header i, .experience-header i {
    font-size: 1.5rem;
    color: #10b981;
}

.experience-header i {
    color: #3b82f6;
}

.success-header h3, .experience-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.success-content, .experience-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.success-stat, .experience-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border-radius: 12px;
}

.experience-stat {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #10b981;
    line-height: 1;
}

.experience-stat .stat-number {
    color: #3b82f6;
}

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

.success-content p, .experience-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.success-features, .experience-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.success-features li, .experience-features li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #4a5568;
    font-size: 0.95rem;
}

.success-features li::before, .experience-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

.experience-features li::before {
    color: #3b82f6;
}

.featured-testimonial {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

/* Testimonials Mobile Styles */
@media (max-width: 768px) {
    .testimonials {
        padding: 3rem 1rem;
    }
    
    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card, .success-card, .experience-card {
        padding: 1.5rem;
    }
    
    .success-header h3, .experience-header h3 {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .success-features li, .experience-features li {
        font-size: 0.9rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 20px;
    background: white;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
}

.period {
    font-size: 1rem;
    color: #64748b;
    margin-left: 0.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
}

.pricing-note {
    background: rgba(245, 158, 11, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.pricing-note small {
    color: #92400e;
    font-weight: 500;
}

.free-consultation {
    text-align: center;
    margin-top: 3rem;
}

.consultation-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.consultation-card i {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.consultation-card h3 {
    margin-bottom: 1rem;
}

.consultation-card p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.consultation-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.consultation-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

/* Service Area Section */
.service-area {
    padding: 80px 20px;
    background: #f8fafc;
}

.service-area h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.area-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.service-area-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.area-info h3 {
    margin-bottom: 1.5rem;
    color: #1e293b;
    font-size: 1.3rem;
}

.area-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.area-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.area-item i {
    font-size: 1.5rem;
    color: #f59e0b;
    margin-top: 0.2rem;
}

.area-item h4 {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.area-item p {
    color: #64748b;
    font-size: 0.9rem;
}

.coverage-note {
    background: rgba(245, 158, 11, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #f59e0b;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.coverage-note i {
    color: #f59e0b;
    margin-top: 0.2rem;
}

.coverage-note p {
    margin: 0;
    color: #92400e;
    font-size: 0.9rem;
}

.map-placeholder {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px dashed #e2e8f0;
}

.map-placeholder i {
    font-size: 4rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.map-placeholder h4 {
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.map-placeholder p {
    color: #64748b;
    margin-bottom: 1rem;
}

.map-placeholder small {
    color: #94a3b8;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    transition: all 0.3s;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

.floating-btn i {
    font-size: 1.2rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(30, 41, 59, 0.9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #f59e0b;
    transform: translateY(-3px);
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    z-index: 10000;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.notification-success .notification-content {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.notification-error .notification-content {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.notification-info .notification-content {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.notification-close:hover {
    opacity: 1;
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .services h2,
    .about h2,
    .contact h2,
    .testimonials h2,
    .pricing h2,
    .service-area h2 {
        font-size: 2rem;
    }
    
    .contact-form,
    .contact-method {
        padding: 1rem;
    }
    
    .floating-btn span {
        display: none;
    }
    
    .floating-btn {
        padding: 1rem;
        width: 60px;
        height: 60px;
        justify-content: center;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Service Area Mobile Styles */
@media (max-width: 768px) {
    .service-area {
        padding: 3rem 1rem;
    }
    
    .service-area h2 {
        font-size: 1.8rem;
    }
    
    .area-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .service-area-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .area-info h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .area-item {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .area-item h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .area-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .interactive-map iframe {
        height: 250px;
    }
    
    .map-overlay {
        padding: 0.8rem;
    }
    
    .map-overlay h4 {
        font-size: 1rem;
    }
    
    .map-overlay small {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .services h2,
    .about h2,
    .contact h2,
    .protection-benefits h2,
    .testimonials h2,
    .service-area h2 {
        font-size: 1.6rem;
    }
    
    .contact-form,
    .contact-method {
        padding: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for elements coming into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.experience-item,
.quality-item {
    animation: fadeInUp 0.6s ease-out;
}
