/*
Theme Name: Drone Photography Fukuoka
Description: Professional drone photography and aerial cinematography WordPress theme for Fukuoka-based 0 to 1 company.
Version: 1.0
Author: 0 to 1
Author URI: https://example.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: drone-theme
Tags: business, photography, drone, minimal, modern, responsive
*/

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

body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; 
    line-height: 1.6; 
    color: #1a1a1a; 
    background: #ffffff; 
}

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

/* Header Styles */
header { 
    background: rgba(255, 255, 255, 0.95); 
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 1000; 
    backdrop-filter: blur(20px); 
    border-bottom: 1px solid #f0f0f0; 
}

nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px 0; 
}

.logo { 
    font-family: 'Times New Roman', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', serif; 
    font-size: 18px; 
    font-weight: 400; 
    color: #1a1a1a; 
    letter-spacing: 0.05em; 
    text-decoration: none; 
}

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 40px; 
}

.nav-links a { 
    text-decoration: none; 
    color: #666; 
    font-size: 14px; 
    font-weight: 400; 
    transition: color 0.2s ease; 
}

.nav-links a:hover { 
    color: #1a1a1a; 
}

.contact-btn { 
    background: #1a1a1a; 
    color: white; 
    padding: 12px 24px; 
    border: none; 
    font-size: 14px; 
    font-weight: 400; 
    text-decoration: none; 
    transition: all 0.2s ease; 
}

.contact-btn:hover { 
    background: #333; 
}

.hamburger { 
    display: none; 
    flex-direction: column; 
    cursor: pointer; 
    padding: 8px; 
}

.hamburger span { 
    width: 20px; 
    height: 2px; 
    background: #1a1a1a; 
    margin: 2px 0; 
    transition: 0.3s; 
}

.hamburger.active span:nth-child(1) { 
    transform: rotate(-45deg) translate(-4px, 4px); 
}

.hamburger.active span:nth-child(2) { 
    opacity: 0; 
}

.hamburger.active span:nth-child(3) { 
    transform: rotate(45deg) translate(-4px, -4px); 
}

.mobile-menu { 
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    width: 100%; 
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(20px); 
    border-bottom: 1px solid #f0f0f0; 
    padding: 20px 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.mobile-menu.active { 
    display: block; 
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu ul { 
    list-style: none; 
    padding: 0 24px; 
}

.mobile-menu ul li { 
    margin: 16px 0; 
}

.mobile-menu ul li a { 
    color: #666; 
    text-decoration: none; 
    font-size: 16px; 
    font-weight: 400; 
}

/* Hero Section */
.hero { 
    height: 100vh; 
    background: #000; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    position: relative; 
    overflow: hidden;
    margin-bottom: 0;
}

.hero-video { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    z-index: 1; 
}

.video-placeholder { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(45deg, #1a1a1a, #333); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #666; 
    font-size: 14px; 
    z-index: 1; 
}

.hero-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.4); 
    z-index: 2; 
}

.hero-content { 
    max-width: 900px; 
    position: relative; 
    z-index: 3; 
    color: white; 
    padding: 0 16px; 
}

.hero h1 { 
    font-size: clamp(36px, 6vw, 60px); 
    font-weight: 300; 
    color: white; 
    margin-bottom: 24px; 
    letter-spacing: -0.04em; 
    line-height: 1.1; 
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5); 
}

.hero p { 
    font-size: 18px; 
    color: rgba(255, 255, 255, 0.9); 
    margin-bottom: 48px; 
    font-weight: 300; 
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5); 
}

.hero .contact-btn { 
    background: rgba(255, 255, 255, 0.1); 
    color: white; 
    border: 1px solid rgba(255, 255, 255, 0.3); 
    backdrop-filter: blur(10px); 
}

.hero .contact-btn:hover { 
    background: rgba(255, 255, 255, 0.2); 
}

/* Section Base Styles */
.services { 
    padding: 0 0 120px 0; 
}

.about, .portfolio, .blog, .contact { 
    padding: 120px 0; 
}

.about { 
    background: #fafafa; 
}

.blog { 
    background: #fafafa; 
}

