/* ===============================
   CSS Reset & Base Styles
   =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===============================
   Header Styles
   =============================== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    min-height: 70px;
}

/* Logo */
.logo-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #2563eb;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.3s ease;
}

.logo-link:hover .logo-text {
    opacity: 0.8;
}

.logo-text i {
    font-size: 32px;
    color: #f97316;
}

/* Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: #374151;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: #1e40af;
    background-color: #eff6ff;
}

/* Mobile Menu Toggle Button (Hidden on Desktop) */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: #1e40af;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Header Contact */
.header-contact {
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-info {
    text-align: center;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.phone-note {
    font-size: 12px;
    color: #6b7280;
    margin-top: 4px;
}

.line-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #06c755;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
}

.line-btn:hover {
    transform: translateY(-2px);
    background: #05b84f;
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
}

/* ===============================
   Hero Section Styles
   =============================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
}

.hero-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 2s ease-in-out;
    will-change: transform, opacity;
}

.hero-background-img-1,
.hero-background-img-2,
.hero-background-img-3 {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-background-img-1 {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.4) 0%, rgba(59, 130, 246, 0.3) 50%, rgba(255, 255, 255, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

/* Hero Left Content */
.hero-left {
    color: white;
    animation: slideInLeft 1s ease-out;
    padding: 40px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-title {
    margin-bottom: 30px;
}

.title-main {
    display: block;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7),
                 0 0 15px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

.title-sub {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8),
                 0 0 20px rgba(0, 0, 0, 0.5),
                 2px 2px 4px rgba(30, 64, 175, 0.3);
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: white;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8),
                 0 0 15px rgba(0, 0, 0, 0.5),
                 1px 1px 2px rgba(0, 0, 0, 1);
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    border-radius: 10px;
    backdrop-filter: blur(3px);
}

/* Hero Features */
.hero-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 20px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.feature-content h3,
.feature-content .feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.feature-content p {
    font-size: 14px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
    opacity: 0.9;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    justify-content: flex-start;
}

.cta-primary {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 18px 35px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.4);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(249, 115, 22, 0.5);
}

.cta-secondary {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 16px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
}

/* Emergency Message */
.emergency-message {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.9), rgba(220, 38, 38, 0.8));
    border: 3px solid #fbbf24;
    padding: 20px 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4), 
                0 0 0 2px rgba(251, 191, 36, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: emergencyPulse 2s ease-in-out infinite;
    transform: scale(1.02);
    margin-top: 10px;
}

.emergency-message p {
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8),
                 0 0 10px rgba(0, 0, 0, 0.6);
    margin: 0;
}

.emergency-message i {
    color: #fbbf24;
    font-size: 20px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
    animation: iconBlink 1.5s ease-in-out infinite;
}

/* Emergency Animation */
@keyframes emergencyPulse {
    0%, 100% { 
        box-shadow: 0 8px 25px rgba(239, 68, 68, 0.4), 
                    0 0 0 2px rgba(251, 191, 36, 0.3),
                    inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 0 12px 35px rgba(239, 68, 68, 0.6), 
                    0 0 0 4px rgba(251, 191, 36, 0.5),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
}

@keyframes iconBlink {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Hero Right Content */
.hero-right {
    animation: slideInRight 1s ease-out;
}



/* ===============================
   Animations
   =============================== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===============================
   Responsive Design
   =============================== */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }

    .title-main {
        font-size: 24px;
    }

    .title-sub {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .header-content {
        display: grid;
        grid-template-columns: auto 1fr auto;
        grid-template-areas:
            "logo phone menu";
        align-items: center;
        gap: 15px;
        padding: 10px 0;
    }

    .logo {
        grid-area: logo;
    }

    .header-contact {
        grid-area: phone;
        justify-content: center;
    }

    .mobile-menu-toggle {
        grid-area: menu;
        display: flex;
    }

    /* Hide navigation menu by default on mobile */
    .nav {
        grid-column: 1 / -1;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        box-shadow: none;
        z-index: 999;
    }

    .nav.active {
        max-height: 500px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
        width: 100%;
    }

    .phone-btn {
        padding: 8px 12px;
        font-size: 14px;
    }

    .phone-btn span {
        display: none;
    }

    .phone-btn i {
        font-size: 18px;
    }

    /* Hero Mobile */
    .hero {
        padding-top: 120px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        padding: 40px 0;
    }

    .title-main {
        font-size: 20px;
        white-space: normal;
    }

    .title-sub {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-cta {
        justify-content: center;
    }

    .cta-primary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        font-size: 18px;
        padding: 16px 30px;
    }

    /* スマホ・タブレット表示時の画像位置調整 */
    .hero-background-img-2 {
        object-position: 80% center;  /* 人物が見えるように大きく右寄りに調整 */
    }

}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .title-main {
        font-size: 18px;
        white-space: normal;
    }

    .title-sub {
        font-size: 28px;
    }
    
    .feature-item {
        padding: 12px 15px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .emergency-message {
        padding: 18px 20px;
        margin-top: 20px;
    }
    
    .emergency-message p {
        font-size: 16px;
        text-align: center;
    }
    
    .emergency-message i {
        font-size: 18px;
    }
    

    
    /* モバイルでのパフォーマンス最適化 */
    .hero-background {
        object-fit: cover;
        transform: none !important;
    }
}

/* ===============================
   Sections Styles
   =============================== */
section {
    padding: 80px 0;
}

section:nth-child(even) {
    background-color: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 2px;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===============================
   Services Section
   =============================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 36px;
    color: white;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #374151;
}

.service-features i {
    color: #f97316;
    font-size: 14px;
}

/* ===============================
   Coverage Area Section
   =============================== */
.coverage-area {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.coverage-area .section-header h2 {
    color: white;
}

.coverage-area .section-header p {
    color: #dbeafe;
}

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

.area-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.area-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.area-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.area-map-container {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.area-map-container iframe {
    display: block;
    width: 100%;
}

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

.area-list {
    list-style: none;
}

.area-list p {
    font-size: 14px;
    color: #dbeafe;
    line-height: 1.8;
}

.area-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid #fbbf24;
}

.area-note p {
    color: #dbeafe;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.area-note i {
    color: #fbbf24;
    font-size: 18px;
}

/* ===============================
   Pricing Section
   =============================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.pricing-card.featured {
    border: 2px solid #f97316;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: '人気プラン';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 32px;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 20px;
}

.pricing-price span {
    font-size: 16px;
    color: #6b7280;
    font-weight: 400;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #374151;
}

.pricing-features i {
    color: #10b981;
    font-size: 14px;
}

.pricing-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

/* ===============================
   Flow Section
   =============================== */
.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.flow-step {
    background: white;
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    position: relative;
    flex: 0 0 220px;
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.flow-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 15px 15px 0 0;
}

.flow-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.flow-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 12px;
}

.flow-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
}

