﻿/* ~\PathLab_WebApp\Content\CustomStyles\site.css */
/* ===== VARIABLES ===== */
:root {
    --primary-color: #1a5f7a;
    --primary: #2A7FAA;
    --secondary-color: #2c88b0;
    --secondary: #4ECDC4;
    --accent-color: #e94560;
    --accent: #FF6B6B;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #1e272e;
    --text-dark: #2D3748;
    --light-color: #f8f9fa;
    --text-light: #F0F4F8;
    --light-bg: #F8FAFC;
    --gray-color: #6c757d;
    --dark-bg: #1E2A3A;
    --body-bg: #ffffff;
    --card-shadow: 0 20px 40px -10px rgba(0,30,50,0.15);
    --hover-shadow: 0 30px 50px -15px rgba(0,50,80,0.25);
    --transition: all 0.3s ease;
    --navbar-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --hero-gradient: linear-gradient(135deg, #1a5f7a, #2c88b0, #1597bb);
}

/* Dark theme */
body.dark-theme {
    --primary-color: #0f4a5f;
    --secondary-color: #1f6a8a;
    --accent-color: #c73e54;
    --dark-color: #f8f9fa;
    --light-color: #1e272e;
    --gray-color: #adb5bd;
    --body-bg: #121212;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    --navbar-gradient: linear-gradient(135deg, #0a2a33, #123d4f);
    --hero-gradient: linear-gradient(135deg, #0a2a33, #123d4f, #0b3a4a);
}

/* ===== RESET & GLOBAL ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark-color);
    background: var(--body-bg);
    overflow-x: hidden;
    padding-top: 80px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.display-1, .display-2, .display-3, .display-4 {
    font-weight: 700;
}

/* ===== NAVBAR ===== */
.navbar {
    backdrop-filter: blur(12px);
    min-height: 70px;
    background: rgba(16, 60, 90, 0.75) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: all .35s ease;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

    .navbar.scrolled {
        padding: 10px 0;
        background: rgba(10,40,70,0.92) !important;
        box-shadow: 0 10px 40px rgba(0,0,0,.25);
    }

.navbar-brand {
    font-size: 26px;
    font-weight: 700;
    color: white !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .navbar-brand img {
        height: 40px;
        width: auto;
    }

    .navbar-brand span {
        background: linear-gradient(135deg, #fff, rgba(255,255,255,0.8));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.nav-link {
    color: rgba(255,255,255,.92) !important;
    font-weight: 500;
    padding: 10px 18px !important;
    margin: 0 6px;
    font-size: 15px;
    border-radius: 30px;
    transition: var(--transition);
    position: relative;
}

    .nav-link:hover {
        color: white !important;
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    .nav-link.active {
        background: rgba(255, 255, 255, 0.2);
        color: white !important;
    }

    .nav-link:not(.dropdown-toggle)::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--accent-color);
        transition: .35s;
    }

    .nav-link:not(.dropdown-toggle):hover::after {
        width: 80%;
        left: 10%;
    }

.navbar-toggler {
    border: none;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

/* Dropdown */
.dropdown-menu {
    border-radius: 14px;
    border: none;
    margin-top: 12px;
    min-width: 220px;
}

.dropdown-item {
    padding: 10px 20px;
    transition: .25s;
}

    .dropdown-item:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
    }

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50px;
    padding: 8px 16px;
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    margin-left: 10px;
}

    .theme-toggle:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }

/* ===== HERO SECTION (GLOBAL PARTS) ===== */
.hero-section {
    position: relative;
    /*min-height: 100vh;*/
    min-height: 320px;
    display: flex;
    align-items: center;
    background-attachment: fixed;
    padding: 120px 0;
    background: var(--hero-gradient);
    color: white;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

    .hero-title span {
        color: var(--accent-color);
        position: relative;
        display: inline-block;
    }

        .hero-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(233, 69, 96, 0.3);
            z-index: -1;
        }

.hero-text {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

    .btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
        z-index: -1;
    }

    .btn:hover::before {
        left: 100%;
    }

.btn-custom {
    background: linear-gradient(135deg, var(--accent-color), #ff6b6b);
    color: white;
    border: none;
}

    .btn-custom:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4);
        color: white;
    }

.btn-outline-custom {
    background: transparent;
    border: 2px solid white;
    color: white;
}

    .btn-outline-custom:hover {
        background: white;
        color: var(--primary-color);
        transform: translateY(-3px);
    }

/* ===== CARDS (GLOBAL) ===== */
.card-modern {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,250,252,0.9));
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 32px;
    border: 1px solid rgba(42,127,170,0.12);
    box-shadow: 0 20px 40px rgba(0,30,50,0.08), inset 0 1px 0 rgba(255,255,255,0.6);
    transition: all .35s cubic-bezier(.4,0,.2,1);
    overflow: hidden;
}

    .card-modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    }

    .card-modern::after {
        content: "";
        position: absolute;
        top: -150%;
        left: -60%;
        width: 60%;
        height: 300%;
        background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
        transform: rotate(25deg);
        transition: 0.8s;
    }

    .card-modern:hover::after {
        left: 140%;
    }

    .card-modern:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 35px 60px rgba(0,40,70,0.18), inset 0 1px 0 rgba(255,255,255,0.7);
    }

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
    font-size: 36px;
    transition: var(--transition);
}