.section-title { 
    font-size: 32px; 
    font-weight: 300; 
    color: #1a1a1a; 
    margin-bottom: 80px; 
    letter-spacing: -0.02em; 
}

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

.service-item {
    background: #ffffff;
    padding: 40px 32px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a1a1a, #666);
    transition: width 0.3s ease;
}

.service-item:hover::before {
    width: 100%;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.service-item h3 { 
    font-size: 20px; 
    font-weight: 500; 
    color: #1a1a1a; 
    margin-bottom: 20px; 
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 16px;
}

.service-item h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #f0f0f0;
    transition: all 0.3s ease;
}

.service-item:hover h3::after {
    width: 60px;
    background: #1a1a1a;
}

.service-item p { 
    font-size: 15px; 
    color: #666; 
    line-height: 1.7; 
    font-weight: 300;
    margin: 0;
}

/* About Section */
.about-content { 
    max-width: 800px; 
    margin: 0 auto; 
    text-align: center; 
}

.about-content h2 { 
    font-size: 32px; 
    font-weight: 300; 
    color: #1a1a1a; 
    margin-bottom: 32px; 
    letter-spacing: -0.02em; 
}

.about-content p { 
    font-size: 16px; 
    color: #666; 
    margin-bottom: 24px; 
    line-height: 1.7; 
    font-weight: 300; 
}

.credentials { 
    list-style: none; 
    margin-top: 64px; 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 32px; 
    max-width: 700px; 
    margin-left: auto; 
    margin-right: auto; 
}

.credentials li { 
    font-size: 14px; 
    color: #1a1a1a; 
    padding: 24px 32px; 
    background: #ffffff; 
    border: 1px solid #f0f0f0; 
    border-radius: 0; 
    text-align: left; 
    font-weight: 400; 
    position: relative; 
    transition: all 0.3s ease;
}

.credentials li:hover {
    border-color: #e0e0e0;
    transform: translateY(-2px);
}

.credentials li::before { 
    content: ""; 
    position: absolute; 
    left: 0; 
    top: 0; 
    bottom: 0; 
    width: 3px; 
    background: #1a1a1a; 
}

.credential-title {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 300;
}

.credential-text {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.4;
}

/* Portfolio Section */
.portfolio-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 48px; 
}

.portfolio-item { 
    background: #fafafa; 
    transition: all 0.3s ease; 
    cursor: default; 
}

.portfolio-item:hover { 
    background: #f0f0f0; 
}

.portfolio-image { 
    height: 240px; 
    background: #e8e8e8; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio-content { 
    padding: 32px; 
}

.portfolio-content h3 { 
    font-size: 16px; 
    font-weight: 400; 
    color: #1a1a1a; 
    margin-bottom: 12px; 
}

.portfolio-content p { 
    font-size: 14px; 
    color: #666; 
    line-height: 1.6; 
    font-weight: 300; 
}

/* Blog Section */
.blog-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); 
    gap: 48px; 
    margin-bottom: 60px;
}

.blog-item { 
    background: #ffffff; 
    transition: all 0.3s ease; 
}

.blog-item:hover { 
    background: #fafafa; 
}

.blog-image { 
    height: 200px; 
    background: #e8e8e8; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #999; 
    font-size: 14px; 
    overflow: hidden;
}

.blog-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content { 
    padding: 32px; 
}

.blog-date { 
    font-size: 12px; 
    color: #999; 
    margin-bottom: 16px; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}

.blog-content h3 { 
    font-size: 16px; 
    font-weight: 400; 
    color: #1a1a1a; 
    margin-bottom: 12px; 
    line-height: 1.4; 
}

.blog-content h3 a { 
    color: #1a1a1a; 
    text-decoration: none; 
    transition: color 0.2s ease;
}

.blog-content h3 a:hover { 
    color: #666; 
}

.blog-content p { 
    font-size: 14px; 
    color: #666; 
    line-height: 1.6; 
    font-weight: 300; 
}

.blog-more {
    text-align: center;
    margin-top: 40px;
}

