/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 74px;
}

.logo img {
    height: 40px;
}

.nav-wrap {
    display: flex;
    white-space: nowrap;
    align-items: center;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #000;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--sub-cr);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid var(--bd-cr);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 8px 20px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown a:hover {
    background: #f3f4f6;
    color: var(--sub-cr);
}

.header-cta {
    display: flex;
    align-items: center;
    margin-left: 50px;
}

.btn-quote {
    background: var(--sub-cr);
    color: #fff;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    display: block;
    border: 2px solid transparent;

}

.btn-quote:hover {
    background: transparent;
    border: 2px solid var(--sub-cr);
    color: var(--sub-cr);
    transform: translateY(-2px);
    display: block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    margin-right: 15px;
    z-index: 10;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--sub-cr);
    transition: all 0.3s ease;
}

/* 메뉴가 열렸을 때 스크롤 방지 */
body.menu-open {
    overflow: hidden;
}

/* 메뉴가 열렸을 때 X 모양으로 변환 */
.menu-toggle.active {
    gap: 0;
    position: absolute;
    top: 30px;
    z-index: 1001;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(3px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-3px);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* 모바일 메뉴 박스 */
.mobile-nav-box {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background: #fff;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    padding-top: 60px;
}

.mobile-nav-box.active {
    left: 0;
}

/* 메뉴 아이템 스타일 */
.mobile-nav-item {
    border-bottom: 1px solid #eee;
}

.mobile-nav-link {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background: #e9ecef;
    color: #007bff;
}

/* 서브메뉴 (mobile-dropdown) */
.mobile-dropdown {
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.mobile-nav-item.active .mobile-dropdown {
    max-height: 200px;
    padding: 10px 0;
}

.mobile-dropdown a {
    display: block;
    padding: 8px 40px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mobile-dropdown a:hover {
    background: #f8f9fa;
    color: #007bff;
    padding-left: 45px;
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .mobile-nav {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    padding-top: 74px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: linear-gradient(135deg, rgba(37, 99, 235, 0.3) 0%, rgba(29, 78, 216, 0.2) 100%)*/
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    color: #fff;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.highlight {
    color: var(--main-cr);
}

.text-slider {
    position: relative;
    width: 268px;
    height: 60px;
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
    transform: translateY(9px);
}

.text-slider span {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(100%);
    animation: slideText 6s infinite;
}

.text-slider span:nth-child(1) {
    animation-delay: 0s;
}

.text-slider span:nth-child(2) {
    animation-delay: 2s;
}

.text-slider span:nth-child(3) {
    animation-delay: 4s;
}

/*.text-slider span:nth-child(4) {
  animation-delay: 6s;
}*/
@keyframes slideText {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }

    10% {
        opacity: 1;
        transform: translateY(0%);
    }

    25% {
        opacity: 1;
        transform: translateY(0%);
    }

    35% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--main-cr);
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--main-cr2);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--main-cr);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    display: block;
    margin-bottom: 8px;
    color: var(--main-cr2);
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}



/* Section Styles */
.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--sub-cr);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-cr);
    margin-bottom: 60px;
    line-height: 1.6;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: var(--bg-cr);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--bd-cr);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card .service-icon {
    width: 100px;
    height: 100px;
}

.service-card:nth-child(1) .service-icon {
    background: url(../images/service-icon.jpg) 341px -8px / 350px 350px;
}

.service-card:nth-child(2) .service-icon {
    background: url(../images/service-icon.jpg) 110px 226px / 350px 350px;
}

.service-card:nth-child(3) .service-icon {
    background: url(../images/service-icon.jpg) 341px 225px / 350px 350px;
}

.service-card:nth-child(4) .service-icon {
    background: url(../images/service-icon.jpg) 107px 109px / 350px 350px;
}



.service-icon {
    margin-bottom: 24px;
}

.service-icon img {
    width: 60px;
    height: 60px;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--sub-cr);
}

.service-card p {
    color: var(--gray-cr);
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 6px 0;
    color: var(--gray-cr2);
    font-size: 16px;
    position: relative;
    padding-left: 20px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--main-cr);
    font-weight: bold;
}