.card-modern:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    border-radius: 50%;
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

/* CONTACT PAGE */

.contact-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 40px 30px;
    transition: all .35s ease;
}

    .contact-card h4 {
        font-weight: 600;
        margin-top: 10px;
    }

    .contact-card p {
        font-size: 15px;
    }

    .contact-card .btn {
        margin-top: 10px;
    }

    .contact-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--hover-shadow);
    }

    .contact-card .card-icon {
        /*
        width: 70px;
        height: 70px;
        font-size: 28px;
        */
        margin: auto;
    }

/* Contact form */
.contact-form input,
.contact-form textarea {
    padding: 14px 18px;
}

.contact-form input {
    height: 52px;
    font-size: 15px;
}

.contact-form textarea {
    min-height: 140px;
    font-size: 15px;
}

.contact-form textarea {
    border-radius: 14px;
}

/* Branch cards */
.branch-card {
    padding: 30px;
}

    .branch-card h4 {
        font-size: 20px;
    }

    .branch-card p {
        font-size: 14px;
    }

/* Map responsive */
.contact-map iframe {
    height: 420px;
}

/* Mobile fixes */
@media(max-width:768px) {
    .contact-card {
        padding: 28px 20px;
    }

    .branch-card {
        padding: 22px;
    }

    .contact-map iframe {
        height: 300px;
    }
}

/* Dark theme card override */
body.dark-theme .card-modern {
    background: #1e1e1e;
    color: #f0f0f0;
}

/* ===== SECTION TITLES ===== */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    padding: 8px 25px;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.1), rgba(44, 136, 176, 0.1));
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
}

    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        border-radius: 2px;
    }

.section-title p {
    color: var(--gray-color);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* ===== BADGES ===== */
.badge-modern {
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.badge-accent {
    background: var(--accent-color);
    color: white;
}

/* ===== FORMS ===== */
.form-floating-custom {
    position: relative;
    margin-bottom: 20px;
}

    .form-floating-custom input,
    .form-floating-custom textarea,
    .form-floating-custom select {
        width: 100%;
        padding: 16px 20px;
        border: 2px solid #e0e0e0;
        border-radius: 15px;
        font-size: 16px;
        transition: var(--transition);
        background: white;
    }

body.dark-theme .form-floating-custom input,
body.dark-theme .form-floating-custom textarea,
body.dark-theme .form-floating-custom select {
    background: #2a2a2a;
    border-color: #444;
    color: #f0f0f0;
}

.form-floating-custom label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    padding: 0 5px;
    color: var(--gray-color);
    transition: var(--transition);
    pointer-events: none;
}

body.dark-theme .form-floating-custom label {
    background: #2a2a2a;
    color: #aaa;
}

.form-floating-custom input:focus,
.form-floating-custom textarea:focus,
.form-floating-custom select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(44, 136, 176, 0.1);
    outline: none;
}

    .form-floating-custom input:focus ~ label,
    .form-floating-custom input:not(:placeholder-shown) ~ label,
    .form-floating-custom textarea:focus ~ label,
    .form-floating-custom textarea:not(:placeholder-shown) ~ label,
    .form-floating-custom select:focus ~ label,
    .form-floating-custom select:not([value=""]):valid ~ label {
        top: 0;
        font-size: 12px;
        color: var(--secondary-color);
    }