.more-articles-btn {
    display: inline-block;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 16px 32px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.more-articles-btn:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

/* Contact Section */
.contact { 
    background: #1a1a1a; 
    color: #ffffff; 
}

.contact-content { 
    max-width: 600px; 
    margin: 0 auto; 
    text-align: center; 
}

.contact h2 { 
    font-size: 32px; 
    font-weight: 300; 
    margin-bottom: 24px; 
    letter-spacing: -0.02em; 
}

.contact p { 
    font-size: 16px; 
    color: #999; 
    margin-bottom: 48px; 
    font-weight: 300; 
}

.contact-form { 
    text-align: left; 
    margin-bottom: 80px; 
}

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

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

.form-group input, 
.form-group select, 
.form-group textarea { 
    width: 100%; 
    padding: 16px 0; 
    border: none; 
    border-bottom: 1px solid #333; 
    background: transparent; 
    color: #ffffff; 
    font-family: inherit; 
    font-size: 16px; 
    transition: border-color 0.2s ease; 
}

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

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

.submit-btn { 
    background: #ffffff; 
    color: #1a1a1a; 
    padding: 16px 32px; 
    border: none; 
    font-size: 14px; 
    font-weight: 400; 
    cursor: pointer; 
    transition: all 0.2s ease; 
    width: 100%; 
}

.submit-btn:hover { 
    background: #f0f0f0; 
}

.contact-info { 
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px; 
    text-align: center; 
}

.contact-item h3 { 
    font-size: 14px; 
    font-weight: 400; 
    color: #ccc; 
    margin-bottom: 16px; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}

.contact-item p { 
    font-size: 16px; 
    color: #ffffff; 
    margin-bottom: 8px; 
    font-weight: 300; 
}

.contact-item p a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item p a:hover {
    color: #ccc;
}

.contact-item .secondary { 
    font-size: 14px; 
    color: #666; 
}

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

.faq-item { 
    border-bottom: 1px solid #f0f0f0; 
    padding: 32px 0; 
}

.faq-item:last-child { 
    border-bottom: none; 
}

.faq h3 { 
    font-size: 18px; 
    font-weight: 400; 
    color: #1a1a1a; 
    margin-bottom: 16px; 
    letter-spacing: -0.01em;
}

.faq p { 
    color: #666; 
    font-size: 16px; 
    line-height: 1.7; 
    font-weight: 300; 
    margin: 0;
}

/* Footer */
footer { 
    background: #111; 
    color: #666; 
    text-align: center; 
    padding: 40px 0; 
}

footer p { 
    font-size: 12px; 
    font-weight: 300; 
    margin-bottom: 8px; 
}

/* Article/Blog Post Pages */
.article { 
    padding: 120px 0 0; 
}

.article-header { 
    margin-bottom: 48px; 
    text-align: left; 
}

.article-date { 
    font-size: 12px; 
    color: #999; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    margin-bottom: 16px; 
}

.article-title { 
    font-size: 32px; 
    font-weight: 300; 
    color: #1a1a1a; 
    line-height: 1.3; 
    margin-bottom: 24px; 
    letter-spacing: -0.02em; 
}

.article-lead { 
    font-size: 18px; 
    color: #666; 
    line-height: 1.6; 
    font-weight: 300; 
    margin-bottom: 48px; 
}

.article-image { 
    width: 100%; 
    height: 400px; 
    background: #f0f0f0; 
    margin-bottom: 48px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #999; 
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content h2 { 
    font-size: 24px; 
    font-weight: 400; 
    color: #1a1a1a; 
    margin: 48px 0 24px; 
    letter-spacing: -0.01em; 
}

.article-content h3 { 
    font-size: 20px; 
    font-weight: 400; 
    color: #1a1a1a; 
    margin: 32px 0 16px; 
}

.article-content p { 
    font-size: 16px; 
    color: #333; 
    margin-bottom: 24px; 
    line-height: 1.7; 
}

.article-content ul, 
.article-content ol { 
    margin: 24px 0; 
    padding-left: 24px; 
}

.article-content li { 
    margin-bottom: 8px; 
    color: #333; 
}

.highlight-box { 
    background: #f8f9fa; 
    border-left: 4px solid #1a1a1a; 
    padding: 24px; 
    margin: 32px 0; 
}

.highlight-box h4 { 
    font-size: 16px; 
    font-weight: 500; 
    color: #1a1a1a; 
    margin-bottom: 12px; 
}

.highlight-box p { 
    font-size: 14px; 
    color: #666; 
    margin-bottom: 0; 
}

.article-footer { 
    border-top: 1px solid #f0f0f0; 
    padding-top: 48px; 
    margin-top: 64px; 
    text-align: center; 
    margin-bottom: 64px; 
}

.back-to-top { 
    display: inline-block; 
    color: #666; 
    text-decoration: none; 
    font-size: 14px; 
    padding: 12px 24px; 
    border: 1px solid #e0e0e0; 
    transition: all 0.2s ease; 
}

.back-to-top:hover { 
    background: #1a1a1a; 
    color: white; 
}

/* Animation Classes */
.fade-in { 
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

.fade-in.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

/* WordPress Specific Styles */
.wp-post-image { 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
}

.blog-content a { 
    color: #1a1a1a; 
    transition: color 0.2s ease;
}

.blog-content a:hover { 
    color: #666; 
}

/* Contact Form 7 Styles */
.wpcf7-form-control {
    width: 100%; 
    padding: 16px 0; 
    border: none; 
    border-bottom: 1px solid #333; 
    background: transparent; 
    color: #ffffff; 
    font-family: inherit; 
    font-size: 16px; 
    transition: border-color 0.2s ease;
}

.wpcf7-form-control:focus {
    outline: none; 
    border-bottom-color: #666;
}

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

.wpcf7-submit {
    background: #ffffff; 
    color: #1a1a1a; 
    padding: 16px 32px; 
    border: none; 
    font-size: 14px; 
    font-weight: 400; 
    cursor: pointer; 
    transition: all 0.2s ease; 
    width: 100%;
}

.wpcf7-submit:hover {
    background: #f0f0f0;
}

/* Responsive Break Classes */
.br-pc {
    display: none;
}

.br-sp {
    display: none;
}

.br-both {
    display: block;
}

/* Text Visibility Classes */
.text-pc-only {
    display: inline;
}

.text-sp-only {
    display: none;
}

/* Responsive Design */
@media (min-width: 769px) {
    .br-pc {
        display: block;
    }
    
    .br-sp {
        display: none;
    }
    
    .text-pc-only {
        display: inline;
    }
    
    .text-sp-only {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none; 
    }
    
    .hamburger { 
        display: flex; 
    }
    
    .hero h1 { 
        font-size: 36px; 
    }
    
    .container { 
        padding: 0 20px; 
    }
    
    nav {
        padding-left: 20px; 
        padding-right: 20px;
    }
    
    .services { 
        padding: 80px 0; 
    }
    
    .about, .portfolio, .blog, .contact { 
        padding: 80px 0; 
    }
    
    .credentials { 
        grid-template-columns: 1fr; 
        max-width: 400px; 
        gap: 24px; 
    }
    
    .article { 
        padding: 100px 0 0; 
    }
    
    .article-title { 
        font-size: 28px; 
    }
    
    .article-image { 
        height: 250px; 
    }
    
    .portfolio-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .br-pc {
        display: none;
    }
    
    .br-sp {
        display: block;
    }
    
    .text-pc-only {
        display: none;
    }
    
    .text-sp-only {
        display: inline;
    }
}

@media (max-width: 480px) {
    .hero p {
        font-size: 16px;
    }
    .hero h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-item {
        padding: 32px 24px;
    }
    
    .service-item h3 {
        font-size: 18px;
    }
    
    .service-item p {
        font-size: 14px;
    }
    
    .credentials li {
        padding: 20px 24px;
    }
    
    .portfolio-content,
    .blog-content {
        padding: 24px;
    }
}

/* Print Styles */
@media print {
    header,
    .hamburger,
    .mobile-menu,
    .contact,
    footer {
        display: none;
    }
    
    .article {
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.7);
    }
    
    .contact-btn {
        border: 2px solid currentColor;
    }
}/*
Theme Name: Drone Photography Fukuoka
Description: Professional drone photography and aerial cinematography WordPress theme for Fukuoka-based 0 to 1 company.
Version: 1.0
Author: 0 to 1
Author URI: https://example.com
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: drone-theme
Tags: business, photography, drone, minimal, modern, responsive
*/

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

body { 
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; 
    line-height: 1.6; 
    color: #1a1a1a; 
    background: #ffffff; 
}

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

/* Header Styles */
header { 
    background: rgba(255, 255, 255, 0.95); 
    position: fixed; 
    top: 0; 
    width: 100%; 
    z-index: 1000; 
    backdrop-filter: blur(20px); 
    border-bottom: 1px solid #f0f0f0; 
}

nav { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding: 20px 0; 
}

.logo { 
    font-family: 'Times New Roman', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', serif; 
    font-size: 18px; 
    font-weight: 400; 
    color: #1a1a1a; 
    letter-spacing: 0.05em; 
    text-decoration: none; 
}

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 40px; 
}

.nav-links a { 
    text-decoration: none; 
    color: #666; 
    font-size: 14px; 
    font-weight: 400; 
    transition: color 0.2s ease; 
}

.nav-links a:hover { 
    color: #1a1a1a; 
}

.contact-btn { 
    background: #1a1a1a; 
    color: white; 
    padding: 12px 24px; 
    border: none; 
    font-size: 14px; 
    font-weight: 400; 
    text-decoration: none; 
    transition: all 0.2s ease; 
}

.contact-btn:hover { 
    background: #333; 
}

.hamburger { 
    display: none; 
    flex-direction: column; 
    cursor: pointer; 
    padding: 8px; 
}

.hamburger span { 
    width: 20px; 
    height: 2px; 
    background: #1a1a1a; 
    margin: 2px 0; 
    transition: 0.3s; 
}

.hamburger.active span:nth-child(1) { 
    transform: rotate(-45deg) translate(-4px, 4px); 
}

.hamburger.active span:nth-child(2) { 
    opacity: 0; 
}

.hamburger.active span:nth-child(3) { 
    transform: rotate(45deg) translate(-4px, -4px); 
}

.mobile-menu { 
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    width: 100%; 
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(20px); 
    border-bottom: 1px solid #f0f0f0; 
    padding: 20px 0;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.mobile-menu.active { 
    display: block; 
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu ul { 
    list-style: none; 
    padding: 0 24px; 
}

.mobile-menu ul li { 
    margin: 16px 0; 
}

.mobile-menu ul li a { 
    color: #666; 
    text-decoration: none; 
    font-size: 16px; 
    font-weight: 400; 
}

/* Hero Section */
.hero { 
    height: 100vh; 
    background: #000; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-align: center; 
    position: relative; 
    overflow: hidden; 
}

.hero-video { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    z-index: 1; 
}

.video-placeholder { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: linear-gradient(45deg, #1a1a1a, #333); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #666; 
    font-size: 14px; 
    z-index: 1; 
}

.hero-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: rgba(0, 0, 0, 0.4); 
    z-index: 2; 
}

.hero-content { 
    max-width: 900px; 
    position: relative; 
    z-index: 3; 
    color: white; 
    padding: 0 16px; 
}

.hero h1 { 
    font-size: clamp(36px, 6vw, 50px); 
    font-weight: 300; 
    color: white; 
    margin-bottom: 24px; 
    letter-spacing: -0.04em; 
    line-height: 1.2; 
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5); 
}

.hero p { 
    font-size: 18px; 
    color: rgba(255, 255, 255, 0.9); 
    margin-bottom: 48px; 
    font-weight: 300; 
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5); 
}

.hero .contact-btn { 
    background: rgba(255, 255, 255, 0.1); 
    color: white; 
    border: 1px solid rgba(255, 255, 255, 0.3); 
    backdrop-filter: blur(10px); 
}

.hero .contact-btn:hover { 
    background: rgba(255, 255, 255, 0.2); 
}

/* Section Base Styles */
.services, .about, .portfolio, .blog, .contact { 
    padding: 120px 0; 
}

.about { 
    background: #fafafa; 
}

.blog { 
    background: #fafafa; 
}

.section-title { 
    font-size: 32px; 
    font-weight: 300; 
    color: #1a1a1a; 
    margin-bottom: 80px; 
    letter-spacing: -0.02em; 
}

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

.service-item {
    background: #ffffff;
    padding: 40px 32px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a1a1a, #666);
    transition: width 0.3s ease;
}

.service-item:hover::before {
    width: 100%;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.service-item h3 { 
    font-size: 20px; 
    font-weight: 500; 
    color: #1a1a1a; 
    margin-bottom: 20px; 
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 16px;
}

.service-item h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #f0f0f0;
    transition: all 0.3s ease;
}

.service-item:hover h3::after {
    width: 60px;
    background: #1a1a1a;
}

.service-item p { 
    font-size: 15px; 
    color: #666; 
    line-height: 1.7; 
    font-weight: 300;
    margin: 0;
}

/* About Section */
.about-content { 
    max-width: 800px; 
    margin: 0 auto; 
    text-align: center; 
}

.about-content h2 { 
    font-size: 32px; 
    font-weight: 300; 
    color: #1a1a1a; 
    margin-bottom: 32px; 
    letter-spacing: -0.02em; 
}

.about-content p { 
    font-size: 16px; 
    color: #666; 
    margin-bottom: 24px; 
    line-height: 1.7; 
    font-weight: 300; 
}

.credentials { 
    list-style: none; 
    margin-top: 64px; 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 32px; 
    max-width: 700px; 
    margin-left: auto; 
    margin-right: auto; 
}

.credentials li { 
    font-size: 14px; 
    color: #1a1a1a; 
    padding: 24px 32px; 
    background: #ffffff; 
    border: 1px solid #f0f0f0; 
    border-radius: 0; 
    text-align: left; 
    font-weight: 400; 
    position: relative; 
    transition: all 0.3s ease;
}

.credentials li:hover {
    border-color: #e0e0e0;
    transform: translateY(-2px);
}

.credentials li::before { 
    content: ""; 
    position: absolute; 
    left: 0; 
    top: 0; 
    bottom: 0; 
    width: 3px; 
    background: #1a1a1a; 
}

.credential-title {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 300;
}

.credential-text {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 400;
    line-height: 1.4;
}

/* Portfolio Section */
.portfolio-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 48px; 
}

