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

body {
    font-family: 'Hiragino Sans', 'Yu Gothic UI', 'Meiryo UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.highlight {
    color: #ff6b35;
    background: linear-gradient(45deg, #ffeb3b, #ff9800);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight-black {
    color: #333;
    font-weight: 700;
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

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

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}


.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.6) contrast(1.1);
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(76, 175, 80, 0.1) 0%, rgba(139, 195, 74, 0.1) 100%);
    z-index: 2;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 5;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active {
    background: #ffeb3b;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(255, 235, 59, 0.6);
}

.hero .container {
    position: relative;
    z-index: 4;
    width: 100%;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.hero-badge {
    background: #ffeb3b;
    color: #333;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.3);
}

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

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 48px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-phone {
    margin-bottom: 48px;
    display: flex;
    justify-content: center;
}

.phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #ff6b35;
    color: white;
    padding: 24px 40px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.phone-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    background: #e55a2b;
}

.phone-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.phone-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.phone-number {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.phone-time {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1;
}

.hero-features {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.feature-icon {
    background: #ffeb3b;
    color: #333;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}


/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

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

.reason-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ff6b35;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.reason-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.reason-content p {
    color: #666;
    line-height: 1.8;
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

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

.service-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.service-header h3 {
    font-size: 20px;
    color: #333;
    font-weight: 600;
}

.service-price {
    background: #ffeb3b;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 16px;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-item {
    font-size: 14px;
    color: #888;
    padding-left: 15px;
    position: relative;
}

.detail-item::before {
    content: "•";
    color: #ff6b35;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.service-note {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

/* Cases Section */
.cases {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.case-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

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

.case-images {
    padding: 30px;
}

.before-after {
    display: flex;
    align-items: center;
    gap: 20px;
}

.before-image, .after-image {
    flex: 1;
    position: relative;
}

.image-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.before-image img, .after-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
}

.arrow {
    font-size: 24px;
    color: #ff6b35;
    font-weight: bold;
}

.case-info {
    padding: 0 30px 30px;
}

.case-info h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.case-details {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.detail {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    color: #666;
}

.case-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.7;
    font-style: italic;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: white;
}

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

.review-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ffeb3b;
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.review-header {
    margin-bottom: 20px;
}

.customer-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.rating {
    color: #ffeb3b;
    font-size: 16px;
}

.review-content p {
    color: #666;
    line-height: 1.8;
    font-style: italic;
}

/* Pricing Table Section */
.pricing-table {
    padding: 80px 0;
    background: #f8f9fa;
}

.price-table {
    width: 100%;
    max-width: 900px;
    margin: 0 auto 30px auto;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.price-table th {
    background: #4caf50;
    color: white;
    padding: 18px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
}

.price-table th:first-child {
    width: 25%;
}

.price-table th:nth-child(2) {
    width: 20%;
}

.price-table th:nth-child(3) {
    width: 20%;
}

.price-table th:nth-child(4) {
    width: 35%;
}

.price-table td {
    padding: 18px 15px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
    font-size: 15px;
    line-height: 1.4;
}

.price-table td:first-child {
    font-weight: 600;
    color: #333;
}

.price-table td:nth-child(2) {
    font-weight: 700;
    color: #4caf50;
    font-size: 16px;
}

.price-table tr:hover {
    background: #f8f9fa;
}

.pricing-notes {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 900px;
    margin: 0 auto;
}

.pricing-notes ul {
    list-style: none;
}

.pricing-notes li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.pricing-notes li::before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Service Flow Section */
.service-flow {
    padding: 80px 0;
    background: white;
}

.flow-steps {
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 5px solid #4caf50;
    transition: all 0.3s ease;
}

.flow-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    background: #4caf50;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}

.flow-arrow {
    text-align: center;
    font-size: 24px;
    color: #4caf50;
    margin: -20px 0;
    font-weight: bold;
    z-index: 2;
    position: relative;
}

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

.area-content {
    display: flex;
    justify-content: center;
}

.area-map {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.area-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(76, 175, 80, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-point {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

.location-pin {
    font-size: 32px;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.location-text {
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.coverage-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 3px solid rgba(76, 175, 80, 0.6);
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.1);
    z-index: 2;
    animation: pulse-circle 3s infinite;
}

@keyframes pulse-circle {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

.area-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    width: 100%;
}

.area-details h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 600;
    border-bottom: 3px solid #4caf50;
    padding-bottom: 10px;
}

.area-list {
    margin-bottom: 30px;
}

.area-item {
    margin-bottom: 25px;
}

.area-item h4 {
    font-size: 18px;
    color: #4caf50;
    margin-bottom: 10px;
    font-weight: 600;
}

.area-item ul {
    list-style: none;
    padding-left: 0;
}

.area-item li {
    color: #666;
    margin-bottom: 6px;
    padding-left: 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
}

.area-item li::before {
    content: "✓";
    color: #4caf50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.area-note {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #4caf50;
}

.area-note p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.area-note p:last-child {
    margin-bottom: 0;
}

.contact-note {
    color: #4caf50 !important;
    font-weight: 600 !important;
    margin-top: 10px !important;
}

/* Company Info Section */
.company-info {
    padding: 80px 0;
    background: white;
}

.company-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.info-grid {
    display: grid;
    gap: 20px;
}

.info-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.company-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s ease;
    border-left: 4px solid #4caf50;
}

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

.faq-question h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 24px;
    color: #4caf50;
    font-weight: bold;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #4caf50;
    color: white;
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 25px 30px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #4caf50;
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-content {
    display: flex;
    justify-content: center;
}

.contact-methods {
    display: grid;
    gap: 40px;
    max-width: 600px;
    width: 100%;
}

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

.contact-phone h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.phone-cta {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 25px 30px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.phone-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.phone-cta .phone-icon {
    font-size: 28px;
}

.phone-cta .phone-number {
    font-size: 28px;
    font-weight: 700;
}

.phone-cta .phone-time {
    font-size: 14px;
    opacity: 0.8;
}

.contact-form-section {
    text-align: center;
}

.contact-form-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    margin: 0 auto;
    text-align: left;
}

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

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

.required {
    color: #ff6b35;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 14px;
    transition: all 0.3s;
}

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

.submit-btn {
    background: #ff6b35;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.form-note {
    margin-top: 20px;
    text-align: center;
}

.form-note p {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.6;
}


/* Fixed CTA */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cta-phone {
    flex: 1;
    background: #06c755;
    color: white;
    text-decoration: none;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(6, 199, 85, 0.3);
}

.cta-phone:hover {
    background: #05b44d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 199, 85, 0.4);
}

.cta-form {
    flex: 1;
    background: #fd7e14;
    color: white;
    text-decoration: none;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    font-weight: 700;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(253, 126, 20, 0.3);
}

.cta-form:hover {
    background: #e8650e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 126, 20, 0.4);
}

.cta-text {
    font-size: 18px;
    font-weight: 700;
    white-space: nowrap;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 50px 0 20px;
    margin-bottom: 80px; /* Fixed CTAのスペース確保 */
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-company h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffeb3b;
}

.footer-company p {
    color: #ccc;
    margin-bottom: 20px;
    font-style: italic;
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-services h4,
.footer-area h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffeb3b;
    font-weight: 600;
}

.footer-services ul,
.footer-area ul {
    list-style: none;
}

.footer-services li,
.footer-area li {
    color: #ccc;
    margin-bottom: 8px;
    font-size: 14px;
    padding-left: 15px;
    position: relative;
}

.footer-services li::before,
.footer-area li::before {
    content: "•";
    color: #4caf50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-features {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .hero {
        padding: 60px 0 80px;
        min-height: auto;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .phone-btn {
        padding: 20px 30px;
        gap: 15px;
        border-radius: 50px;
    }
    
    .phone-number {
        font-size: 24px;
    }
    
    .phone-icon {
        font-size: 24px;
    }
    
    .hero-features {
        gap: 20px;
        justify-content: center;
    }
    
    .feature-item {
        font-size: 14px;
        gap: 8px;
    }
    
    .feature-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reason-card {
        padding: 25px 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .before-after {
        flex-direction: column;
        gap: 15px;
    }
    
    .arrow {
        transform: rotate(90deg);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .price-table {
        font-size: 14px;
    }
    
    .price-table th,
    .price-table td {
        padding: 15px 8px;
    }
    
    .flow-step {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 25px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 16px;
        margin: 0 auto;
    }
    
    .flow-arrow {
        margin: -15px 0;
    }
    
    .area-info {
        padding: 30px 20px;
    }
    
    .company-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    
    
    .phone-cta {
        padding: 20px 25px;
    }
    
    .phone-cta .phone-number {
        font-size: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .phone-btn {
        padding: 16px 24px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }
    
    .phone-info {
        align-items: center;
    }
    
    .phone-number {
        font-size: 22px;
    }
    
    .phone-icon {
        font-size: 20px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .feature-item {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .service-card,
    .reason-card,
    .review-card {
        padding: 20px 15px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .cta-text {
        font-size: 16px;
    }
    
    .cta-phone,
    .cta-form {
        padding: 16px;
        font-size: 16px;
    }
}