.service-link {
    color: var(--sub-cr);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-link span {
    display: inline-block;
    background: url(../images/arrow-basic.svg) no-repeat 50% 50% / cover;
    width: 45px;
    height: 10px;
}

.service-link:hover {
    color: var(--sub-cr2);
    gap: 15px;
}

.service-link:hover span {
    background: url(../images/arrow-active.svg) no-repeat 50% 50% / cover;
}

/* Portfolio Preview */
.portfolio-preview {
    padding: 100px 0;
}

.view-all-btn {
    background: var(--sub-cr);
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.view-all-btn:hover {
    background: #fff;
    border: 2px solid var(--sub-cr);
    color: var(--sub-cr);
}

.portfolio-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.portfolio-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--main-cr);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-info {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.portfolio-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.portfolio-info p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.portfolio-category {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: var(--sub-cr);
}

.why-choose-us .section-title {
    color: var(--sub-cr3);
}

.why-choose-us .section-description {
    color: #fff;
}


.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-description {
    font-size: 18px;
    color: var(--gray-cr);
    line-height: 1.7;
    margin-bottom: 40px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}


.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--main-cr);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.feature-content p {
    color: #f6f6f6;
    font-size: 14px;
    line-height: 1.5;
}

.why-choose-us {
    position: relative;
}

.why-choose-us .content-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    max-width: 800px;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-item {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--bd-cr);
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-cr2);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 14px;
    color: var(--gray-cr);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--main-cr) 0%, var(--main-cr2) 100%);
    background: var(--main-cr);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--sub-cr);
    color: #fff;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

/* Page Header */
.page-header {
    padding: 140px 0 80px;
    background: url(../images/banner_bg.png);
    background: #ebf6ff;
    ;
    text-align: center;
}

.breadcrumb {
    font-size: 14px;
    color: var(--gray-cr);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--sub-cr3);
    text-decoration: none;
}

.page-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    color: var(--sub-cr);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--gray-cr);
    line-height: 1.6;
}

/* Company Overview */
.company-overview {
    padding: 100px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.company-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-cr2);
    margin-bottom: 24px;
}

.company-values {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

.value-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 8px;
}

.value-item p {
    font-size: 14px;
    color: var(--gray-cr);
    line-height: 1.5;
}

.overview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.stat-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--bd-cr);
}

.stat-card .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--sub-cr);
    display: block;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 14px;
    color: var(--gray-cr);
}

/* History Section */
.history-section {
    padding: 100px 0;
    background: var(--bg-cr);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--bd-cr);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    width: 80px;
    height: 80px;
    background: var(--sub-cr);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--bd-cr);
    margin: 0 40px;
    flex: 1;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray-cr);
    line-height: 1.6;
}

/* Vision Section */
.vision-section {
    padding: 100px 0;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.vision-image {
    align-self: flex-end;
    margin: 0 auto;
}

.vision-item {
    margin-bottom: 40px;
}

.vision-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 12px;
}

.vision-item p {
    font-size: 16px;
    color: var(--gray-cr2);
    line-height: 1.7;
}

.values-list {
    list-style: none;
    margin-top: 16px;
}

.values-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gray-cr2);
    line-height: 1.6;
}

.vision-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: var(--bg-cr);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-member {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--bd-cr);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-photo {
    aspect-ratio: 1;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 30px;
}

.member-info h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 4px;
}

.member-position {
    font-size: 14px;
    color: var(--sub-cr);
    font-weight: 500;
    margin-bottom: 16px;
}

.member-description {
    font-size: 14px;
    color: var(--gray-cr);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--sub-cr);
    color: #fff;
    padding: 80px 0 30px;
}