.portfolio-item { 
    background: #fafafa; 
    transition: all 0.3s ease; 
    cursor: default; 
}

.portfolio-item:hover { 
    background: #f0f0f0; 
}

.portfolio-image { 
    height: 240px; 
    background: #e8e8e8; 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.portfolio-content { 
    padding: 32px; 
}

.portfolio-content h3 { 
    font-size: 16px; 
    font-weight: 400; 
    color: #1a1a1a; 
    margin-bottom: 12px; 
}

.portfolio-content p { 
    font-size: 14px; 
    color: #666; 
    line-height: 1.6; 
    font-weight: 300; 
}

/* Blog Section */
.blog-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); 
    gap: 48px; 
    margin-bottom: 60px;
}

.blog-item { 
    background: #ffffff; 
    transition: all 0.3s ease; 
}

.blog-item:hover { 
    background: #fafafa; 
}

.blog-image { 
    height: 200px; 
    background: #e8e8e8; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #999; 
    font-size: 14px; 
    overflow: hidden;
}

.blog-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-item:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content { 
    padding: 32px; 
}

.blog-date { 
    font-size: 12px; 
    color: #999; 
    margin-bottom: 16px; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}

.blog-content h3 { 
    font-size: 16px; 
    font-weight: 400; 
    color: #1a1a1a; 
    margin-bottom: 12px; 
    line-height: 1.4; 
}

