[data-theme="dark"] .hero-content {
    color: #ffffff;
}

[data-theme="dark"] .hero-title {
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 1px 1px 4px rgba(0, 0, 0, 0.9);
}

[data-theme="dark"] .hero-subtitle {
    color: #ffffff;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8), 0px 0px 3px rgba(0, 0, 0, 0.9);
}

[data-theme="dark"] .hero-stats .stat-item {
    color: #ffffff;
}

[data-theme="dark"] .hero-stats .stat-number {
    color: var(--info-color);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

[data-theme="dark"] .hero-stats .stat-label {
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

[data-theme="dark"] .hero-fade {
    background: linear-gradient(transparent, var(--background-color));
}

[data-theme="dark"] .why-item {
    background: var(--white-color);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

[data-theme="dark"] .about-image {}

[data-theme="dark"] .branch-item {
    background: var(--white-color);
}

[data-theme="dark"] .map-wrapper {
    box-shadow: 0 20px 50px var(--shadow-medium);
}

[data-theme="dark"] .map-btn {
    background: var(--white-color);
    color: var(--text-color);
    border-color: var(--border-color);
}

[data-theme="dark"] .map-btn:hover {
    background: var(--hover-bg);
    border-color: var(--info-color);
}

.main {
    margin-top: 0;
    padding-top: 0;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: -70px;
    padding-top: 70px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8), 1px 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8), 0px 0px 3px rgba(0, 0, 0, 0.9);
    line-height: 1.6;
}

.hero-btn {
    background: var(--info-color);
    color: var(--white-color);
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.4);
}

.hero-stats {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 10rem;
    margin-top: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    color: #ffffff;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.5rem;
    color: var(--info-color);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(transparent, var(--background-color));
    z-index: 5;
}

.why-section {
    padding: 80px 0;
    background: var(--background-color);
    width: 100%;
}

.why-section .container {
    max-width: 100%;
    padding: 0 20px;
}

.section-header {
    text-align: right;
    margin-bottom: 60px;
    position: relative;
    padding-right: 20px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 20px;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--info-color), var(--secondary-color));
    border-radius: 2px;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.section-header h2::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--info-color);
    border-radius: 50%;
    opacity: 0.3;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 100%;
    padding: 0 20px;
}

.why-item {
    background: var(--white-color);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px var(--shadow-light);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(135, 206, 235, 0.1), transparent);
    transition: left 0.6s ease;
}

.why-item:hover::before {
    left: 100%;
}

.why-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.why-grid:hover .why-item:not(:hover) {
    opacity: 0.3;
    transform: scale(0.95);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--info-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white-color);
    transition: all 0.4s ease;
}

.why-icon svg {
    width: 35px;
    height: 35px;
}

.why-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.why-item:hover h3 {
    color: var(--info-color);
}

.why-item p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.why-item:hover p {
    color: var(--text-color);
}

.about-section {
    padding: 100px 0;
    width: 100%;
}

.about-section .container {
    max-width: 100%;
    padding: 0 20px;
}

.about-section .section-header {
    text-align: right;
    margin-bottom: 80px;
    position: relative;
    padding-right: 20px;
}

.about-section .section-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 20px;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--info-color), var(--secondary-color));
    border-radius: 2px;
}

.about-section .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.about-section .section-header h2::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--info-color);
    border-radius: 50%;
    opacity: 0.3;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 500px;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-text {
    padding: 40px 0;
}

.about-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-features {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--text-color);
}

.feature-icon {
    width: 25px;
    height: 25px;
    background: var(--info-color);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
}

.about-btn {
    background: linear-gradient(135deg, var(--info-color), var(--secondary-color));
    color: var(--white-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3);
    margin-top: 20px;
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(135, 206, 235, 0.4);
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.branches-section {
    padding: 100px 0;
    width: 100%;
}

.branches-section .container {
    max-width: 100%;
    padding: 0 20px;
}

.branches-section .section-header {
    text-align: right;
    margin-bottom: 80px;
    position: relative;
    padding-right: 20px;
}

.branches-section .section-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 20px;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--info-color), var(--secondary-color));
    border-radius: 2px;
}

.branches-section .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.branches-section .section-header h2::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--info-color);
    border-radius: 50%;
    opacity: 0.3;
}

.branches-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.branches-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.branch-item {
    background: var(--white-color);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 0.6;
    transform: scale(0.98);
    min-height: 245px;
    display: flex;
    flex-direction: column;
}

.branch-item.active {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 20px 50px var(--shadow-medium);
    border: 2px solid var(--info-color);
}

.branch-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.branch-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.branch-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.branch-badge {
    background: linear-gradient(135deg, var(--info-color), var(--secondary-color));
    color: var(--white-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.branch-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.detail-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--info-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.detail-value {
    font-size: 1.1rem;
    color: var(--text-color);
    font-weight: 600;
    line-height: 1.4;
}

.map-container {
    position: sticky;
    top: 100px;
    height: 520px;
    display: flex;
    flex-direction: column;
}

.map-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    justify-content: center;
    height: 48px;
}

.map-btn {
    background: var(--white-color);
    color: var(--text-color);
    border: 2px solid var(--border-color);
    padding: 12px 25px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    width: 100%;
}

.map-btn:hover {
    background: var(--hover-bg);
    border-color: var(--info-color);
}

.map-btn.active {
    background: linear-gradient(135deg, var(--info-color), var(--secondary-color));
    color: var(--white-color);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.3);
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px var(--shadow-medium);
    height: calc(520px - 68px);
    width: 100%;
}