.footer .side-assets {
    position: fixed;
    width: 50px;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-contact p {
    font-size: 14px;
    color: #d1d5db;
    margin-bottom: 8px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--main-cr2);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #9ca3af;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--main-cr2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero {
        height: auto;
        padding: 140px 0 80px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .text-slider {
        height: clamp(48px, 6vh, 93px);
        width: clamp(200px, 24vw, 358px);
    }

    .text-slider span {
        left: 0;
    }

    .content-grid,
    .overview-grid,
    .vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .portfolio-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .timeline:before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 80px;
    }

    .timeline-year {
        position: absolute;
        left: 0;
    }

    .timeline-content {
        margin: 0;
    }

    .why-choose-us {
        position: relative;
        padding-bottom: 150px;
    }

    .content-image {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 55%;
    }

}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .btn-quote {
        padding: 8px 22px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .text-slider {
        width: 145px;
        height: 38px;
        transform: translateY(8px);
    }

    .text-slider span {
        left: 0;
    }

    .hero-stats {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .portfolio-slider {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-buttons {
        align-items: center;
        justify-content: center;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .overview-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .page-title {
        font-size: 32px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .services-overview,
    .portfolio-preview,
    .testimonials,
    .cta-section,
    .company-overview,
    .history-section,
    .vision-section,
    .team-section {
        padding: 60px 0;
    }

    .why-choose-us {
        padding-bottom: 180px;
    }
}

/* Company Video Section */
.company-video {
    padding: 100px 0;
    background: var(--bg-cr);
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 16px;
}

.video-info p {
    font-size: 16px;
    color: var(--gray-cr);
    line-height: 1.7;
    margin-bottom: 30px;
}

.video-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-cr2);
}

.stat-icon {
    font-size: 18px;
}

/* Services Intro */
.services-intro {
    padding: 100px 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-description {
    font-size: 18px;
    color: var(--gray-cr);
    line-height: 1.7;
    margin-top: 20px;
}

.intro-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.intro-stat {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--bd-cr);
}

.intro-stat .stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--sub-cr);
    display: block;
    margin-bottom: 8px;
}

.intro-stat .stat-label {
    font-size: 14px;
    color: var(--gray-cr);
}

/* Service Detail */
.service-detail {
    padding: 100px 0;
}

.service-detail.alt {
    background: var(--bg-cr);
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.service-badge {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--sub-cr);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.service-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--sub-cr);
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    color: var(--gray-cr);
    line-height: 1.7;
    margin-bottom: 40px;
}

.service-features {
    margin-bottom: 40px;
}

.service-features h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 16px 0;
    border-bottom: 1px solid var(--bd-cr);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 4px;
    padding-left: 18px;
}

.features-list span {
    font-size: 14px;
    color: var(--gray-cr);
    line-height: 1.5;
}

.service-process {
    margin-bottom: 40px;
}

.service-process h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 20px;
}

.process-steps {
    display: grid;
    gap: 20px;
}

.process-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--main-cr2);
    color: var(--sub-cr);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: var(--gray-cr);
    line-height: 1.5;
}

.service-tech h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 20px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: var(--bd-cr);
    color: var(--gray-cr2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.service-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: auto;
}

.service-examples h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 20px;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.example-item {
    text-align: center;
}

.example-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 8px;
}

.example-item span {
    font-size: 12px;
    color: var(--gray-cr);
}

/* Service Packages */
.service-packages {
    padding: 100px 0;
    background: var(--bg-cr);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.package-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--bd-cr);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
    border: 2px solid var(--sub-cr);
    transform: scale(1.05);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sub-cr);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.package-header {
    text-align: center;
    margin-bottom: 30px;
}

.package-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 16px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.price {
    font-size: 32px;
    font-weight: 800;
    color: var(--sub-cr);
}

.period {
    font-size: 14px;
    color: var(--gray-cr);
}

.package-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.package-features li {
    padding: 12px 0;
    font-size: 14px;
    color: var(--gray-cr2);
    position: relative;
    padding-left: 24px;
}

.package-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--main-cr);
    font-weight: bold;
}

.package-btn {
    display: block;
    width: 100%;
    background: var(--sub-cr);
    color: #fff;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.package-btn:hover {
    background: var(--sub-cr2);
}

/* Responsive for new sections */
@media (max-width: 1024px) {

    .video-container,
    .intro-content,
    .service-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .package-card.featured {
        transform: none;
    }

    .example-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .video-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }

    .video-stat {
        flex: 1;
        min-width: 150px;
    }

    .service-detail {
        padding: 60px 0;
    }

    .service-title {
        font-size: 28px;
    }

    .process-steps {
        gap: 16px;
    }

    .tech-tags {
        gap: 6px;
    }

    .tech-tag {
        font-size: 11px;
        padding: 4px 8px;
    }
}

/* Portfolio Hero */
.portfolio-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.portfolio-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.portfolio-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*.portfolio-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(29, 78, 216, 0.6) 100%);
}*/

.portfolio-hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.portfolio-hero-title {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.portfolio-hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Portfolio Tabs */
.portfolio-tabs {
    padding: 60px 0 40px;
    background: #fff;
}

.tabs-header {
    text-align: center;
    margin-bottom: 40px;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    background: #f3f4f6;
    border-radius: 8px;
    padding: 4px;
    max-width: 600px;
    margin: 0 auto;
}

.tab-btn {
    text-align: center;
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-cr);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--sub-cr);
    color: #fff;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.tab-btn:hover:not(.active) {
    background: var(--bd-cr);
    color: #374151;
}