.form-control,
.form-select {
    border-radius: 14px;
}

.form-floating textarea {
    border-radius: 18px;
}

/* ===== MODAL ===== */
.modal-modern .modal-content {
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(248,250,252,.92));
    backdrop-filter: blur(14px);
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
}

.modal-modern .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 24px 24px 0 0;
}

.btn-close-white {
    filter: brightness(0) invert(1);
}

/* ===== ACCORDION ===== */
.accordion-modern .accordion-item {
    border: none;
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(248,250,252,.92));
    box-shadow: 0 15px 40px rgba(0,40,80,.12);
}

.accordion-button {
    font-weight: 600;
    font-size: 17px;
    padding: 22px 28px;
    transition: .35s;
}

    .accordion-button:hover {
        transform: translateX(5px);
    }

    .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
    }

.accordion-body {
    font-size: 15px;
    color: #6c757d;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    }

.footer-widget {
    margin-bottom: 40px;
}

    .footer-widget h5 {
        font-size: 20px;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 10px;
    }

        .footer-widget h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent-color);
        }

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: var(--transition);
        display: inline-block;
    }

        .footer-links a:hover {
            color: var(--accent-color);
            transform: translateX(5px);
        }

.footer-contact-info {
    list-style: none;
    padding: 0;
}

    .footer-contact-info li {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 15px;
        color: rgba(255, 255, 255, 0.8);
    }

        .footer-contact-info li i {
            color: var(--accent-color);
            font-size: 20px;
            min-width: 25px;
        }

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

    .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: var(--transition);
    }

        .social-links a:hover {
            background: var(--accent-color);
            transform: translateY(-3px);
        }

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== NOTIFICATION ===== */
.notification {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 9999;
    min-width: 350px;
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.alert-modern {
    border: none;
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--hover-shadow);
    backdrop-filter: blur(10px);
}

    .alert-modern.success {
        background: linear-gradient(135deg, #28a745, #20c997);
        color: white;
    }

    .alert-modern.error {
        background: linear-gradient(135deg, #dc3545, #c82333);
        color: white;
    }

/* ===== LOADING SPINNER ===== */
.spinner-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: none;
    justify-content: center;
    align-items: center;
}

    .spinner-overlay.show {
        display: flex;
    }

body.dark-theme .spinner-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.spinner-modern {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top: 4px solid var(--accent-color);
    border-right: 4px solid var(--secondary-color);
    animation: spin .8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
    border: none;
    box-shadow: var(--card-shadow);
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        transform: translateY(-5px);
        box-shadow: var(--hover-shadow);
        color: white;
    }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== UTILITY CLASSES ===== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-custom {
    background: linear-gradient(135deg, #1a5f7a, #2c88b0, #1597bb);
    position: relative;
    overflow: hidden;
}

    .bg-gradient-custom::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.15), transparent);
        opacity: .6;
    }

.text-accent {
    color: var(--accent-color);
}

.hover-scale {
    transition: var(--transition);
}

    .hover-scale:hover {
        transform: scale(1.05);
    }

.row.g-4 > [class*="col-"] {
    display: flex;
    /* flex-direction: column; */
}

[data-aos] {
    will-change: transform, opacity;
}

.is-invalid {
    border-color: var(--danger-color) !important;
}

.card-modern {
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    width: 100%;
}

    .card-modern .mt-auto {
        margin-top: auto;
    }