.map-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.map-frame.active {
    opacity: 1;
    visibility: visible;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

@media (max-width: 1200px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    .hero-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    .hero-stats {
        gap: 2rem;
        margin-top: 2rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 1rem;
    }
    .why-section {
        padding: 60px 0;
    }
    .section-header {
        margin-bottom: 50px;
        text-align: center;
        padding-right: 0;
    }
    .section-header::after {
        right: 50%;
        transform: translateX(50%);
    }
    .section-header h2 {
        font-size: 2.2rem;
    }
    .section-header h2::before {
        display: none;
    }
    .why-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 15px;
    }
    .why-item {
        padding: 25px 20px;
        border-radius: 15px;
        transform: none;
        opacity: 1;
        margin-bottom: 10px;
    }
    .why-item:hover {
        transform: translateY(-3px);
    }
    .why-grid:hover .why-item:not(:hover) {
        opacity: 1;
        transform: none;
    }
    .why-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }
    .why-icon svg {
        width: 35px;
        height: 35px;
    }
    .why-item h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    .why-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .about-section {
        padding: 60px 0;
    }
    .about-section .section-header {
        margin-bottom: 50px;
        text-align: center;
        padding-right: 0;
    }
    .about-section .section-header::after {
        right: 50%;
        transform: translateX(50%);
    }
    .about-section .section-header h2 {
        font-size: 2.2rem;
    }
    .about-section .section-header h2::before {
        display: none;
    }
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .about-image {
        order: -1;
    }
    .about-image img {
        height: 300px;
    }
    .about-text {
        padding: 20px 0;
    }
    .about-text h3 {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }
    .about-text p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    .about-features {
        margin: 30px 0;
        text-align: right;
    }
    .feature-item {
        justify-content: flex-start;
        margin-bottom: 15px;
    }
    .branches-section {
        padding: 60px 0;
    }
    .branches-section .section-header {
        margin-bottom: 50px;
        text-align: center;
        padding-right: 0;
    }
    .branches-section .section-header::after {
        right: 50%;
        transform: translateX(50%);
    }
    .branches-section .section-header h2 {
        font-size: 2.2rem;
    }
    .branches-section .section-header h2::before {
        display: none;
    }
    .branches-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .branch-item {
        min-height: auto;
        padding: 25px;
    }
    .map-container {
        position: static;
        order: -1;
        height: 400px;
    }
    .map-wrapper {
        height: calc(400px - 68px);
    }
    .branch-header h3 {
        font-size: 1.5rem;
    }
    .detail-icon {
        width: 40px;
        height: 40px;
    }
    .detail-value {
        font-size: 0.95rem;
    }
    .map-controls {
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 10px;
    }
    .map-btn {
        width: 200px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 100vh;
        min-height: 100vh;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-stats {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .why-section {
        padding: 50px 0;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
    .why-grid {
        gap: 15px;
        padding: 0 10px;
    }
    .why-item {
        padding: 20px 15px;
        border-radius: 12px;
        margin-bottom: 8px;
    }
    .why-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    .why-icon svg {
        width: 28px;
        height: 28px;
    }
    .why-item h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    .why-item p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    .about-section {
        padding: 50px 0;
    }
    .about-section .section-header h2 {
        font-size: 1.8rem;
    }
    .about-content {
        gap: 30px;
    }
    .about-image img {
        height: 250px;
    }
    .about-text h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    .about-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    .feature-item {
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    .feature-icon {
        width: 22px;
        height: 22px;
        font-size: 12px;
        margin-left: 12px;
    }
    .about-btn {
        padding: 12px 30px;
        font-size: 1rem;
    }
    .branches-section {
        padding: 50px 0;
    }
    .branches-section .section-header h2 {
        font-size: 1.8rem;
    }
    .branches-content {
        gap: 30px;
    }
    .map-container {
        height: 300px;
    }
    .map-wrapper {
        height: calc(300px - 68px);
    }
    .branch-item {
        padding: 20px;
    }
    .branch-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .branch-header h3 {
        font-size: 1.3rem;
    }
    .branch-badge {
        align-self: flex-end;
    }
    .detail-item {
        gap: 12px;
    }
    .detail-icon {
        width: 35px;
        height: 35px;
    }
    .detail-value {
        font-size: 0.9rem;
    }
    .map-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 30px;
    }
    .why-item {
        padding: 35px 25px;
    }
    .why-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    .why-icon svg {
        width: 40px;
        height: 40px;
    }
    .why-item h3 {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
    .why-item p {
        font-size: 1rem;
    }
    .about-content {
        gap: 40px;
    }
    .about-text h3 {
        font-size: 1.9rem;
    }
    .about-text p {
        font-size: 1rem;
    }
    .branches-content {
        gap: 40px;
    }
    .branch-item {
        min-height: 220px;
    }
    .map-container {
        height: 480px;
    }
    .map-wrapper {
        height: calc(480px - 68px);
    }
    .branch-header h3 {
        font-size: 1.6rem;
    }
    .detail-value {
        font-size: 1rem;
    }
}

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

.footer-column,
.footer-brand,
.social-section {
    animation: fadeInUp 0.6s ease-out;
}

.footer-column:nth-child(2) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.3s;
}

.footer-column:nth-child(5) {
    animation-delay: 0.4s;
}

.social-section {
    animation-delay: 0.5s;
}