/* Portfolio Filters */
.portfolio-filters {
    padding: 40px 0;
    background: var(--bg-cr);
    border-bottom: 1px solid var(--bd-cr);
}

.filters-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
}

.filter-controls {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.filter-select {
    padding: 10px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #fff;
    font-size: 14px;
    color: #374151;
    min-width: 150px;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: var(--sub-cr);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.filter-controls {
    gap: 12px;
}

.search-group {
    display: flex;
    gap: 8px;
}

.search-input {
    padding: 10px 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    min-width: 200px;
}

.search-input:focus {
    outline: none;
    border-color: var(--sub-cr);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-btn {
    padding: 10px 20px;
    background: var(--sub-cr);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    background: var(--sub-cr2);
}

/* Portfolio Categories */
.portfolio-categories {
    padding: 40px 0;
    background: #fff;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-tag {
    padding: 8px 16px;
    background: #f3f4f6;
    color: var(--gray-cr);
    border: 1px solid var(--bd-cr);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-tag:hover {
    background: var(--bd-cr);
    color: #374151;
}

.category-tag.active {
    background: var(--main-cr2);
    color: #000;
    border-color: var(--main-cr2);
}

.portfolio-setting {
    padding: 60px 0;
    background: #fff;
}

/* Portfolio Grid */
.portfolio-grid-section {
    padding: 60px 0;
    background: #fff;
}

.portfolio-grid-section .no-data {
  padding: 40px;
  margin: 20px 0;
  color: #666;
  font-size: 1.2rem;
  text-align: center;
  font-weight: 500;
  animation: fadeIn 0.3s ease-in-out;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.portfolio-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--bd-cr);
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.portfolio-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--main-cr);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-info {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.portfolio-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.portfolio-info p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 16px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.portfolio-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid #fff;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.portfolio-link:hover {
    background: #fff;
    color: var(--sub-cr);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-meta {
    padding: 20px;
}

.portfolio-meta h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 8px;
}

.portfolio-category {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

.portfolio-year {
    font-size: 14px;
    color: var(--gray-cr);
    float: right;
}

/* Load More */
.load-more-section {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    padding: 16px 32px;
    background: var(--sub-cr);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: var(--sub-cr2);
    transform: translateY(-2px);
}

/* Portfolio Stats */
.portfolio-stats {
    padding: 80px 0;
    background: var(--bg-cr);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #fff;
}

.stat-item .stat-number {
    font-size: 52px;
    font-weight: 800;
    color: var(--sub-cr);
    display: block;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}

.portfolio-stats .stat-item {
    border: 1px solid var(--bd-cr);
}

.portfolio-stats .stat-item .stat-label {
    color: var(--gray-cr);
    font-weight: 500;
}

/* Responsive Design for Portfolio */
@media (max-width: 1024px) {
    .filters-row {
        flex-direction: column;
        gap: 20px;
    }

    .filter-controls {
        justify-content: center;
    }

    .search-group {
        justify-content: center;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .tabs-nav {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .portfolio-hero {
        height: 50vh;
        padding-top: 80px;
    }

    .tabs-nav {
        flex-direction: column;
        gap: 8px;
    }

    .tab-btn {
        padding: 12px 20px;
    }

    .filter-controls {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .search-group {
        width: 100%;
    }

    .filter-group {
        width: 100%;
    }

    .filter-select,
    .search-input {
        min-width: auto;
        width: 100%;
    }

    .categories-grid {
        justify-content: flex-start;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-item {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 5%;
        padding: 20px;
    }

    .stat-item .stat-number {
        font-size: 42px;
        margin: 0;
    }

    .stat-item .stat-label {
        font-size: 16px;
        opacity: 0.9;
    }

    .portfolio-tabs,
    .portfolio-filters,
    .portfolio-categories,
    .portfolio-grid-section,
    .portfolio-stats {
        padding: 34px 0;
    }
}

@media (max-width: 480px) {
    .portfolio-hero-title {
        font-size: 28px;
    }

    .portfolio-hero-subtitle {
        font-size: 16px;
    }

    .category-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .portfolio-info h3 {
        font-size: 18px;
    }

    .portfolio-meta {
        padding: 16px;
    }

    .stat-item {
        padding: 30px 15px;
    }

    .stat-item .stat-number {
        font-size: 36px;
    }
}

/* Contact Quick Info */
.contact-quick-info {
    padding: 80px 0;
    background: var(--bg-cr);
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.quick-info-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--bd-cr);
    transition: all 0.3s ease;
}

.quick-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.info-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 8px;
}

.info-content p {
    font-size: 16px;
    color: var(--sub-cr);
    font-weight: 500;
    margin-bottom: 4px;
}

.info-content p a {
    color: var(--sub-cr);
    text-decoration: none;
}

.info-content p a:hover {
    text-decoration: underline;
}

.info-content span {
    font-size: 14px;
    color: var(--gray-cr);
}

/* Contact Main */
.contact-main {
    padding: 100px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
}

/* Contact Form */
.contact-form-section {
    background: #fff;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--sub-cr);
    margin-bottom: 16px;
}

.form-header p {
    font-size: 16px;
    color: var(--gray-cr);
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-section {
    padding: 30px;
    background: var(--bg-cr);
    border-radius: 12px;
    border: 1px solid var(--bd-cr);
}

.form-section h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--sub-cr);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 16px;
    color: #374151;
    background: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sub-cr);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-cr2);
    line-height: 1.5;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    display: none;
}

.privacy-link {
    color: var(--sub-cr);
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

.btn-submit {
    background: var(--sub-cr);
    color: #fff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--sub-cr2);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-arrow {
    transform: translateX(4px);
}

.field-error {
    color: #ef4444;
    font-size: 12px;
    margin-top: 4px;
}

/* Contact Info Sidebar */
.contact-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--bd-cr);
}

.contact-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.method-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 8px;
    flex-shrink: 0;
}

.method-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 4px;
}