/* ===== RESPONSIVE (GLOBAL) ===== */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 44px;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 70px;
    }

    .hero-section {
        padding: 80px 0;
        min-height: 320px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .navbar-collapse {
        background: var(--navbar-gradient);
        padding: 20px;
        border-radius: 16px;
        margin-top: 12px;
        box-shadow: 0 15px 40px rgba(0,0,0,.25);
    }

    .nav-link {
        text-align: center;
    }

    .navbar-nav .dropdown-menu {
        background: transparent;
        border: none;
        padding-left: 20px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-text {
        font-size: 16px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .counter-number {
        font-size: 32px;
    }

    .notification {
        min-width: auto;
        right: 15px;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

#services .card-modern {
    height: 100%;
}

@media (max-width:768px) {
    #services .card-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }
}

/* ===== WHY CHOOSE US MODERN ===== */

.why-image-wrapper {
    position: relative;
    overflow: hidden;
}

.why-image {
    width: 100%;
    border-radius: 18px;
    transition: transform .6s ease;
}

.why-image-wrapper:hover .why-image {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    padding: 22px 28px;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
    text-align: center;
}

.exp-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
}

.exp-text {
    font-size: 14px;
    color: var(--gray-color);
}

/* Accordion Button */
.why-accordion-btn {
    display: flex;
    align-items: center;
    gap: 16px;
}

.why-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,var(--primary-color),var(--secondary-color));
    color: white;
    font-size: 18px;
}

.why-text {
    font-weight: 600;
}

/* Hover animation */
.accordion-item {
    transition: .3s;
}

    .accordion-item:hover {
        transform: translateY(-4px);
    }

/* Dark theme support */
body.dark-theme .experience-badge {
    background: #1e1e1e;
}

/* Responsive fixes */

@media (max-width:991px) {

    .experience-badge {
        position: relative;
        margin-top: 20px;
        right: auto;
        bottom: auto;
    }
}

@media (max-width:768px) {

    .why-icon {
        width: 36px;
        height: 36px;
    }

    .exp-number {
        font-size: 28px;
    }
}

/* Working Hours Modern */

.working-hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.working-hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(0,0,0,0.03);
    font-size: 14px;
}

    .working-hours-item:hover {
        background: rgba(0,0,0,0.06);
        transform: translateX(4px);
    }

body.dark-theme .working-hours-item {
    background: #2b2b2b;
}

/* Social grid */

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(130px,1fr));
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    background: rgba(0,0,0,0.04);
    transition: .25s;
}

    .social-btn i {
        font-size: 16px;
    }

    .social-btn span {
        font-weight: 500;
    }

    .social-btn:hover {
        background: var(--primary-color);
        color: white;
    }

        .social-btn:hover i {
            color: white;
        }

body.dark-theme .social-btn {
    background: #2b2b2b;
}

.contact-map-frame {
    width: 100%;
    height: 420px;
    border-radius: 15px;
}

@media(max-width:768px) {
    .contact-map-frame {
        height: 300px;
    }
}

/* CONTACT PAGE STRUCTURE */

.contact-main-layout {
    align-items: stretch;
}

.contact-side-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Side cards equal height */

.contact-hours-card,
.contact-social-card {
    flex: 1;
}

/* Mobile fix */

@media(max-width:991px) {

    .contact-side-panel {
        margin-top: 20px;
    }

    .contact-hours-card,
    .contact-social-card {
        width: 100%;
    }
}
/* ===== PRICING CARD ===== */

.pricing-card {
    background: white;
    border-radius: 22px;
    padding: 30px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all .35s ease;
    box-shadow: var(--card-shadow);
    height: 100%;
}

    .pricing-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--hover-shadow);
    }

.pricing-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    background: linear-gradient(135deg,var(--primary-color),var(--secondary-color));
}

.pricing-price {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0 20px;
    color: var(--primary-color);
}

    .pricing-price small {
        font-size: 14px;
        color: var(--gray-color);
    }

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

    .pricing-features li {
        font-size: 14px;
        margin-bottom: 10px;
    }