.flow-icon {
    display: none;
}

.flow-arrow {
    color: #f97316;
    font-size: 24px;
    flex: 0 0 auto;
}

.flow-arrow i {
    display: block;
}

/* ===============================
   Why Choose Us Section
   =============================== */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reason-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.reason-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.reason-icon i {
    font-size: 30px;
    color: white;
}

.reason-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 15px;
}

.reason-card p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

/* ===============================
   FAQ Section
   =============================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.faq-question {
    background: #f8fafc;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: between;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1e40af;
}

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

.faq-question i {
    margin-left: auto;
    transition: transform 0.3s ease;
    color: #f97316;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

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

.faq-answer p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* ===============================
   Partners Section
   =============================== */
.partners {
    background: #f8fafc;
}

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

.partner-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.partner-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.partner-icon i {
    font-size: 36px;
    color: white;
}

.partner-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
    text-align: center;
}

.partner-card > p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: center;
}

.partner-benefits {
    list-style: none;
    margin-top: 20px;
}

.partner-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 15px;
    color: #374151;
    border-bottom: 1px solid #f3f4f6;
}

.partner-benefits li:last-child {
    border-bottom: none;
}

.partner-benefits i {
    color: #10b981;
    font-size: 16px;
    flex-shrink: 0;
}

.partners-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 15px;
    border: 2px solid #3b82f6;
}

.partners-cta p {
    font-size: 16px;
    color: #1e40af;
    margin-bottom: 25px;
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
}

/* ===============================
   Contact Section
   =============================== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 20px;
}

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

.contact-method {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 36px;
    color: white;
}

.contact-method h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 15px;
}

.contact-info {
    margin-top: 10px;
}

.contact-phone,
.contact-email {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.contact-phone:hover,
.contact-email:hover {
    color: #ea580c;
}

.contact-info p {
    font-size: 14px;
    color: #6b7280;
}

.emergency-contact {
    margin-top: 50px;
}

.emergency-box {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.95), rgba(220, 38, 38, 0.9));
    border: 3px solid #fbbf24;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.3);
}

.emergency-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.emergency-box h3 i {
    color: #fbbf24;
    font-size: 28px;
}

.emergency-box p {
    font-size: 16px;
    color: white;
    margin-bottom: 25px;
    line-height: 1.6;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #dc2626;
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 24px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.emergency-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon i {
    font-size: 20px;
    color: white;
}

.contact-method-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 5px;
}

.contact-method-content p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.contact-hours {
    background: #f8fafc;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
}

.contact-hours h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 15px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

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

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

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

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

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    background-color: white;
}

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

.form-submit {
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
}

/* ===============================
   Footer Styles
   =============================== */
.footer {
    background: #1f2937;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section p,
.footer-section li {
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul,
.footer-links ul,
.footer-areas ul {
    list-style: none;
    padding-left: 0;
}

.footer-section a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f97316;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 12px;
    color: #9ca3af;
}

/* ===============================
   Mobile Responsive Styles
   =============================== */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .services-grid,
    .areas-grid,
    .pricing-grid,
    .reasons-grid,
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Flow Section Mobile */
    .flow-steps {
        flex-direction: column;
        gap: 20px;
    }

    .flow-step {
        flex: 1 1 auto;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    /* Partners Section Mobile */
    .partners-cta {
        padding: 25px 20px;
    }

    .cta-button {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section ul,
    .footer-links ul,
    .footer-areas ul {
        padding-left: 0;
        list-style: none;
    }

    .footer-section li,
    .footer-links li,
    .footer-areas li {
        text-align: center;
    }
}