.method-info p {
    font-size: 16px;
    color: var(--sub-cr);
    font-weight: 500;
    margin-bottom: 4px;
}

.method-info p a {
    color: var(--sub-cr);
    text-decoration: none;
}

.method-info p a:hover {
    text-decoration: underline;
}

.method-info span {
    font-size: 14px;
    color: var(--gray-cr);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--sub-cr);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 4px;
}

.step-content p {
    font-size: 14px;
    color: var(--gray-cr);
    line-height: 1.5;
}

.why-barom-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-barom-list li {
    font-size: 14px;
    color: var(--gray-cr2);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--bg-cr);
}

.map-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.map-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.map-info-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--bd-cr);
}

.map-info-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 16px;
}

.map-info-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.map-info-card li {
    font-size: 14px;
    color: var(--gray-cr2);
    line-height: 1.5;
}

.map-info-card strong {
    color: var(--sub-cr);
    font-weight: 600;
}

.map-container {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--bd-cr);
}

.map-placeholder {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3f4f6 0%, var(--bd-cr) 100%);
}

.map-mock {
    text-align: center;
    color: var(--gray-cr);
}

.map-pin {
    font-size: 48px;
    margin-bottom: 16px;
}

.map-mock h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 8px;
}

.map-mock p {
    font-size: 14px;
    color: var(--gray-cr);
    margin-bottom: 20px;
    line-height: 1.5;
}

.map-btn {
    background: var(--sub-cr);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-btn:hover {
    background: var(--sub-cr2);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.faq-category h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--sub-cr);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--bd-cr);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-cr);
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--sub-cr);
    line-height: 1.5;
}

.faq-toggle {
    font-size: 20px;
    font-weight: 600;
    color: var(--sub-cr);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 10px 15px 15px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--gray-cr);
    line-height: 1.6;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.success-content {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.success-icon {
    width: 60px;
    height: 60px;
    background: var(--main-cr);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.success-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--sub-cr);
    margin-bottom: 12px;
}

.success-content p {
    font-size: 14px;
    color: var(--gray-cr);
    line-height: 1.5;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design for Contact */
@media (max-width: 1024px) {
    .quick-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .map-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .quick-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-quick-info,
    .contact-main,
    .map-section,
    .faq-section {
        padding: 60px 0;
    }

    .form-section {
        padding: 20px;
    }

    .contact-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .quick-info-item {
        padding: 20px 15px;
    }

    .info-icon {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .form-header h2 {
        font-size: 24px;
    }

    .form-section h4 {
        font-size: 18px;
    }

    .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .map-placeholder {
        height: 300px;
    }

    .success-content {
        margin: 20px;
        padding: 30px 20px;
    }
}