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

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1920px;
    margin: 0 auto;
    background: white;
    position: relative;
}

.content-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #FFD700;
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo-icon {
    width: 65px;
    height: 45px;
    background: url('/logo.png') no-repeat center;
    background-size: contain;
}

.company-info h1 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 2px;
}

.company-name {
    font-size: 19px;
    font-weight: 900;
}

.contact-info {
    text-align: right;
}

.contact-label {
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 5px;
}

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

.phone-icon {
    width: 40px;
    height: 27px;
    background: url('/call.png') no-repeat center;
    background-size: contain;
}

.phone-number {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.phone-hours {
    font-size: 13px;
    font-weight: 900;
    margin-top: 5px;
}

/* Navigation */
.navigation {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-item {
    font-size: 16px;
    font-weight: 900;
    color: black;
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: #333;
}
/* Burger Icon */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.burger span {
  width: 25px;
  height: 3px;
  background-color: #000;
  display: block;
  border-radius: 2px;
}

/* Mobile styles */
@media (max-width: 1024px) {
  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .contact-info {
    text-align: left;
    width: 100%;
  }

  .burger {
    display: flex;
    margin-left: auto;
  }

  .navigation {
    display: none;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding-top: 10px;
  }

  .navigation.active {
    display: flex;
  }

  .nav-item {
    padding: 10px 0;
    border-top: 1px solid #ccc;
  }
}

/* Hero Section */
.hero-section {
    background: #FFD700;
    min-height: 660px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.hero-slider {
    display: flex;
    width: max-content;
    animation: slide 20s linear infinite;
}

.hero-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 736px;
    height: 516px;
    background: transparent;
    margin: 0 10px;
    gap: 30px;
}

.hero-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
}



.hero-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

.hero-control {
  background-color: #FFD700; /* Yellow */
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #000;
}

.hero-control:hover {
  opacity: 0.85;
}


/* Black square icon */
.square-icon {
    width: 20px;
    height: 20px;
    background: black;
    border-radius: 2px;
    margin-top: 30px;
}


/* Inquiry Stats Section */
.inquiry-stats {
    background: white;
    padding: 50px 0;
}

.stats-container {
    max-width: 750px;
    margin: 0 auto;
}

.stats-header {
    text-align: center;
    margin-bottom: 30px;
}

.stats-note {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 10px;
}

.stats-highlight {
    color: #FF0000;
    font-weight: 900;
}

.stats-box {
    border: 5px solid black;
    border-left: none;
    border-right: none;
    padding: 30px;
    background: white;
}

.month-section {
    margin-bottom: 30px;
}

.month-header {
    background: #FFD700;
    text-align: center;
    padding: 12px;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 20px;
}

.stats-row {
    display: flex;
    border-bottom: 1px solid #ddd;
}

.stats-item {
    flex: 1;
    text-align: center;
    padding: 15px;
    border-right: 1px solid black;
    font-size: 20px;
    font-weight: 900;
}

.stats-item:last-child {
    border-right: none;
}

.stats-number {
    color: #FF0000;
    font-weight: 900;
}

.stats-footer {
    text-align: right;
    font-size: 15px;
    font-weight: 900;
    margin-top: 20px;
}

/* Main Content Layout */
.main-content {
    display: flex;
    gap: 50px;
    padding: 50px 0;
    max-width: 1280px;
    margin: 0 auto;
}

.content-left {
    flex: 1;
    max-width: 750px;
}

.sidebar {
    width: 370px;
    flex-shrink: 0;
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-title-box {
    border-left: 8px solid #FFD700;
    border-top: 8px solid #FFD700;
    padding: 20px 0 0 28px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 10px;
}

.section-underline {
    height: 5px;
    background: black;
    margin-left: 20px;
}

.section-description {
    font-size: 13px;
    font-weight: 900;
    color: #AAAAAA;
    line-height: 1.4;
}

/* Article Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.article-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-image {
    width: 100%;
    height: 245px;
    background-size: cover;
    border-radius: 8px;
}


.article-card:nth-of-type(1) .article-image {
    background: url('/article1.png') no-repeat center;
}

.article-card:nth-of-type(2) .article-image {
    background: url('/article2.png') no-repeat center;
}

.article-card:nth-of-type(3) .article-image {
    background: url('/article3.png') no-repeat center;
}

.article-card:nth-of-type(4) .article-image {
    background: url('/article4.png') no-repeat center;
}

.article-card:nth-of-type(5) .article-image {
    background: url('/article5.png') no-repeat center;
}

.article-card:nth-of-type(6) .article-image {
    background: url('/article6.png') no-repeat center;
}



.article-content {
    padding: 14px 0;
}

.article-title {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 15px;
    color: black;
}

.article-date {
    font-size: 15px;
    font-weight: 900;
    color: #AAAAAA;
    text-align: right;
}

.view-all-link {
    text-align: center;
    margin-top: 30px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 900;
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-all-btn:hover {
    color: #FFD700;
}

/* Sidebar Styles */
.sidebar-section {
    margin-bottom: 50px;
}

.sidebar-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #AAAAAA;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 2.4px;
}

.sidebar-ads {
    margin-bottom: 30px;
}

.sidebar-ad{
    width: 100%;
    height: 121px;
    background-size: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}
.sidebar-ad:nth-child(1) {
        background: url('/about2.png') no-repeat center;

}
.sidebar-ad:nth-child(2) {
        background: url('/about1.png') no-repeat center;

}

.sidebar-lastad {
        width: 100%;
    height: 121px;
    background-size: cover;
    border-radius: 8px;
    margin-bottom: 25px;
        background: url('/about3.png') no-repeat center;

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

.sidebar-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.sidebar-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.sidebar-image {
    width: 157px;
    height: 118px;
    background-size: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.sidebar-item:nth-of-type(1) .sidebar-image {
    background: url('/article1.png') no-repeat center;
}
.sidebar-item:nth-of-type(2) .sidebar-image {
    background: url('/article2.png') no-repeat center;
}
.sidebar-item:nth-of-type(3) .sidebar-image {
    background: url('/article3.png') no-repeat center;
}
.sidebar-item:nth-of-type(4) .sidebar-image {
    background: url('/article4.png') no-repeat center;
}
.sidebar-item:nth-of-type(5) .sidebar-image {
    background: url('/article5.png') no-repeat center;
}
.sidebar-item:nth-of-type(6) .sidebar-image {
    background: url('/article6.png') no-repeat center;
}

.sidebar-content {
    flex: 1;
}

.sidebar-item-title {
    font-size: 15px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 10px;
    color: black;
}

.sidebar-item-date {
    font-size: 15px;
    font-weight: 900;
    color: #AAAAAA;
}

/* Service Section */
.service-section {
    background: #2F3133;
    padding: 80px 0;
    color: white;
}

.service-section .section-title-box {
    border-color: #FFD700;
}

.service-section .section-title,
.service-section .section-subtitle {
    color: white;
}

.service-section .section-underline {
    background: white;
}

.service-section .section-description {
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px;
    margin-top: 70px;
}

.service-card {
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    aspect-ratio: 370 / 259;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 14px;
    background-color: #fff; /* optional fallback bg */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* shows full image without cropping */
    display: block;
}



.service-title {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.4;
    color: white;
    margin-bottom: 15px;
}

.service-date {
    font-size: 15px;
    font-weight: 900;
    color: white;
    text-align: right;
}

/* Works Section */
.works-section {
    background: white;
    padding: 80px 0;
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 70px;
}

.work-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.work-card:hover {
    transform: translateY(-5px);
}

.work-image {
    width: 100%;
    height: 261px;
    background-size: cover;
    border-radius: 8px;
    margin-bottom: 14px;
}

.work-card:nth-of-type(1) .work-image {
    background-image: url('/update1.png');
}

.work-card:nth-of-type(2) .work-image {
    background-image: url('/update2.png');
}

.work-card:nth-of-type(3) .work-image {
    background-image: url('/update3.png');
}

.work-card:nth-of-type(4) .work-image {
    background-image: url('/update4.png');
}

.work-card:nth-of-type(5) .work-image {
    background-image: url('/update5.png');
}

.work-card:nth-of-type(6) .work-image {
    background-image: url('/update6.png');
}


.work-title {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 15px;
    color: black;
}

.work-date {
    font-size: 15px;
    font-weight: 900;
    color: #AAAAAA;
    text-align: right;
}

/* Interview Section */
.interview-section {
    background: white;
    padding: 80px 0;
}
/* Main Content */
.main-content {
    padding: 40px 0;
}

.section {
    margin-bottom: 80px;
}

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

.section-title-box {
    position: relative;
    margin-bottom: 20px;
}

.section-title {
    font-size: 30px;
    font-weight: 900;
    color: #333;
    border-left: 8px solid #FFD700;
    border-top: 8px solid #FFD700;
    padding: 8px 28px;
    display: inline-block;
    background: white;
}

.section-subtitle {
    display: flex;
    align-items: center;
    margin-top: 10px;
    padding-left: 28px;
}

.section-subtitle span {
    font-size: 20px;
    font-weight: 900;
    margin-right: 10px;
}

.underline {
    height: 5px;
    background: #333;
    flex: 1;
    max-width: 140px;
}

.section-description {
    color: #AAA;
    font-size: 13px;
    font-weight: 900;
    margin-left: 270px;
}

/* Content Blocks */
.content-block {
    margin-bottom: 60px;
}

.block-title {
    font-size: 20px;
    font-weight: 900;
    color: #333;
    margin-bottom: 15px;
}

.title-line {
    display: flex;
    margin-bottom: 30px;
}

.line-yellow {
    width: 260px;
    height: 3px;
    background: #FFD700;
}

.line-black {
    flex: 1;
    height: 3px;
    background: #333;
}

.content-with-image {
    display: flex;
    gap: 55px;
    align-items: flex-start;
}

.text-content {
    flex: 1;
    max-width: 610px;
}

.text-content p {
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 350;
    line-height: 2;
}

.philosophy-title {
    font-size: 18px;
    font-weight: 900;
    text-decoration: underline;
    margin: 30px 0;
    text-align: center;
}

.image-placeholder {
    flex-shrink: 0;
}

.image-placeholder img {
    width: 500px;
    height: 375px;
    object-fit: cover;
    border-radius: 8px;
}

/* Company Info Table */
.company-info-table {
    background: white;
}

.info-row {
    display: flex;
    border-bottom: 1px solid #AAA;
    min-height: 87px;
    align-items: center;
    padding: 20px 0;
}

.info-label {
    width: 250px;
    font-size: 18px;
    font-weight: 900;
    padding-left: 80px;
    flex-shrink: 0;
}

.info-value {
    font-size: 18px;
    font-weight: 350;
    line-height: 2;
    padding-left: 40px;
    flex: 1;
}

/* History Table */
.history-table {
    background: white;
}

.history-row {
    display: flex;
    border-bottom: 1px solid #AAA;
    min-height: 87px;
    align-items: center;
    padding: 20px 0;
}

.history-date {
    width: 250px;
    font-size: 18px;
    font-weight: 900;
    padding-left: 80px;
    flex-shrink: 0;
}

.history-event {
    font-size: 18px;
    font-weight: 350;
    padding-left: 40px;
    flex: 1;
}

/* Access Map */
.access-note {
    font-size: 15px;
    font-weight: 350;
    margin-bottom: 35px;
    line-height: 2;
}

.map-section {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.map-placeholder {
    width: 610px;
    height: 500px;
    background: #E5E3DF;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

/* ✅ Make iframe fill entire container */
.map-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 0;
}

.map-info-box {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 284px;
    background: white;
    padding: 12px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 1; /* ✅ Above the map */
}

.map-info-box h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.map-info-box p {
    font-size: 12px;
    color: #5B5B5B;
    margin-bottom: 8px;
    line-height: 1.4;
}

.map-link {
    font-size: 12px;
    color: #1A73E8;
    text-decoration: none;
}

.map-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    z-index: 1; /* ✅ Above the map */
}

.map-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.map-btn:first-child {
    border-bottom: 1px solid #E6E6E6;
}

.building-image img {
    width: 580px;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.building-note {
    font-size: 15px;
    font-weight: 350;
    text-align: right;
    margin-top: 10px;
}

/* Page Header */
.page-header {
    margin-bottom: 60px;
}

.section-title-box {
    position: relative;
    margin-bottom: 20px;
}

.page-title {
    font-size: 30px;
    font-weight: 900;
    color: #333;
    border-left: 8px solid #FFD700;
    border-top: 8px solid #FFD700;
    padding: 8px 28px;
    display: inline-block;
    background: white;
    margin: 0;
}

.section-subtitle {
    display: flex;
    align-items: center;
    margin-top: 10px;
    padding-left: 28px;
}

.section-subtitle span {
    font-size: 20px;
    font-weight: 900;
    margin-right: 10px;
}

.underline {
    height: 5px;
    background: #333;
    flex: 1;
    max-width: 152px;
}

.page-description {
    color: #AAA;
    font-size: 13px;
    font-weight: 900;
    margin-left: 270px;
    line-height: 1.4;
}

/* Contact Info Text */
.contact-info-text {
    text-align: center;
    margin-bottom: 60px;
}

.contact-info-text p {
    font-size: 18px;
    font-weight: 900;
    line-height: 2;
    color: #333;
}

/* Form Container */
.form-container {
    background: white;
    margin-bottom: 60px;
}

.contact-form {
    max-width: 1024px;
    margin: 0 auto;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

.required {
    color: #FF0000;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    font-weight: 700;
    margin-left: 5px;
}

/* Form Inputs */
.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 11px;
    border: 1px solid #AAA;
    border-radius: 4px;
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    background: white;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FFD700;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #E0E0E0;
}

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

/* Privacy Section */
.privacy-section {
    margin-bottom: 30px;
}

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

.privacy-content {
    border: 1px solid #AAA;
    border-radius: 4px;
    padding: 11px;
    background: white;
    max-height: 200px;
    overflow-y: auto;
}

.privacy-content h4 {
    font-size: 15px;
    font-weight: 350;
    color: #333;
    margin-bottom: 20px;
    line-height: 2;
}

.privacy-content p {
    font-size: 15px;
    font-weight: 350;
    color: #333;
    line-height: 2;
    margin-bottom: 20px;
}

/* Consent Checkbox */
.consent-group {
    margin-bottom: 40px;
}

.consent-checkbox {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    line-height: 1.4;
}

.consent-checkbox input[type="checkbox"] {
    appearance: none;
    width: 13px;
    height: 13px;
    border: 1px solid #767676;
    border-radius: 2.5px;
    background: white;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
}

.consent-checkbox input[type="checkbox"]:checked {
    background: #FFD700;
    border-color: #FFD700;
}

.consent-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 1px;
    color: white;
    font-size: 10px;
    font-weight: bold;
}

/* Submit Button */
.submit-group {
    text-align: center;
}

.submit-btn {
    background: #333;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 14px 84px;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
}

.submit-btn:hover {
    background: #555;
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Info Card */
.info-card {
    margin-top: 100px;
    max-width: 393px;
    margin-left: auto;
    margin-right: auto;
}

.info-card-content {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.info-image {
    width: 100%;
    height: 275px;
    object-fit: cover;
}

.info-text {
    padding: 14px 0;
    position: relative;
}

.info-text h3 {
    font-size: 16px;
    font-weight: 900;
    color: #333;
    line-height: 1.4;
    padding-right: 35px;
}

.info-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 25px;
    color: #333;
}


.interview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 70px;
}

.interview-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.interview-card:hover {
    transform: translateY(-5px);
}

.interview-image {
    width: 100%;
    height: 242px;
    background-size: cover;
    border-radius: 8px;
    margin-bottom: 14px;
}
.interview-card:nth-of-type(1) .interview-image {
    background-image: url('/interview1.png');
}

.interview-card:nth-of-type(2) .interview-image {
    background-image: url('/interview2.png');
}

.interview-card:nth-of-type(3) .interview-image {
    background-image: url('/interview3.png');
}

.interview-title {
    font-size: 16px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 15px;
    color: black;
}

.interview-date {
    font-size: 15px;
    font-weight: 900;
    color: #AAAAAA;
    text-align: right;
}

/* Footer */
.footer {
  background: white;
  padding: 100px 0 50px;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}



.footer-intro {
  display: flex;
  align-items: center;
  justify-content: space-between; /* distributes space left/right */
  gap: 40px;
  flex-wrap: wrap;
  margin: 0 auto 50px;
  max-width: 1000px; /* center align within page */
}

.footer-text {
  flex: 1;
  min-width: 300px;
}

.footer-title {
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 16px;
  font-weight: 350;
  line-height: 2;
  max-width: 450px;
}

.footer-logo {
  width: 350px;
  height: 139px;
  background: url('/footer.png') no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}



.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-company {
    flex: 1;
    min-width: 200px;
}

.company-logo {
    width: 150px;
    height: 23px;
    background: url('/FootLogo.png') no-repeat center;
    background-size: contain;
    margin-bottom: 20px;
}

.company-details {
    font-size: 14px;
    font-weight: 900;
    line-height: 2;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    font-size: 15px;
    font-weight: 900;
    color: black;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #FFD700;
}

.footer-ad {
    width: 370px;
    height: 121px;
    background: url('/about1.png') no-repeat center;
    background-size: cover;
    border-radius: 8px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.copyright {
    font-size: 14px;
    font-weight: 900;
    color: black;
}

/* Bottom Gradient */
.bottom-gradient {
    height: 160px;
    background: linear-gradient(0deg, #FFD700 0%, #FFF7CC 78%, rgba(255, 247, 204, 0) 100%);
}

/* Responsive Design */
@media (max-width: 1280px) {
    .content-wrapper {
        padding: 0 30px;
    }
    
    .hero-controls {
        gap: 200px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .navigation {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .main-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .sidebar {
        width: 100%;
    }
    
    .articles-grid,
    .services-grid,
    .works-grid,
    .interview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 30px;
    }
    
    .hero-controls {
        gap: 100px;
    }
}

@media (max-width: 480px) {
    .phone-number {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .stats-item {
        font-size: 16px;
        padding: 10px;
    }
    
    .article-title,
    .service-title,
    .work-title,
    .interview-title {
        font-size: 14px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .navigation {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .content-with-image {
        flex-direction: column;
        gap: 30px;
    }
    
    .image-placeholder img {
        width: 100%;
        max-width: 500px;
        height: auto;
    }
    
    .map-section {
        flex-direction: column;
    }
    
    .map-placeholder {
        width: 100%;
    }
    
    .building-image img {
        width: 100%;
        height: auto;
    }
    

}

@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
        padding: 6px 20px;
    }
    
    .section-description {
        margin-left: 0;
        text-align: left;
        margin-top: 20px;
    }
    
    .block-title {
        font-size: 18px;
    }
    
    .text-content p {
        font-size: 16px;
    }
    
    .philosophy-title {
        font-size: 16px;
    }
    
    .info-row, .history-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px 0;
    }
    
    .info-label, .history-date {
        width: 100%;
        padding-left: 20px;
        font-size: 16px;
    }
    
    .info-value, .history-event {
        padding-left: 20px;
        font-size: 16px;
    }
    

}

@media (max-width: 480px) {
    .section-title {
        font-size: 20px;
        padding: 5px 15px;
        border-left: 6px solid #FFD700;
        border-top: 6px solid #FFD700;
    }
    
    .text-content p {
        font-size: 14px;
        line-height: 1.8;
    }
    

}

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

/* Focus Styles for Accessibility */
a:focus, button:focus {
    outline: 2px solid #FFD700;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header, .footer, .navigation {
        display: none;
    }
    
    .main-content {
        padding: 0;
    }
    
    .image-placeholder img {
        max-width: 100%;
        height: auto;
    }
}

/* Animation for smooth interactions */
.content-block {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.content-block:nth-child(1) { animation-delay: 0.1s; }
.content-block:nth-child(2) { animation-delay: 0.2s; }
.content-block:nth-child(3) { animation-delay: 0.3s; }
.content-block:nth-child(4) { animation-delay: 0.4s; }
.content-block:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects */
.info-row:hover, .history-row:hover {
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.map-btn:hover {
    background-color: #f5f5f5;
    transform: scale(1.05);
    transition: all 0.2s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #FFD700;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E6C200;
}
    /* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .contact-section {
        padding: 0 15px;
    }
    
    .page-description {
        margin-left: 0;
        text-align: center;
        margin-top: 20px;
    }
    

}

@media (max-width: 768px) {
    .page-title {
        font-size: 24px;
    }
    
    .contact-info-text p {
        font-size: 16px;
    }
    
    .form-label {
        font-size: 16px;
    }
    
    .form-input,
    .form-textarea {
        font-size: 14px;
    }
    
    .navigation {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .footer-logo img,
    .footer-cta img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 0 10px;
    }
    
    .submit-btn {
        padding: 12px 40px;
        font-size: 16px;
    }
    
    .phone-number {
        font-size: 24px;
    }
    
    .company-name {
        font-size: 16px;
    }
}