.blog-content h3 a { 
    color: #1a1a1a; 
    text-decoration: none; 
    transition: color 0.2s ease;
}

.blog-content h3 a:hover { 
    color: #666; 
}

.blog-content p { 
    font-size: 14px; 
    color: #666; 
    line-height: 1.6; 
    font-weight: 300; 
}

.blog-more {
    text-align: center;
    margin-top: 40px;
}

.more-articles-btn {
    display: inline-block;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 16px 32px;
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.more-articles-btn:hover {
    background: #1a1a1a;
    color: white;
    border-color: #1a1a1a;
}

/* Contact Section */
.contact { 
    background: #1a1a1a; 
    color: #ffffff; 
}

.contact-content { 
    max-width: 600px; 
    margin: 0 auto; 
    text-align: center; 
}

.contact h2 { 
    font-size: 32px; 
    font-weight: 300; 
    margin-bottom: 24px; 
    letter-spacing: -0.02em; 
}

.contact p { 
    font-size: 16px; 
    color: #999; 
    margin-bottom: 48px; 
    font-weight: 300; 
}

.contact-form { 
    text-align: left; 
    margin-bottom: 80px; 
}

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

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

.form-group input, 
.form-group select, 
.form-group textarea { 
    width: 100%; 
    padding: 16px 0; 
    border: none; 
    border-bottom: 1px solid #333; 
    background: transparent; 
    color: #ffffff; 
    font-family: inherit; 
    font-size: 16px; 
    transition: border-color 0.2s ease; 
}

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

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

.submit-btn { 
    background: #ffffff; 
    color: #1a1a1a; 
    padding: 16px 32px; 
    border: none; 
    font-size: 14px; 
    font-weight: 400; 
    cursor: pointer; 
    transition: all 0.2s ease; 
    width: 100%; 
}

.submit-btn:hover { 
    background: #f0f0f0; 
}

.contact-info { 
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px; 
    text-align: center; 
}

.contact-item h3 { 
    font-size: 14px; 
    font-weight: 400; 
    color: #ccc; 
    margin-bottom: 16px; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
}

.contact-item p { 
    font-size: 16px; 
    color: #ffffff; 
    margin-bottom: 8px; 
    font-weight: 300; 
}

.contact-item p a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item p a:hover {
    color: #ccc;
}

.contact-item .secondary { 
    font-size: 14px; 
    color: #666; 
}

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

.faq-item { 
    border-bottom: 1px solid #f0f0f0; 
    padding: 32px 0; 
}

.faq-item:last-child { 
    border-bottom: none; 
}

.faq h3 { 
    font-size: 18px; 
    font-weight: 400; 
    color: #1a1a1a; 
    margin-bottom: 16px; 
    letter-spacing: -0.01em;
}

.faq p { 
    color: #666; 
    font-size: 16px; 
    line-height: 1.7; 
    font-weight: 300; 
    margin: 0;
}

/* Footer */
footer { 
    background: #111; 
    color: #666; 
    text-align: center; 
    padding: 40px 0; 
}

footer p { 
    font-size: 12px; 
    font-weight: 300; 
    margin-bottom: 8px; 
}

/* Article/Blog Post Pages */
.article { 
    padding: 120px 0 0; 
}

.article-header { 
    margin-bottom: 48px; 
    text-align: left; 
}

.article-date { 
    font-size: 12px; 
    color: #999; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    margin-bottom: 16px; 
}

.article-title { 
    font-size: 32px; 
    font-weight: 300; 
    color: #1a1a1a; 
    line-height: 1.3; 
    margin-bottom: 24px; 
    letter-spacing: -0.02em; 
}

.article-lead { 
    font-size: 18px; 
    color: #666; 
    line-height: 1.6; 
    font-weight: 300; 
    margin-bottom: 48px; 
}

.article-image { 
    width: 100%; 
    height: 400px; 
    background: #f0f0f0; 
    margin-bottom: 48px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    color: #999; 
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content h2 { 
    font-size: 24px; 
    font-weight: 400; 
    color: #1a1a1a; 
    margin: 48px 0 24px; 
    letter-spacing: -0.01em; 
}

.article-content h3 { 
    font-size: 20px; 
    font-weight: 400; 
    color: #1a1a1a; 
    margin: 32px 0 16px; 
}

.article-content p { 
    font-size: 16px; 
    color: #333; 
    margin-bottom: 24px; 
    line-height: 1.7; 
}

.article-content ul, 
.article-content ol { 
    margin: 24px 0; 
    padding-left: 24px; 
}

.article-content li { 
    margin-bottom: 8px; 
    color: #333; 
}

.highlight-box { 
    background: #f8f9fa; 
    border-left: 4px solid #1a1a1a; 
    padding: 24px; 
    margin: 32px 0; 
}

.highlight-box h4 { 
    font-size: 16px; 
    font-weight: 500; 
    color: #1a1a1a; 
    margin-bottom: 12px; 
}

.highlight-box p { 
    font-size: 14px; 
    color: #666; 
    margin-bottom: 0; 
}

.article-footer { 
    border-top: 1px solid #f0f0f0; 
    padding-top: 48px; 
    margin-top: 64px; 
    text-align: center; 
    margin-bottom: 64px; 
}

.back-to-top { 
    display: inline-block; 
    color: #666; 
    text-decoration: none; 
    font-size: 14px; 
    padding: 12px 24px; 
    border: 1px solid #e0e0e0; 
    transition: all 0.2s ease; 
}

.back-to-top:hover { 
    background: #1a1a1a; 
    color: white; 
}

/* Animation Classes */
.fade-in { 
    opacity: 0; 
    transform: translateY(20px); 
    transition: opacity 0.6s ease, transform 0.6s ease; 
}

.fade-in.visible { 
    opacity: 1; 
    transform: translateY(0); 
}

/* WordPress Specific Styles */
.wp-post-image { 
    width: 100%; 
    height: 200px; 
    object-fit: cover; 
}

.blog-content a { 
    color: #1a1a1a; 
    transition: color 0.2s ease;
}

.blog-content a:hover { 
    color: #666; 
}

/* Contact Form 7 Styles */
.wpcf7-form-control {
    width: 100%; 
    padding: 16px 0; 
    border: none; 
    border-bottom: 1px solid #333; 
    background: transparent; 
    color: #ffffff; 
    font-family: inherit; 
    font-size: 16px; 
    transition: border-color 0.2s ease;
}

.wpcf7-form-control:focus {
    outline: none; 
    border-bottom-color: #666;
}

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

.wpcf7-submit {
    background: #ffffff; 
    color: #1a1a1a; 
    padding: 16px 32px; 
    border: none; 
    font-size: 14px; 
    font-weight: 400; 
    cursor: pointer; 
    transition: all 0.2s ease; 
    width: 100%;
}

.wpcf7-submit:hover {
    background: #f0f0f0;
}

/* Responsive Break Classes */
.br-pc {
    display: none;
}

.br-sp {
    display: none;
}

.br-both {
    display: block;
}

/* Text Visibility Classes */
.text-pc-only {
    display: inline;
}

.text-sp-only {
    display: none;
}

/* Responsive Design */
@media (min-width: 769px) {
    .br-pc {
        display: block;
    }
    
    .br-sp {
        display: none;
    }
    
    .text-pc-only {
        display: inline;
    }
    
    .text-sp-only {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links { 
        display: none; 
    }
    
    .hamburger { 
        display: flex; 
    }
    
    .hero h1 { 
        font-size: 36px; 
    }
    
    .container { 
        padding: 0 20px; 
    }
    
    nav {
        padding-left: 20px; 
        padding-right: 20px;
    }
    
    .services, .about, .portfolio, .blog, .contact { 
        padding: 80px 0; 
    }
    
    .credentials { 
        grid-template-columns: 1fr; 
        max-width: 400px; 
        gap: 24px; 
    }
    
    .article { 
        padding: 100px 0 0; 
    }
    
    .article-title { 
        font-size: 28px; 
    }
    
    .article-image { 
        height: 250px; 
    }
    
    .portfolio-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .br-pc {
        display: none;
    }
    
    .br-sp {
        display: block;
    }
    
    .text-pc-only {
        display: none;
    }
    
    .text-sp-only {
        display: inline;
    }
}

@media (max-width: 480px) {
    .hero p {
        font-size: 16px;
    }
    .hero h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 60px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .service-item {
        padding: 32px 24px;
    }
    
    .service-item h3 {
        font-size: 18px;
    }
    
    .service-item p {
        font-size: 14px;
    }
    
    .credentials li {
        padding: 20px 24px;
    }
    
    .portfolio-content,
    .blog-content {
        padding: 24px;
    }
}

/* Print Styles */
@media print {
    header,
    .hamburger,
    .mobile-menu,
    .contact,
    footer {
        display: none;
    }
    
    .article {
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.7);
    }
    
    .contact-btn {
        border: 2px solid currentColor;
    }
}