/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hiragino Kaku Gothic Pro', 'Meiryo', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 65px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

.contact-info {
    text-align: right;
}

.phone-container {
    margin-bottom: 8px;
}

.phone-number {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    display: block;
    transition: color 0.3s ease;
    position: relative;
}

.phone-number:hover {
    color: #5cb25d;
}

.phone-number i {
    color: #5cb25d;
    margin-right: 5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.phone-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 3px;
}

.business-hours {
    font-size: 1rem;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.highlight {
    color: #5cb25d;
    font-weight: bold;
}

/* Navigation Styles */
.main-nav {
    background-color: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 10px 20px;
}

.menu-button {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 8px 15px;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.menu-button i {
    margin-right: 5px;
}

/* Hero Section Styles */
.hero {
    background-color: #5cb25d;
    background-image: url('images/header.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 20px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    margin-bottom: 40px;
    text-align: center;
}

.main-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    animation: fadeInDown 1s ease-out;
}

.accent {
    color: #f0c14b;
    font-weight: bold;
}

.service-types {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.service-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInUp 1s ease-out;
    transition: transform 0.3s ease;
}

.service-type:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: #f0c14b;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.service-type h2 {
    font-size: 1.8rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.phone-large .fas.fa-phone {
  color: #5cb25d;
  font-size: 24pt;
}

.hero-tagline {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin-bottom: 25px;
}

.hero-cta {
    display: inline-block;
    background-color: #f0c14b;
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 30px;
    text-shadow: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.hero-cta:hover {
    background-color: #e0b33c;
    transform: scale(1.05);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.badge {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #333;
    border: 2px solid #f0c14b;
}

.badge p {
    font-size: 0.9rem;
    font-weight: bold;
}

/* Concerns Section Styles */
.concerns {
    background-color: #f9f9f9;
    padding: 50px 20px;
}

.concerns-header {
    text-align: center;
    margin-bottom: 40px;
}

.concerns-header h2 {
    font-size: 1.8rem;
    color: #333;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.concerns-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #5cb25d;
}

.concerns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.concern-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.concern-item i {
    font-size: 1.5rem;
    color: #5cb25d;
    margin-right: 15px;
}

.concern-item p {
    font-size: 1rem;
}

/* Solution Section Styles */
.solution {
    background-color: #edf7ee;
    padding: 50px 20px;
}

.solution-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-small {
    width: 200px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    margin: 0 auto 15px;
  }

.solution-header h2 {
    font-size: 1.7rem;
    color: #5cb25d;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
    background-color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.3rem;
    color: #5cb25d;
    padding: 15px 20px 10px;
    font-weight: bold;
}

.service-card p {
    padding: 0 20px 20px;
    color: #666;
}

.details-button {
    display: inline-block;
    background-color: #5cb25d;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    margin: 0 20px 20px;
    transition: background-color 0.3s;
    font-weight: bold;
}

.details-button:hover {
    background-color: #4a9e4c;
}

/* Instagram Section Styles */
.instagram {
    padding: 50px 20px;
    text-align: center;
}

.instagram h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.instagram-item {
    height: 150px;
    overflow: hidden;
    border-radius: 5px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-weight: bold;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-link {
    display: inline-block;
    background-color: #5cb25d;
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s;
    font-size: 0.9rem;
}

.instagram-link:hover {
    background-color: #4a9e4c;
}

/* Service Area Section Styles */
.service-area {
    background-color: #f0f8ff;
    padding: 50px 20px;
}

.area-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.area-header i {
    font-size: 2rem;
    color: #f0c14b;
    margin-right: 15px;
}

.area-header h2 {
    font-size: 1.8rem;
    color: #333;
}

.area-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.map-container {
    flex: 1;
    min-width: 300px;
}

.map-placeholder {
    background-color: #e1e1e1;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.map-image {
    width: 100%;
    height: 100%;
    background-color: transparent; /* Remove default gray */
}

.map-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-list {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.area-list h3 {
    text-align: center;
    color: #fff;
    background-color: #5cb25d;
    padding: 10px;
    margin: -20px -20px 20px;
    border-radius: 10px 10px 0 0;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.area-item {
    background-color: #f9f9f9;
    padding: 10px 5px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.area-item::before {
    content: '▶';
    color: #5cb25d;
    margin-right: 5px;
}

.area-note {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* Contact Section Styles */
.contact {
    padding: 50px 0 0;
}

.contact-banner {
    background-color: #5cb25d;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.contact-banner p {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.contact-banner h2 {
    font-size: 1.8rem;
}

.contact-info-box {
    max-width: 1000px;
    margin: 30px auto;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.service-title {
    text-align: center;
    margin-bottom: 30px;
}

.service-title h3 {
    font-size: 1.2rem;
    color: #5cb25d;
    padding: 10px;
    background-color: #edf7ee;
    border-radius: 5px;
    line-height: 1.4;
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.phone-large {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.phone-number-large {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    display: block;
    margin: 10px 0;
}

.phone-note-small {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 15px;
}

.phone-large hr {
    border: none;
    border-top: 1px dashed #ccc;
    margin: 15px 0;
}

.hours {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.weekend-badge {
    display: inline-block;
    background-color: #f0c14b;
    color: #333;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bold;
}

.contact-buttons {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.email-button, .line-button {
    display: block;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    transition: opacity 0.3s;
    font-size: 0.95rem;
}

.email-button {
    background-color: #e74c3c;
    color: #fff;
}

.line-button {
    background-color: #00b900;
    color: #fff;
}

.email-button:hover, .line-button:hover {
    opacity: 0.9;
}

/* Footer Styles */
footer {
    background-color: #f5f5f5;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #666;
    margin: 0 10px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #5cb25d;
}

.copyright {
    font-size: 0.8rem;
    color: #999;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #f0c14b;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.back-to-top:hover {
    background-color: #e0b33c;
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Header Styles */
    .header-container {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    .logo {
        height: 55px;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .phone-number {
        font-size: 1.5rem;
    }
    
    .business-hours {
        justify-content: center;
    }
    
    /* Hero Section Styles */
    .hero {
        padding: 40px 15px;
    }
    
    .main-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .service-types {
        gap: 15px;
    }
    
    .service-type h2 {
        font-size: 1.4rem;
    }
    
    .service-icon {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .hero-cta {
        font-size: 1rem;
        padding: 10px 25px;
    }
    
    .service-badges {
        flex-wrap: wrap;
    }
    
    .badge {
        width: 80px;
        height: 80px;
    }
    
    /* Concerns Section Styles */
    .concerns {
        padding: 40px 15px;
    }
    
    .concerns-header h2 {
        font-size: 1.5rem;
    }
    
    .concerns-grid {
        grid-template-columns: 1fr;
    }
    
    /* Solution Section Styles */
    .solution {
        padding: 40px 15px;
    }
    
    .solution-header h2 {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    /* Instagram Section Styles */
    .instagram {
        padding: 40px 15px;
    }
    
    .instagram h2 {
        font-size: 1.5rem;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Service Area Section Styles */
    .service-area {
        padding: 40px 15px;
    }
    
    .area-header h2 {
        font-size: 1.5rem;
    }
    
    .map-placeholder {
        height: 250px;
        margin-bottom: 20px;
    }
    
    /* Contact Section Styles */
    .contact-banner h2 {
        font-size: 1.5rem;
    }
    
    .contact-info-box {
        padding: 20px 15px;
    }
    
    .service-title h3 {
        font-size: 1.1rem;
    }
    
    .phone-number-large {
        font-size: 2rem;
    }
    
    .contact-methods {
        flex-direction: column;
    }
}

/* Touch Optimizations */
@media (hover: none) {
    .service-type:hover,
    .hero-cta:hover,
    .details-button:hover,
    .instagram-link:hover,
    .back-to-top:hover,
    .email-button:hover, 
    .line-button:hover {
        transform: none;
    }
    
    .phone-number:hover,
    .footer-links a:hover {
        color: inherit;
    }
    
    /* Increase touch targets for better mobile usability */
    .phone-number,
    .hero-cta,
    .details-button,
    .instagram-link,
    .email-button,
    .line-button,
    .back-to-top {
        padding: 12px 25px;
    }
    
    .area-item {
        padding: 12px 8px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero {
        padding: 30px 10px;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .service-types {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-type {
        margin-bottom: 10px;
    }
    
    .service-badges {
        gap: 10px;
    }
    
    .badge {
        width: 70px;
        height: 70px;
        font-size: 0.8rem;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .area-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
