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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #2a2a2a;
}

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

/* Top Header */
.top-header {
    background-color: #1a1a1a;
    padding: 15px 0;
    color: #ffffff;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 120px;
    height: 60px;
    position: relative;
}

.logo-icon img {
    max-width: 100%;
}

.logo-squares {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    width: 100%;
    height: 100%;
}

.square {
    width: 18px;
    height: 18px;
    display: block;
}

.square.yellow {
    background-color: #f4c430;
}

.square.blue {
    background-color: #4a7ba7;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
}

.work-schedule {
    font-size: 13px;
    color: #cccccc;
}

.work-schedule .phone-note {
    display: none;
}

.schedule-title {
    font-weight: 600;
    margin-bottom: 3px;
}

.schedule-time {
    color: #999;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-icon {
    font-size: 32px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.phone-label {
    font-size: 12px;
    color: #999;
}

.phone-number {
    font-size: 20px;
    font-weight: 700;
    color: #f4c430;
    text-decoration: none;
    display: block;
}

.phone-number:hover {
    color: #ffd700;
}

.phone-note {
    font-size: 11px;
    color: #999;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), 
                url('/wp-content/themes/artblock/images/banner-2.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: left;
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #ffffff;
}

.title-accent {
    color: #f4c430;
    font-size: 48px;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    color: #ffffff;
    font-style: italic;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #f4c430;
    color: #1a1a1a;
}

.btn-primary:hover {
    background-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 196, 48, 0.4);
}

.btn-white {
    background-color: #ffffff;
    color: #1a1a1a;
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-next {
    background-color: #4a7ba7;
    color: #ffffff;
}

.btn-next:hover {
    background-color: #f4c430;
}

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

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

.feature-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.5;
}

/* Calculator Section */
.calculator {
    padding: 60px 0;
    background-color: #f5f5f5;
    color: #333;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.4;
}

.title-highlight {
    color: #f4c430;
}

.calculator-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.form-step label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #4a7ba7;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: #ffffff;
    color: #333;
}

.why-choose .section-title {
    color: #1a1a1a;
}

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

.advantage-card {
    padding: 35px;
    background-color: #f9f9f9;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    background-color: #9d9d9d;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 123, 167, 0.3);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
    overflow: hidden;
}

.advantage-icon img {
    border-radius: 20px;
    max-width: 100%;
}

.advantage-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.advantage-card:hover p {
    color: #ffffff;
}

.cta-banner {
    background: #f5f5f5;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    color: #000;
}

.cta-banner h3 {
    font-size: 32px;
    margin-bottom: 25px;
}

.cta-banner .highlight {
    color: #f4c430;
}

.price-table-wrapper {
    overflow-x: auto;
    margin-top: 10px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.price-table thead tr {
    background-color: #4a7ba7;
    color: #ffffff;
}

.price-table th,
.price-table td {
    padding: 12px 18px;
    text-align: center;
    border-bottom: 1px solid #e8e8e8;
}

.price-table th:first-child,
.price-table td:first-child {
    text-align: left;
    font-weight: 600;
}

.price-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.price-table tbody tr:hover {
    background-color: #fff8e1;
}

.price-val {
    font-weight: 700;
    color: #e53935;
}

.price-old {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    margin-left: 4px;
}

.color-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
}

.color-thumb:hover {
    transform: scale(1.1);
}

.price-table td:first-child .color-cell span {
    font-weight: 600;
    color: #1a1a1a;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.gallery .section-title {
    color: #1a1a1a;
}

.gallery-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.gallery-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.gallery-item {
    min-width: 350px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-item img {
    max-width: 100%;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background-color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn.prev {
    left: -25px;
}

.slider-btn.next {
    right: -25px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #4a7ba7;
    width: 30px;
    border-radius: 6px;
}

/* Showroom Section */
.showroom {
    padding: 80px 0;
    background-color: #ffffff;
}

.showroom-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.showroom-form {
    max-width: 600px;
    margin: 0 auto 40px;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 15px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.showroom-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #f9f9f9;
    color: #2a2a2a;
    padding: 20px 30px;
    border-radius: 10px;
}

.info-icon {
    font-size: 36px;
}

/* Map Section */
.map-section {
    height: 400px;
    background-color: #e5e5e5;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b8c6db 0%, #f5f7fa 100%);
    font-size: 20px;
    color: #666;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    padding: 40px 0 20px;
    color: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo .logo {
    margin-bottom: 20px;
}

.footer-schedule {
    font-size: 13px;
    color: #999;
}

.footer-schedule div {
    margin-bottom: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
}

.footer-bottom a:hover {
    color: #f4c430;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #f4c430;
    color: #1a1a1a;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background-color: #ffd700;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(244, 196, 48, 0.4);
}

.scroll-top.show {
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .title-accent {
        display: block;
    }
    .top-header .phone-info {
        display: none;
    }
    .top-header .schedule-title {
        display: none;
    }
    .top-header .work-schedule {
        margin-top: -30px;
    }
    .work-schedule .phone-note {
        display: block;
    }
    .top-header .schedule-time {
        display: inline-block;
    }

    .header-left {
        flex-direction: column;
        gap: 20px;
        align-items: first baseline;
    }

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

    .title-accent {
        font-size: 36px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }
    .feature-item {
        display: flex;
        align-items: center;
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 28px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .calculator-form,
    .showroom-form {
        padding: 30px 20px;
    }

    .slider-btn {
        display: none;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .price-table .price-old {
        display: inline-block;
    }
    .cta-banner {
        padding: 50px 15px;
    }
}

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

/**************************\
  Basic Modal Styles
\**************************/

.modal {
  font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
  background-color: #1a1a1a;
  padding: 30px;
  max-width: 500px;
  max-height: 100vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.25;
  color: #00449e;
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
}

.modal__header .modal__close:before { content: "\2715"; }

.modal__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0,0,0,.8);
}

.modal__btn {
  font-size: .875rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  background-color: #e6e6e6;
  color: rgba(0,0,0,.8);
  border-radius: .25rem;
  border-style: none;
  border-width: 0;
  cursor: pointer;
  -webkit-appearance: button;
  text-transform: none;
  overflow: visible;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: -webkit-transform .25s ease-out;
  transition: transform .25s ease-out;
  transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  background-color: #00449e;
  color: #fff;
}



/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}

@keyframes mmfadeOut {
    from { opacity: 1; }
      to { opacity: 0; }
}

@keyframes mmslideIn {
  from { transform: translateY(15%); }
    to { transform: translateY(0); }
}

@keyframes mmslideOut {
    from { transform: translateY(0); }
    to { transform: translateY(-10%); }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}