* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    overflow-x: hidden;
    position: relative;
    font-weight: 300;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

/* Remove underlines from all surgery card links and their children */
a.surgery-card,
a.surgery-card *,
.surgery-card a,
.surgery-card h3,
.surgery-card .card-title {
    text-decoration: none !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
}

/* Remove underlines from all treatment item links and their children */
a.treatment-item,
a.treatment-item *,
.treatment-item a,
.treatment-item h3,
.treatment-item .treatment-name {
    text-decoration: none !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
}

.hero-section {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    height: 732px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    margin-top: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Font Face Declarations - Moved to inline styles in index.php to avoid CORS issues */
/* Fonts are now loaded via inline <style> tag in PHP template */

/* Ensure fonts are applied with proper rendering */
body,
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Font Family Variables - Easy to use anywhere */
:root {
    --font-goldenbook: 'Goldenbook', Georgia, 'Times New Roman', serif;
    --font-gotham: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-gotham-serif: 'Gotham', Georgia, 'Times New Roman', serif;
}

/* Usage Examples - Uncomment and customize as needed */
/*
.goldenbook-text {
    font-family: var(--font-goldenbook);
    font-weight: 400;
}

.gotham-text {
    font-family: var(--font-gotham);
    font-weight: 300;
}

.gotham-serif-text {
    font-family: var(--font-gotham-serif);
    font-weight: 400;
}
*/

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 544px;
    display: flex;
    align-items: flex-start;
    z-index: 4;
}

.header-inner {
    width: 100%;
    max-width: 1909px;
    margin: 0 auto;
    padding: 40px 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-cta {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 1);
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-cta:hover {
    background: rgba(190, 163, 104, 1);
    color: rgba(255, 255, 255, 1);
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 1);
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    cursor: pointer;
}

.header-menu-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.header-menu-text {
    display: inline-block;
}

/* Mega Menu Styles */
/* Hide mobile-only elements on desktop */
.mega-menu-mobile-logo,
.mega-menu-mobile-cta,
.mega-menu-mobile-social {
    display: none;
}

.mega-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mega-menu-overlay.active {
    display: block;
    opacity: 1;
    margin-left: 100px;
}

.mega-menu-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 734px;
    background: linear-gradient(to right, transparent 0%, transparent 50px, rgba(247, 247, 247, 1) 50px, rgba(247, 247, 247, 1) 100%);
    box-shadow: -9px 0px 16.7px 0px rgba(0, 0, 0, 0.13);
    display: flex;
    flex-direction: column;
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mega-menu-overlay.active .mega-menu-container {
    transform: translateX(0);
}

.mega-menu-left-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 100%;
    background: transparent;
}

.mega-menu-close {
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 20px 40px;
    /* border-bottom: 1px solid rgba(23, 23, 23, 0.2); */
    gap: 20px;
}

.mega-menu-close-text {
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    color: rgba(23, 23, 23, 1);
}

.mega-menu-close-btn {
    background: none;
    border: none;
    font-size: 32px;
    color: rgba(23, 23, 23, 1);
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Arial, sans-serif;
}

.mega-menu-content {
    display: flex;
    flex: 1;
    overflow: hidden;
}

.mega-menu-left-column {
    width: 430px;
    padding: 40px 0px 40px 60px;
    border-right: 1px solid rgba(23, 23, 23, 0.2);
    overflow-y: auto;
}

.mega-menu-main-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-main-nav li {
    margin: 0;
    padding: 0;
}

.mega-menu-nav-item {
    display: block;
    padding: 20px 40px;
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: rgba(23, 23, 23, 1);
    text-decoration: none;
    /* border-bottom: 1px solid rgba(23, 23, 23, 0.2); */
    transition: color 0.3s ease;
}

.mega-menu-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-menu-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-left: 10px;
    display: none;
}

.mega-menu-has-dropdown.active .mega-menu-arrow {
    transform: rotate(180deg);
}

.mega-menu-dropdown {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-has-dropdown.active .mega-menu-dropdown {
    display: block;
}

.mega-menu-sub-dropdown {
    position: relative;
}

.mega-menu-sub-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-size: 18px;
    color: rgba(23, 23, 23, 1);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.mega-menu-sub-dropdown.active .mega-menu-sub-toggle {
    color: rgba(168, 135, 74, 1);
}

.mega-menu-sub-dropdown.active .mega-menu-sub-toggle .mega-menu-arrow {
    color: rgba(168, 135, 74, 1);
}

.mega-menu-sub-toggle .mega-menu-arrow {
    display: inline-block;
    font-size: 10px;
    transition: transform 0.3s ease;
    margin-left: 10px;
    transform: rotate(0deg);
}

.mega-menu-sub-list {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 20px;
}

.mega-menu-sub-dropdown.active .mega-menu-sub-list {
    display: block;
}

.mega-menu-sub-dropdown.active .mega-menu-sub-toggle .mega-menu-arrow {
    transform: rotate(180deg) !important;
}

.mega-menu-dropdown-link {
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-size: 16px;
    color: rgba(23, 23, 23, 1);
    text-decoration: none;
    padding: 8px 0;
    display: block;
}

.mega-menu-dropdown-link:hover {
    color: rgba(168, 135, 74, 1);
}

.mega-menu-sub-list li {
    margin: 8px 0;
}

.mega-menu-sub-list li a {
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-size: 14px;
    color: rgba(23, 23, 23, 1);
    text-decoration: none;
    padding: 5px 0;
    display: block;
}

.mega-menu-sub-list li a:hover {
    color: rgba(168, 135, 74, 1);
}

.mega-menu-nav-item:hover {
    color: rgba(168, 135, 74, 1);
}


.mega-menu-nav-item-active {
    color: rgba(168, 135, 74, 1);
}

.mega-menu-right-columns {
    flex: 1;
    display: flex;
    gap: 60px;
    padding: 40px 100px;
    overflow-y: auto;
}

.mega-menu-content-panel {
    display: flex;
    gap: 60px;
    width: 100%;
}

.mega-menu-content-panel[data-content="surgical"] {
    display: flex;
}

.mega-menu-content-panel[data-content="aesthetic"],
.mega-menu-content-panel[data-content="hair"] {
    display: none;
}

.mega-menu-category {
    flex: 1;
}

.mega-menu-category-title {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: rgba(168, 135, 74, 1);
    margin: 0 0 24px 0;
    padding: 0;
}

.mega-menu-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-category-list li {
    margin: 0 0 16px 0;
    padding: 0;
}

.mega-menu-category-list li a {
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    color: rgba(23, 23, 23, 1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mega-menu-category-list li a:hover {
    color: rgba(168, 135, 74, 1);
}

/* Responsive Styles */
@media (max-width: 1440px) {
    .mega-menu-container {
        width: 100%;
        max-width: 1400px;
    }
}

@media (max-width: 1024px) {
    .mega-menu-container {
        width: 100%;
        height: 100vh;
    }
    
    .mega-menu-content {
        flex-direction: column;
    }
    
    .mega-menu-left-column {
        width: 100%;
        /* border-right: none; */
        /* border-bottom: 1px solid rgba(23, 23, 23, 0.2); */
        padding: 20px 0;
    }
    
    .mega-menu-nav-item {
        padding: 15px 30px;
        font-size: 20px;
    }
    
    .mega-menu-right-columns {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mega-menu-category-title {
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .mega-menu-category-list li {
        margin-bottom: 12px;
    }
    
    .mega-menu-category-list li a {
        font-size: 16px;
    }
}

@media (max-width: 1024px) {
    .header-inner {
        padding: 30px 40px 0;
    }
    .header-logo {
        height: 50px;
    }
    .header-cta {
        font-size: 14px;
        padding: 10px 20px;
    }
    .header-menu {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .header-overlay {
        height: 200px;
    }
    .header-inner {
        padding: 20px 24px 0;
    }
    .header-logo {
        height: 44px;
    }
    .header-cta {
        padding: 10px 16px;
        font-size: 12px;
        display: none;
    }
    .header-menu {
        font-size: 14px;
        gap: 8px;
    }
    .header-menu-icon {
        width: 20px;
        height: 20px;
    }
    
    /* Mobile Menu - Redesign to match reference */
    .mega-menu-container {
        width: 100%;
        height: 100vh;
        background: #fff;
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    
    .mega-menu-left-bar {
        display: none;
    }
    
    /* Mobile Menu Header - Logo and Close Button */
    .mega-menu-close {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .mega-menu-close-text {
        display: none;
    }
    
    .mega-menu-close-btn {
        font-size: 24px;
        width: 24px;
        height: 24px;
        color: #000;
        margin-left: auto;
        padding: 0;
        background: none;
        border: none;
        cursor: pointer;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile Menu Logo Section - Using close-text area for logo */
    .mega-menu-close::before {
        content: '';
        display: none;
    }
    
    /* Mobile Menu Logo Section - Show on mobile */
    .mega-menu-mobile-logo {
        display: flex !important;
        align-items: center;
        gap: 12px;
        flex: 1;
    }
    
    .mega-menu-mobile-cta {
        display: block !important;
    }
    
    .mega-menu-mobile-social {
        display: flex !important;
    }
    
    .mega-menu-mobile-logo img,
    .mega-menu-mobile-logo-img {
        height: 40px;
        width: auto;
        object-fit: contain;
        display: block;
    }
    
    .mega-menu-mobile-logo-text {
        display: none !important;
    }
    
    /* Mobile Menu Content */
    .mega-menu-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }
    
    .mega-menu-left-column {
        width: 100%;
        padding: 0;
        border: none;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    
    .mega-menu-main-nav {
        list-style: none;
        padding: 20px 20px;
        margin: 0;
        width: 100%;
    }
    
    .mega-menu-main-nav li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .mega-menu-nav-item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 24px;
        font-family: 'Gotham', Arial, sans-serif !important;
        font-weight: 300 !important;
        font-size: 16px;
        text-transform: uppercase;
        color: rgba(0, 0, 0, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
        width: 100%;
        position: relative;
    }
    
    .mega-menu-nav-item:hover {
        color: #000;
    }
    
    .mega-menu-dropdown-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    
    .mega-menu-arrow {
        display: inline-block !important;
        font-size: 12px;
        color: rgba(0, 0, 0, 0.6);
        transition: transform 0.3s ease;
        position: absolute;
        right:0px !important;
        flex-shrink: 0;
    }
    
    .mega-menu-has-dropdown.active .mega-menu-arrow {
        transform: rotate(180deg);
    }
    
    /* Submenu toggle styling - Mobile - Consistent Design */
    .mega-menu-dropdown .mega-menu-sub-dropdown {
        position: relative;
        display: block !important;
    }
    
    .mega-menu-dropdown .mega-menu-sub-toggle {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 15px !important;
        font-family: 'Gotham', Arial, sans-serif !important;
        font-weight: 300 !important;
        font-size: 14px !important;
        color: rgba(0, 0, 0, 0.7) !important;
        text-decoration: none;
        text-transform: uppercase;
        transition: color 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
    }
    
    .mega-menu-dropdown .mega-menu-sub-toggle .mega-menu-arrow {
        display: inline-block !important;
        position: absolute !important;
        right: 0px !important;
        flex-shrink: 0;
        font-size: 12px;
        color: rgba(0, 0, 0, 0.6);
        transition: transform 0.3s ease;
    }
    
    .mega-menu-dropdown .mega-menu-sub-dropdown.active .mega-menu-sub-toggle .mega-menu-arrow {
        transform: rotate(180deg) !important;
    }
    
    .mega-menu-dropdown .mega-menu-sub-dropdown.active .mega-menu-sub-toggle {
        color: rgba(0, 0, 0, 0.9) !important;
    }
    
    .mega-menu-dropdown .mega-menu-sub-list {
        display: none !important;
        list-style: none;
        padding: 0;
        margin: 0;
        padding-left: 20px;
    }
    
    .mega-menu-dropdown .mega-menu-sub-dropdown.active .mega-menu-sub-list {
        display: block !important;
    }
    
    .mega-menu-dropdown .mega-menu-sub-list li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    /* Consistent styling for all submenu items - same as sub-toggle */
    .mega-menu-dropdown .mega-menu-sub-list li a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 15px 24px 15px 40px !important;
        font-family: 'Gotham', Arial, sans-serif !important;
        font-weight: 300 !important;
        font-size: 14px !important;
        color: rgba(0, 0, 0, 0.7) !important;
        text-decoration: none;
        text-transform: uppercase;
        transition: color 0.3s ease;
    }
    
    .mega-menu-dropdown .mega-menu-sub-list li a:hover {
        color: rgba(0, 0, 0, 0.9) !important;
    }
    
    /* Nested submenu items - same consistent design */
    .mega-menu-dropdown .mega-menu-sub-list .mega-menu-sub-list li a {
        padding: 15px 24px 15px 60px !important;
        font-family: 'Gotham', Arial, sans-serif !important;
        font-weight: 300 !important;
        font-size: 14px !important;
        color: rgba(0, 0, 0, 0.7) !important;
    }
    
    .mega-menu-dropdown {
        display: none;
        list-style: none;
        padding: 0;
        margin: 0;
        /* background: rgba(0, 0, 0, 0.02); */
    }
    
    .mega-menu-has-dropdown.active .mega-menu-dropdown {
        display: block;
    }
    
    .mega-menu-dropdown li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    /* Force same styling for all submenu items - Override desktop styles */
    .mega-menu-dropdown li a.mega-menu-dropdown-link,
    .mega-menu-dropdown .mega-menu-dropdown-link,
    .mega-menu-dropdown-link,
    .mega-menu-dropdown .mega-menu-sub-toggle,
    .mega-menu-dropdown .menu-item.menu-item-type-post_type.menu-item-object-services a,
    .mega-menu-dropdown .menu-item a,
    .mega-menu-dropdown li.menu-item a,
    .mega-menu-dropdown li.menu-item-type-post_type a,
    .mega-menu-dropdown li.menu-item-object-services a {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 15px !important;
        font-family: 'Gotham', Arial, sans-serif !important;
        font-weight: 300 !important;
        font-size: 14px !important;
        color: rgba(0, 0, 0, 0.7) !important;
        text-decoration: none !important;
        text-transform: uppercase !important;
        transition: color 0.3s ease;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .mega-menu-dropdown li a.mega-menu-dropdown-link:hover,
    .mega-menu-dropdown .mega-menu-dropdown-link:hover,
    .mega-menu-dropdown-link:hover,
    .mega-menu-dropdown .mega-menu-sub-toggle:hover,
    .mega-menu-dropdown .menu-item.menu-item-type-post_type.menu-item-object-services a:hover,
    .mega-menu-dropdown .menu-item a:hover,
    .mega-menu-dropdown li.menu-item a:hover,
    .mega-menu-dropdown li.menu-item-type-post_type a:hover,
    .mega-menu-dropdown li.menu-item-object-services a:hover {
        color: rgba(0, 0, 0, 0.9) !important;
    }
    
    /* Ensure HAIR TREATMENTS menu items have same structure */
    .mega-menu-dropdown li.menu-item {
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }
    
    .mega-menu-dropdown li.menu-item a {
        width: 100% !important;
    }
    
    .mega-menu-sub-dropdown {
        position: relative;
    }
    
    .mega-menu-right-columns {
        display: none !important;
    }
    
    /* Mobile Menu CTA Button */
    .mega-menu-mobile-cta {
        padding: 20px 24px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .mega-menu-mobile-cta-button {
        display: block;
        width: 100%;
        padding: 16px 24px;
        background: rgb(168, 135, 74);
        color: #fff;
        border: none;
        border-radius: 8px;
        font-family: 'Gotham', Arial, sans-serif;
        font-weight: 300;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        text-decoration: none;
        text-align: center;
        transition: background 0.3s ease;
    }
    
    .mega-menu-mobile-cta-button:hover {
        background: #29B6F6;
        color: #fff;
    }
    
    /* Mobile Menu Social Icons */
    .mega-menu-mobile-social {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 20px 24px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .mega-menu-mobile-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        text-decoration: none;
        transition: transform 0.3s ease;
    }
    
    .mega-menu-mobile-social a:hover {
        transform: scale(1.1);
    }
    
    .mega-menu-mobile-social a img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    /* Force same styling for all submenu items - 768px - Override desktop */
    .mega-menu-dropdown li a.mega-menu-dropdown-link,
    .mega-menu-dropdown .mega-menu-dropdown-link,
    .mega-menu-dropdown-link,
    .mega-menu-dropdown .mega-menu-sub-toggle,
    .mega-menu-dropdown .menu-item.menu-item-type-post_type.menu-item-object-services a,
    .mega-menu-dropdown .menu-item a,
    .mega-menu-dropdown li.menu-item a,
    .mega-menu-dropdown li.menu-item-type-post_type a,
    .mega-menu-dropdown li.menu-item-object-services a {
        padding: 15px !important;
        font-family: 'Gotham', Arial, sans-serif !important;
        font-weight: 300 !important;
        font-size: 14px !important;
        color: rgba(0, 0, 0, 0.7) !important;
        text-transform: uppercase !important;
    }
}

@media (max-width: 480px) {
    .mega-menu-close {
        padding: 16px 20px;
    }
    /* Force same styling for all submenu items - 480px override */
    .mega-menu-dropdown-link,
    .mega-menu-dropdown .mega-menu-sub-toggle,
    .mega-menu-dropdown .menu-item.menu-item-type-post_type.menu-item-object-services a,
    .mega-menu-dropdown .menu-item a,
    .mega-menu-dropdown li.menu-item a,
    .mega-menu-dropdown li.menu-item-type-post_type a,
    .mega-menu-dropdown li.menu-item-object-services a {
        padding: 15px !important;
    }
    
    .mega-menu-mobile-logo img {
        height: 36px;
    }
    
    .mega-menu-mobile-logo-name {
        font-size: 16px;
    }
    
    .mega-menu-mobile-logo-tagline {
        font-size: 10px;
    }
    
    .mega-menu-close-btn {
        font-size: 22px;
        width: 22px;
        height: 22px;
    }
    
    .mega-menu-nav-item {
        padding: 18px 20px;
        font-size: 15px;
    }
    
    /* Force same styling for all submenu items - 480px */
    .mega-menu-dropdown-link,
    .mega-menu-dropdown .mega-menu-sub-toggle,
    .mega-menu-dropdown .menu-item.menu-item-type-post_type.menu-item-object-services a,
    .mega-menu-dropdown .menu-item a,
    .mega-menu-dropdown li.menu-item a,
    .mega-menu-dropdown li.menu-item-type-post_type a,
    .mega-menu-dropdown li.menu-item-object-services a {
        padding: 15px !important;
        font-size: 14px !important;
        font-family: 'Gotham', Arial, sans-serif !important;
        font-weight: 300 !important;
        color: rgba(0, 0, 0, 0.7) !important;
        text-transform: uppercase !important;
    }
    
    .mega-menu-dropdown .mega-menu-sub-list li a {
        padding: 15px 20px 15px 36px !important;
        font-size: 14px !important;
    }
    
    .mega-menu-dropdown .mega-menu-sub-list .mega-menu-sub-list li a {
        padding: 15px 20px 15px 56px !important;
        font-size: 14px !important;
    }
    
    .mega-menu-mobile-cta {
        padding: 16px 20px;
    }
    
    .mega-menu-mobile-cta-button {
        padding: 14px 20px;
        font-size: 13px;
    }
    
    .mega-menu-mobile-social {
        padding: 30px 20px;
        text-align: center;
        justify-content: center;
    }
    
    .mega-menu-mobile-social a {
        width: 36px;
        height: 36px;
    }
    
    .mega-menu-mobile-social a svg {
        width: 18px;
        height: 18px;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://drvikeshvij.com/wp-content/uploads/2026/01/KAS02730111.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-container {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
    z-index: 2;
}

.hero-left {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 50%;
    padding-left: 50px;
    display: none;
}

.hero-image {
    width: 550px;
    height: 765px;
    object-fit: contain;
    object-position: bottom;
    display: block;
}

.hero-right {
    position: absolute;
    right: 50px;
    top: 55%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    z-index: 3;
    gap: 10px;
}

/* Hero Section - More Specific Selectors */
.hero-section h1.hero-name,
.hero-section .hero-name {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 90px !important;
    line-height: 50% !important;
    letter-spacing: 0px !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 1) !important;
    margin: 0 0 20px 0 !important;
    max-width: 100% !important;
}

.hero-section h2.hero-title,
.hero-section .hero-title {
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300 !important;
    font-style: normal !important;
    font-size: 28px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 1) !important;
    margin: 0 !important;
}

@media (max-width: 1440px) {
    .hero-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-left {
        left: 30px;
        width: 48%;
    }
    
    .hero-image {
        width: 100%;
        max-width: 550px;
        height: auto;
        max-height: 765px;
    }
    
    .hero-right {
        right: 30px;
        width: 48%;
    }
    
    .hero-section h1.hero-name,
    .hero-section .hero-name {
        font-size: 90px !important;
        width: auto !important;
    }
    
    .hero-section h2.hero-title,
    .hero-section .hero-title {
        font-size: 28px !important;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        height: 600px;
    }
    
    .hero-left {
        left: 20px;
        width: 45%;
        justify-content: center;
        align-items: center;
    }
    
    .hero-image {
        width: 100%;
        max-width: 400px;
        height: auto;
        max-height: 600px;
    }
    
    .hero-right {
        right: 20px;
        width: 50%;
        top: 50%;
        transform: translateY(-50%);
        padding: 50px 20px !important;
    }
    
    .hero-section h1.hero-name,
    .hero-section .hero-name {
        font-size: 48px !important;
        width: auto !important;
    }
    
    .hero-section h2.hero-title,
    .hero-section .hero-title {
        font-size: 24px !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 500px;
    }
    
    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: end;
    }
    
    .hero-left {
        position: relative;
        left: auto;
        width: 100%;
        height: auto;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .hero-image {
        width: 100%;
        max-width: 300px;
        height: auto;
        max-height: 400px;
    }
    
    .hero-right {
        position: relative;
        right: 30px;
        transform: none;
        width: 100%;
        text-align: center;
        padding: 0 20px !important;
        top: -260px;
    }
    
    .hero-section h1.hero-name,
    .hero-section .hero-name {
        font-size: 27px !important;
        width: auto !important;
        margin: 0px 0px 0px !important;
        text-align: left !important;
    }
    
    .hero-section h2.hero-title,
    .hero-section .hero-title {
        font-size: 8px !important;
        text-align: left;
    }
    .hero-bg{
        background-position: -80px !important;
    }
}

.surgeries-section {
    width: 100%;
    min-height: 778px;
    padding: 60px 0;
    background: #f7f7f7;
}

.surgeries-section h2.surgeries-title,
.surgeries-section .surgeries-title {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 48px !important;
    line-height: 50px !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    color: rgba(0, 0, 0, 1) !important;
    margin-bottom: 60px !important;
    text-transform: uppercase !important;
}

.surgeries-slider-container {
    position: relative;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.surgeries-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    overflow-y: visible;
    width: calc(400px * 3 + 30px * 2);
    max-width: calc(400px * 3 + 30px * 2);
    flex-shrink: 0;
    justify-content: flex-start;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    padding: 0;
}

.surgeries-slider::-webkit-scrollbar {
    display: none;
}

.surgery-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 400px;
    min-width: 400px;
    max-width: 400px;
    display: block;
    text-decoration: none !important;
    color: inherit;
}

.surgery-card * {
    text-decoration: none !important;
}

.card-image-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease;
}

.card-image.default-image {
    opacity: 1;
}

.card-image.hover-image {
    opacity: 0;
}

.surgery-card:hover .card-image.default-image {
    opacity: 0;
}

.surgery-card:hover .card-image.hover-image {
    opacity: 1;
}

.surgery-card:hover {
    width: 480px;
}

.surgeries-section .surgery-card h3.card-title,
.surgeries-section .surgery-card .card-title,
.surgery-card h3.card-title,
.surgery-card .card-title {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 36px !important;
    line-height: 100% !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 1) !important;
    text-align: center !important;
    padding: 30px 20px !important;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent) !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    border-bottom: none !important;
    outline: none !important;
    margin: 0 !important;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.slider-arrow:hover {
    opacity: 0.8;
    transform: translateY(-50%);
}

.slider-arrow-left:hover {
    transform: translateY(-50%) translateX(45%);
}

.slider-arrow-right:hover {
    transform: translateY(-50%) translateX(-45%);
}

.slider-arrow-left {
    left: 0;
    transform: translateY(-50%) translateX(45%);
}

.slider-arrow-right {
    right: 0;
    transform: translateY(-50%) translateX(-45%);
}

.slider-arrow .arrow-icon {
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
    display: block;
    object-fit: contain;
    transition: none !important;
    transform: none !important;
    flex-shrink: 0;
}

.slider-arrow-left:hover .arrow-icon {
    width: auto !important;
    height: auto !important;
    transform: none !important;
    transition: none !important;
    object-fit: contain !important;
}

.slider-arrow-right:hover .arrow-icon {
    width: auto !important;
    height: auto !important;
    transform: none !important;
    transition: none !important;
    object-fit: contain !important;
}

@media (max-width: 1440px) {
    .surgeries-slider {
        width: calc(400px * 3 + 30px * 2);
        max-width: calc(400px * 3 + 30px * 2);
    }
    
    .surgeries-section h2.surgeries-title,
    .surgeries-section .surgeries-title {
        font-size: 42px !important;
        line-height: 44px !important;
    }
}

@media (max-width: 1024px) {
    .surgeries-section {
        padding: 80px 0;
        min-height: auto;
    }
    
    .surgeries-section h2.surgeries-title,
    .surgeries-section .surgeries-title {
        font-size: 38px !important;
        line-height: 40px !important;
        margin-bottom: 40px !important;
    }
    
    .surgeries-slider {
        padding: 0 40px;
        gap: 20px;
    }
    
    .surgery-card {
        width: 320px;
    }
    
    .surgery-card:hover {
        width: 380px;
    }
    
    .card-image-wrapper {
        height: 400px;
    }
    
    .surgeries-section .surgery-card h3.card-title,
    .surgeries-section .surgery-card .card-title {
        font-size: 28px !important;
    }
}

@media (max-width: 768px) {
    .surgeries-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .surgeries-section h2.surgeries-title,
    .surgeries-section .surgeries-title {
        font-size: 32px !important;
        line-height: 34px !important;
        margin-bottom: 30px !important;
    }
    
    .surgeries-slider-container {
        padding: 0;
    }
    
    .surgeries-slider-container {
        padding: 0 20px;
    }
    
    .surgeries-slider {
        width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        gap: 15px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .surgeries-slider::-webkit-scrollbar {
        display: none;
    }
    
    .surgery-card {
        width: calc(100vw - 40px);
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        scroll-snap-align: center;
        flex-shrink: 0;
    }
    
    .surgery-card:hover {
        width: calc(100vw - 40px);
    }
    
    .card-image-wrapper {
        height: 350px;
    }
    
    .surgeries-section .surgery-card h3.card-title,
    .surgeries-section .surgery-card .card-title {
        font-size: 24px !important;
        padding: 20px 15px !important;
    }
    
    .slider-arrow-left {
        left: 10px;
    }
    
    .slider-arrow-right {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .surgeries-section {
        padding: 40px 0;
        min-height: auto;
    }
    
    .surgeries-section h2.surgeries-title,
    .surgeries-section .surgeries-title {
        font-size: 28px !important;
        line-height: 30px !important;
        margin-bottom: 25px !important;
    }
    
    .surgeries-slider-container {
        padding: 0 15px;
    }
    
    .surgeries-slider {
        width: calc(100vw - 30px);
        max-width: calc(100vw - 30px);
        gap: 12px;
    }
    
    .surgery-card {
        width: calc(100vw - 30px);
        min-width: calc(100vw - 30px);
        max-width: calc(100vw - 30px);
    }
    
    .surgery-card:hover {
        width: calc(100vw - 30px);
    }
    
    .card-image-wrapper {
        height: 500px;
    }
    
    .surgeries-section .surgery-card h3.card-title,
    .surgeries-section .surgery-card .card-title {
        font-size: 20px !important;
        padding: 15px 10px !important;
    }
    
    .slider-arrow-left {
        left: 50px;
    }
    
    .slider-arrow-right {
        right: 50px;
    }
    .slider-arrow-left {
        left: 0;
        transform: translateY(-50%) translateX(-20%);
    }
    
    .slider-arrow-right {
        right: 0;
        transform: translateY(-50%) translateX(20%);
    }

    .slider-arrow-left:hover {
        transform: translateY(-50%) translateX(-20%);
    }
    
    .slider-arrow-right:hover {
        transform: translateY(-50%) translateX(20%);
    }
}

.doctor-section {
    width: 100%;
    padding: 0;
    background: rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-container {
    width: 100%;
    max-width: 1450px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 600px;
}

.doctor-left {
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.doctor-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}
.doctor-watermark {
    position: absolute;
    top: 59%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 91%;
    height: 100%;
    max-width: 360px;
    max-height: 600px;
    object-fit: contain;
    opacity: 1;
    z-index: 24;
    pointer-events: none;
}

.doctor-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 1);
    overflow: visible;
}

.doctor-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 91%;
    height: 100%;
    max-width: 360px;
    max-height: 600px;
    object-fit: contain;
    opacity: 1;
    z-index: 24;
    pointer-events: none;
}

.doctor-content {
    width: 545px;
    max-width: 100%;
    min-height: 413px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.75);
    position: relative;
    z-index: 10;
}

.doctor-section h3.doctor-badge,
.doctor-section .doctor-content h3.doctor-badge,
.doctor-section .doctor-badge {
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300 !important;
    font-style: normal !important;
    font-size: 18px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    text-transform: uppercase !important;
    color: rgba(168, 135, 74, 1) !important;
    margin: 0 !important;
}

.doctor-section h2.doctor-name,
.doctor-section .doctor-content h2.doctor-name,
.doctor-section .doctor-name {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 64px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    text-transform: uppercase !important;
    color: rgba(23, 23, 23, 1) !important;
    margin: 0 !important;
}

.doctor-section p.doctor-description,
.doctor-section .doctor-content p.doctor-description,
.doctor-section .doctor-description {
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300 !important;
    font-style: normal !important;
    font-size: 18px !important;
    line-height: 26px !important;
    letter-spacing: 0% !important;
    color: rgba(23, 23, 23, 1) !important;
    margin: 0 !important;
}

.doctor-cta {
    width: 261px !important;
    height: 43px !important;
    padding: 12px 24px !important;
    border: none !important;
    border-radius: 12px !important;
    background: rgba(190, 163, 104, 1) !important;
    color: rgba(255, 255, 255, 1) !important;
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;    font-weight: 300 !important;
    font-style: normal !important;
    font-size: 16px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-top: 10px !important;
}

.doctor-cta:hover {
    background: rgba(168, 135, 74, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.doctor-cta a {
    background: rgb(190 163 104 / 0%)  !important;
    color: rgba(255, 255, 255, 1) !important;
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    font-weight: 300;
    text-decoration: none !important;
}

@media (max-width: 1024px) {
    .doctor-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .doctor-left {
        min-height: 500px;
    }
    
    .doctor-right {
        padding: 50px 30px;
    }
    
    .doctor-content {
        width: 100%;
        max-width: 600px;
    }
    
    .doctor-section h2.doctor-name,
    .doctor-section .doctor-name {
        font-size: 48px !important;
    }
    
    .doctor-section h3.doctor-badge,
    .doctor-section .doctor-badge {
        font-size: 18px !important;
    }
    
    .doctor-section p.doctor-description,
    .doctor-section .doctor-description {
        font-size: 16px !important;
        line-height: 24px !important;
    }
}

@media (max-width: 768px) {
    .doctor-left {
        min-height: 400px;
    }
    
    .doctor-right {
        padding: 40px 20px;
    }
    
    .doctor-content {
        gap: 15px;
    }
    
    .doctor-section h2.doctor-name,
    .doctor-section .doctor-name {
        font-size: 36px !important;
    }
    
    .doctor-section h3.doctor-badge,
    .doctor-section .doctor-badge {
        font-size: 16px !important;
    }
    
    .doctor-section p.doctor-description,
    .doctor-section .doctor-description {
        font-size: 16px !important;
        line-height: 22px !important;
    }
    
    .doctor-cta {
        width: 100%;
        max-width: 261px;
    }
}

@media (max-width: 480px) {
    .doctor-section h2.doctor-name,
.doctor-section .doctor-content h2.doctor-name,
.doctor-section .doctor-name {
    font-size: 48px !important;

}
    .doctor-left {
        min-height: 350px;
    }
    
    .doctor-right {
        padding: 30px 15px;
    }
    
    .doctor-section h2.doctor-name,
    .doctor-section .doctor-name {
        font-size: 28px !important;
    }
    
    .doctor-section h3.doctor-badge,
    .doctor-section .doctor-badge {
        font-size: 14px !important;
    }
    
    .doctor-section p.doctor-description,
    .doctor-section .doctor-description {
        font-size: 18px !important;
        line-height: 28px !important;
    }
    
    .doctor-cta {
        width: 100%;
        max-width: 261px;
        font-size: 14px;
        padding: 10px 20px;
    }
}

.logos-section {
    width: 100%;
    height: 180px;
    padding: 20px 0;
    background: rgba(239, 239, 239, 1);
    display: flex;
    align-items: center;
}

.logos-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    height: 100%;
}

.logo-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: 100%;
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width: 1440px) {
    .logos-container {
        padding: 0 60px;
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .logos-section {
        height: auto;
        min-height: 180px;
        padding: 40px 0;
    }
    
    .logos-container {
        padding: 0 40px;
        gap: 30px;
    }
    
    .logo-item {
        min-width: 180px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .logos-section {
        height: auto;
        min-height: 180px;
        padding: 30px 0;
    }
    
    .logos-container {
        padding: 0 30px;
        gap: 25px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
    
    .logo-item {
        width: 100%;
        max-width: 100%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .logos-section {
        height: auto;
        min-height: 180px;
        padding: 20px 0;
    }
    
    .logos-container {
        padding: 0 20px;
        gap: 20px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }
    
    .logo-item {
        width: 100%;
        max-width: 100%;
        padding: 10px;
    }
    
    .logo-image {
        max-height: 60px;
    }
}

.treatments-section {
    width: 100%;
    padding: 0px 0px 100px;
    background: #f7f7f7;
}

.treatments-section h2.treatments-title,
.treatments-section .treatments-title {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 48px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    text-transform: uppercase !important;
    text-align: center !important;
    color: rgba(23, 23, 23, 1) !important;
    margin-bottom: 60px !important;
}

.treatments-slider-wrap {
    position: relative;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.treatments-slider-wrap::before,
.treatments-slider-wrap::after {
    content: '';
    flex: 0 0 calc((100% - (370px * 3 + 24px * 2)) / 2);
    max-width: calc((100% - (370px * 3 + 24px * 2)) / 2);
    min-width: calc((100% - (370px * 3 + 24px * 2)) / 2);
}

.treatments-slider-wrap::before,
.treatments-slider-wrap::after {
    content: '';
    flex: 0 0 calc((100% - (370px * 3 + 24px * 2)) / 2);
    max-width: calc((100% - (370px * 3 + 24px * 2)) / 2);
    min-width: calc((100% - (370px * 3 + 24px * 2)) / 2);
}

.treatments-slider-container {
    width: calc(370px * 3 + 24px * 2) !important;
    max-width: calc(370px * 3 + 24px * 2) !important;
    min-width: calc(370px * 3 + 24px * 2) !important;
    overflow: hidden !important;
    position: relative;
    flex-shrink: 0;
}

.treatments-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    flex-shrink: 0 !important;
    justify-content: flex-start;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    scroll-snap-type: none;
    box-sizing: border-box;
}

.treatments-slider::-webkit-scrollbar {
    display: none;
}

.treatments-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.treatment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 370px !important;
    min-width: 370px !important;
    max-width: 370px !important;
    flex-shrink: 0 !important;
    box-sizing: border-box;
}

.treatment-image-wrapper {
    position: relative;
    width: 80%;
    margin-bottom: 35px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.treatment-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
}

.treatment-image.default-image {
    position: relative;
    z-index: 1;
}

.treatment-image.hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

.treatment-item:hover .treatment-image-wrapper {
    transform: scale(1.1);
}

/* Fade out default image only when hover image exists */
.treatment-image-wrapper:hover .treatment-image.default-image {
    opacity: 0;
}

.treatment-image-wrapper:hover .treatment-image.hover-image {
    opacity: 1;
}

/* Keep default image visible for items without hover images (using :only-child selector) */
.treatment-image-wrapper:hover .treatment-image.default-image:only-child {
    opacity: 1 !important;
}

.treatments-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 5;
    transition: opacity 0.3s ease;
}

.treatments-arrow:hover {
    opacity: 0.8;
}

.treatments-arrow-left {
    left: 70px !important;
}

.treatments-arrow-right {
    right: 70px !important;
}

.treatments-arrow-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    display: block;
    transition: none !important;
    transform: none !important;
}

.treatments-arrow:hover .treatments-arrow-icon {
    width: 36px !important;
    height: 36px !important;
    transform: none !important;
    transition: none !important;
    object-fit: contain !important;
}

.treatments-section .treatment-item h3.treatment-name,
.treatments-section .treatment-item .treatment-name,
.treatment-item h3.treatment-name,
.treatment-item .treatment-name {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 28px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    text-align: center !important;
    text-transform: uppercase !important;
    color: rgba(23, 23, 23, 1) !important;
    margin: 0 !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
}


@media (max-width: 1440px) {
    .treatments-slider-wrap {
        padding: 0 30px;
    }
    
    .treatment-item {
        width: 300px;
        min-width: 250px;
    }
    
    .treatments-section h2.treatments-title,
    .treatments-section .treatments-title {
        font-size: 42px !important;
        margin-bottom: 80px !important;
    }
}

@media (max-width: 1024px) {
    .treatments-section {
        padding: 80px 0;
    }
    
    .treatments-section h2.treatments-title,
    .treatments-section .treatments-title {
        font-size: 38px !important;
        margin-bottom: 80px !important;
    }
    
    .treatments-slider-wrap {
        padding: 0 40px;
    }
    
    .treatment-item {
        width: 230px;
        min-width: 230px;
    }
    
    .treatments-section .treatment-item h3.treatment-name,
    .treatments-section .treatment-item .treatment-name {
        font-size: 28px !important;
    }
}

@media (max-width: 768px) {
    .treatments-section {
        padding: 60px 0;
    }
    
    .treatments-section h2.treatments-title,
    .treatments-section .treatments-title {
        font-size: 32px !important;
        margin-bottom: 30px !important;
    }
    
    .treatments-slider-wrap {
        padding: 0 20px;
        overflow: visible !important;
    }
    
    .treatments-slider-wrap::before,
    .treatments-slider-wrap::after {
        display: none;
    }
    
    .treatments-slider-container {
        width: calc(100vw - 40px) !important;
        max-width: calc(100vw - 40px) !important;
        min-width: calc(100vw - 40px) !important;
        overflow: hidden !important;
    }
    
    .treatments-slider {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        gap: 16px;
        overflow-x: auto !important;
        scroll-snap-type: none;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .treatments-slider::-webkit-scrollbar {
        display: none;
    }
    
    .treatment-item {
        width: calc(100vw - 40px) !important;
        min-width: calc(100vw - 40px) !important;
        max-width: calc(100vw - 40px) !important;
        flex-shrink: 0 !important;
    }
    
    .treatments-arrow-left {
        left: 20px !important;
    }
    
    .treatments-arrow-right {
        right: 20px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .treatments-section .treatment-item h3.treatment-name,
    .treatments-section .treatment-item .treatment-name {
        font-size: 24px !important;
    }
}

@media (max-width: 480px) {
    .treatments-section {
        padding: 40px 0;
    }
    
    .treatments-section h2.treatments-title,
    .treatments-section .treatments-title {
        font-size: 28px !important;
        margin-bottom: 50px !important;
    }
    
    .treatments-slider-wrap {
        padding: 0 15px;
        overflow: visible !important;
    }
    
    .treatments-slider-container {
        width: calc(100vw - 30px) !important;
        max-width: calc(100vw - 30px) !important;
        min-width: calc(100vw - 30px) !important;
        overflow: hidden !important;
    }
    
    .treatments-slider {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
        gap: 14px;
        overflow-x: auto !important;
        scroll-snap-type: none;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .treatments-slider::-webkit-scrollbar {
        display: none;
    }
    
    .treatment-item {
        width: calc(100vw - 30px) !important;
        min-width: calc(100vw - 30px) !important;
        max-width: calc(100vw - 30px) !important;
        flex-shrink: 0 !important;
    }
    
    .treatments-arrow-left {
        left: 20px !important;
    }
    
    .treatments-arrow-right {
        right: 20px !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .treatments-arrow-icon {
        width: 32px;
        height: 32px;
    }
    
    .treatment-image {
        width: 80%;
    }
    
    .treatments-section .treatment-item h3.treatment-name,
    .treatments-section .treatment-item .treatment-name {
        font-size: 20px !important;
    }
}

.gallery-section {
    width: 100%;
    padding: 100px 0 90px;
    background: transparent;
}
.gallery-section h2.gallery-title,
.gallery-section .gallery-title {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 48px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    text-transform: uppercase !important;
    text-align: center !important;
    color: rgba(23, 23, 23, 1) !important;
    margin-bottom: 50px !important;
}

.gallery-slider-wrap {
    position: relative;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto 40px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

@media (min-width: 769px) {
    .gallery-slider-wrap {
        overflow: hidden;
    }
}

/* Desktop: Video slider style with absolute positioning */
@media (min-width: 769px) {
.gallery-slider {
        position: relative;
        width: 100%;
        max-width: 1200px;
        height: 400px;
        margin: 0 auto;
        display: block;
    }

    .gallery-card {
        position: absolute;
        top: 0;
        left: 50%;
        width: 600px;
        min-width: 600px;
        height: 380px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
        transform: translateX(-50%) scale(0.78);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
        background: #000;
        flex-shrink: 0;
        z-index: 1;
        pointer-events: none;
    }
    
    /* Only show active, prev, and next cards - hide all others */
    .gallery-card:not(.gallery-card-active):not(.gallery-card-prev):not(.gallery-card-next) {
        opacity: 0 !important;
        pointer-events: none;
        z-index: 0;
    }

    /* Default: First card visible as active (before JS runs) - only if no class */
    .gallery-card:first-child:not(.gallery-card-active):not(.gallery-card-prev):not(.gallery-card-next) {
        opacity: 1;
        transform: translateX(-50%) scale(1);
        z-index: 3;
    }

    /* Default: Second card visible as next (before JS runs) - only if no class */
    .gallery-card:nth-child(2):not(.gallery-card-active):not(.gallery-card-prev):not(.gallery-card-next) {
        opacity: 1;
        transform: translateX(35%) scale(0.65);
        z-index: 2;
    }

    /* Default: Last card visible as prev if more than 2 cards (before JS runs) - only if no class */
    .gallery-card:last-child:not(:first-child):not(:nth-child(2)):not(.gallery-card-active):not(.gallery-card-prev):not(.gallery-card-next) {
        opacity: 1;
        transform: translateX(-135%) scale(0.65);
        z-index: 2;
    }

    /* Center active card - LARGE */
    .gallery-card.gallery-card-active {
        transform: translateX(-50%) scale(1) !important;
        opacity: 1 !important;
        z-index: 3 !important;
        pointer-events: auto;
    }

    /* Left card - normal size */
    .gallery-card.gallery-card-prev {
        transform: translateX(-130%) scale(0.55) !important;
        opacity: 1 !important;
        z-index: 2 !important;
        pointer-events: auto;
    }

    /* Right card - normal size */
    .gallery-card.gallery-card-next {
        transform: translateX(30%) scale(0.55) !important;
        opacity: 1 !important;
        z-index: 2 !important;
        pointer-events: auto;
    }
}

/* Mobile: Scrollable flex layout (keep original) */
@media (max-width: 768px) {
    .gallery-slider-wrap {
        overflow: visible !important;
    }
    
    .gallery-slider {
        display: flex !important;
        gap: 16px;
        overflow-x: auto;
        overflow-y: visible;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        height: auto;
        position: relative;
        width: 100%;
        flex-wrap: nowrap;
    }

    .gallery-slider::-webkit-scrollbar {
        display: none;
    }

    .gallery-card {
        position: relative !important;
        width: calc(100vw - 80px);
        min-width: calc(100vw - 80px);
        max-width: calc(100vw - 80px);
        height: 200px;
        border-radius: 16px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
        transform: none !important;
        opacity: 1 !important;
        transition: transform 0.4s ease, opacity 0.4s ease;
        background: #000 !important;
        left: auto !important;
        top: auto !important;
        flex-shrink: 0;
        scroll-snap-align: center;
        z-index: 1 !important;
        visibility: visible !important;
    }
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.gallery-nav {
    margin-top: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.gallery-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: rgba(0, 0, 0, 1);
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-size: 16px;
    line-height: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-nav-btn:hover {
    opacity: 0.7;
}

.gallery-arrow-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
}

.gallery-nav-divider {
    width: 28px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav-divider::before {
    content: "";
    width: 1px;
    height: 20px;
    background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 1440px) {
    .gallery-slider-wrap {
        padding: 0 30px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-section {
        padding: 80px 0 70px;
    }
    
    .gallery-section h2.gallery-title,
    .gallery-section .gallery-title {
        font-size: 42px !important;
        margin-bottom: 40px !important;
    }
    
    .gallery-slider-wrap {
        padding: 0 40px;
    }
    
    .gallery-slider {
        height: 400px;
    }
    
    .gallery-card {
        width: 500px;
        min-width: 500px;
        height: 398px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 60px 0 60px;
    }
    
    .gallery-section h2.gallery-title,
    .gallery-section .gallery-title {
        font-size: 32px !important;
        margin-bottom: 30px !important;
    }
    
    .gallery-slider-wrap {
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    .gallery-section {
        padding: 50px 0 50px;
    }
    
    .gallery-section h2.gallery-title,
    .gallery-section .gallery-title {
        font-size: 28px !important;
        margin-bottom: 25px !important;
    }
    
    .gallery-slider-wrap {
        padding: 0 30px;
    }
    
    .gallery-card {
        width: calc(100vw - 80px);
        min-width: calc(100vw - 80px);
        max-width: calc(100vw - 80px);
        height: 200px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
        transform: translateX(-50%) scale(0.78);
        opacity: 0;
        transition: transform 0.4s ease, opacity 0.4s ease;
        background: #000 !important;
    }
    
    .gallery-nav {
        margin-top: 30px;
    }
    
    .gallery-nav-btn {
        font-size: 14px;
    }
    
    .gallery-arrow-icon {
        width: 12px;
        height: 12px;
    }
    
    .gallery-nav-divider {
        width: 24px;
    }
}

.reviews-section {
    width: 100%;
    padding: 100px 0;
    background: rgba(255, 255, 255, 1);
}

.reviews-section h2.reviews-title,
.reviews-section .reviews-title {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 48px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    text-transform: uppercase !important;
    text-align: center !important;
    color: rgba(23, 23, 23, 1) !important;
    margin-bottom: 50px !important;
    max-width: 1440px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 80px !important;
}

.reviews-plugin-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reviews-placeholder {
    max-width: 100%;
    height: auto;
    display: block;
}

.reviews-slider-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    overflow: hidden;
}

.reviews-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.review-card {
    width: 370px;
    min-width: 370px;
    height: 314px;
    background: rgba(247, 247, 247, 1);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-profile {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer-name {
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    color: rgba(0, 0, 0, 1);
    margin: 0;
}

.review-date {
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-style: normal;
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
}

.google-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.review-rating {
    margin-bottom: 16px;
}

.rating-image {
    width: auto;
    height: 20px;
    object-fit: contain;
}

.review-text {
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    color: rgba(0, 0, 0, 1);
    margin: 0;
    flex: 1;
    overflow: hidden;
}

@media (max-width: 1440px) {
    .reviews-section h2.reviews-title,
    .reviews-section .reviews-title {
        padding: 0 60px !important;
        font-size: 42px !important;
    }
    
    .reviews-slider-container {
        padding: 0 60px;
    }
}

@media (max-width: 1024px) {
    .reviews-section {
        padding: 80px 0;
    }
    
    .reviews-section h2.reviews-title,
    .reviews-section .reviews-title {
        font-size: 38px !important;
        margin-bottom: 40px !important;
        padding: 0 40px !important;
    }
    
    .reviews-slider-container {
        padding: 0 40px;
    }
    
    .review-card {
        width: 320px;
        min-width: 320px;
        height: auto;
        min-height: 314px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-section h2.reviews-title,
    .reviews-section .reviews-title {
        font-size: 32px !important;
        margin-bottom: 30px !important;
        padding: 0 20px !important;
    }
    
    .reviews-slider-container {
        padding: 0 20px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .reviews-slider-container::-webkit-scrollbar {
        display: none;
    }
    
    .reviews-slider {
        gap: 16px;
    }
    
    .review-card {
        width: calc(100vw - 80px);
        min-width: calc(100vw - 80px);
        scroll-snap-align: center;
    }
}

@media (max-width: 480px) {
    .reviews-section {
        padding: 40px 0;
    }
    
    .reviews-section h2.reviews-title,
    .reviews-section .reviews-title {
        font-size: 28px !important;
        margin-bottom: 25px !important;
        padding: 0 15px !important;
    }
    
    .reviews-slider-container {
        padding: 0 15px;
    }
    
    .review-card {
        width: calc(100vw - 60px);
        min-width: calc(100vw - 60px);
        padding: 20px;
    }
    
    .reviewer-name {
        font-size: 16px;
        line-height: 22px;
    }
    
    .review-text {
        font-size: 16px;
        line-height: 22px;
    }
}

.social-wall-section {
    width: 100%;
    padding: 100px 0;
    background: rgba(242, 241, 240, 1);
}

.social-wall-section h2.social-wall-title,
.social-wall-section .social-wall-title {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 64px !important;
    line-height: 72px !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    color: rgba(0, 0, 0, 1) !important;
    margin-bottom: 50px !important;
}

.social-feed-plugin-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-feed-placeholder {
    max-width: 20%;
    height: auto;
    display: block;
}

.social-wall-gallery {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto 50px;
    padding: 0 80px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.social-wall-item {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    cursor: pointer;
    height: 300px;
}

.social-wall-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.social-wall-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, background 0.3s ease;
    z-index: 2;
}

.social-wall-item:hover .social-wall-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
}

.social-wall-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-wall-item:hover .social-wall-icon {
    opacity: 1;
    transform: scale(1);
}

.social-wall-item:hover .social-wall-image {
    transform: scale(1.05);
}

.social-wall-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-wall-button {
    width: 283px;
    height: 43px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    background: rgba(190, 163, 104, 1);
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.social-wall-button:hover {
    background: rgba(168, 135, 74, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1440px) {
    .social-wall-gallery {
        padding: 0 60px;
    }
    
    .social-wall-section h2.social-wall-title,
    .social-wall-section .social-wall-title {
        font-size: 56px !important;
        line-height: 64px !important;
    }
}

@media (max-width: 1024px) {
    .social-wall-section {
        padding: 80px 0;
    }
    
    .social-wall-section h2.social-wall-title,
    .social-wall-section .social-wall-title {
        font-size: 48px !important;
        line-height: 54px !important;
        margin-bottom: 40px !important;
    }
    
    .social-wall-gallery {
        padding: 0 40px;
        gap: 15px;
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .social-wall-section {
        padding: 60px 0;
    }
    
    .social-wall-section h2.social-wall-title,
    .social-wall-section .social-wall-title {
        font-size: 38px !important;
        line-height: 44px !important;
        margin-bottom: 30px !important;
    }
    
    .social-wall-gallery {
        padding: 0 30px;
        gap: 12px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .social-wall-section {
        padding: 40px 0;
    }
    
    .social-wall-section h2.social-wall-title,
    .social-wall-section .social-wall-title {
        font-size: 32px !important;
        line-height: 38px !important;
        margin-bottom: 25px !important;
    }
    
    .social-wall-gallery {
        padding: 0 20px;
        gap: 10px;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .social-wall-button {
        width: 100%;
        max-width: 283px;
    }
}

.news-section {
    width: 100%;
    padding: 60px 0 !important;
    background: rgba(255, 255, 255, 1);
}

.news-section h2.news-title,
.news-section .news-title {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 48px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    text-transform: uppercase !important;
    text-align: center !important;
    color: rgba(23, 23, 23, 1) !important;
    margin-bottom: 50px !important;
    max-width: 1440px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 80px !important;
}

/* Remove all link borders and outlines from news section */
.news-section a,
.news-section a:focus,
.news-section a:active,
.news-section a:hover,
.news-section a:visited {
    text-decoration: none !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.news-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 80px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.news-card {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

.news-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.news-content {
    background: #fff;
    padding: 20px 30px;
    border-radius: 0 0 16px 16px;
}

.news-card a {
    text-decoration: none !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.news-card a:focus,
.news-card a:active,
.news-card a:hover {
    text-decoration: none !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.news-content * {
    text-decoration: none !important;
    outline: none !important;
    border: none !important;
}




.news-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease-in-out, transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateZ(0) scale(1);
    will-change: opacity, transform;
    backface-visibility: hidden;
}

.news-date {
    font-family: 'Gotham', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif !important;
    font-weight: 300 !important;
    font-size: 14px !important;
    color: rgba(0, 0, 0, 0.6) !important;
    margin-bottom: 10px !important;
    text-transform: none !important;
    text-decoration: none !important;
    outline: none !important;
    border: none !important;
}

.news-image.default-image {
    opacity: 1;
    z-index: 1;
}

.news-image.hover-image {
    opacity: 0;
    z-index: 1;
}

.news-card:hover .news-image.default-image {
    opacity: 0;
    transform: translateZ(0) scale(1.05);
}

.news-card:hover .news-image.hover-image {
    opacity: 1;
    transform: translateZ(0) scale(1.05);
}


.news-section .news-card h3.news-headline,
.news-section .news-card .news-headline,
.news-card h3.news-headline,
.news-card .news-headline {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 22px !important;
    line-height: 120% !important;
    letter-spacing: 0% !important;
    text-transform: uppercase !important;
    color: rgba(0, 0, 0, 1) !important;
    margin: 0 !important;
    text-decoration: none !important;
    outline: none !important;
    border: none !important;
}

.news-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 100;
    transition: opacity 0.3s ease;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.news-arrow:hover {
    opacity: 0.8;
}

.news-arrow-left {
    left: 50px;
    display: block !important;
}

.news-arrow-right {
    right: 50px;
    display: block !important;
}

.news-arrow-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    transition: none !important;
    transform: none !important;
}

.news-arrow:hover .news-arrow-icon {
    width: 50px !important;
    height: 50px !important;
    transform: none !important;
    transition: none !important;
    object-fit: contain !important;
}

@media (max-width: 1440px) {
    .news-section h2.news-title,
    .news-section .news-title {
        padding: 0 60px !important;
        font-size: 42px !important;
    }
    
    .news-container {
        padding: 0 60px;
    }
    
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .news-card {
        width: 100%;
        min-width: auto;
        height: 350px !important;
    }
    
    .news-image-wrapper {
        height: 240px;
    }
}

@media (max-width: 1024px) {
    .news-section {
        padding: 80px 0;
    }
    
    .news-section h2.news-title,
    .news-section .news-title {
        padding: 0 40px !important;
        font-size: 38px !important;
        margin-bottom: 40px !important;
    }
    
    .news-container {
        padding: 0 60px;
    }
    
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .news-card {
        width: 100%;
        min-width: auto;
    }
    
    .news-image-wrapper {
        height: 220px;
    }
    
    .news-section .news-card h3.news-headline,
    .news-section .news-card .news-headline {
        font-size: 22px !important;
    }
    
    .news-content {
        padding: 18px 25px;
    }
}

@media (max-width: 768px) {
    .news-section {
        padding: 60px 0;
    }
    
    .news-section h2.news-title,
    .news-section .news-title {
        padding: 0 30px !important;
        font-size: 32px !important;
        margin-bottom: 30px !important;
    }
    
    .news-slider-container {
        padding: 0 20px;
        max-width: 100%;
    }
    
    .news-slider-wrapper {
        width: 100%;
        max-width: 100%;
        flex: 1;
        overflow: hidden;
    }
    
    .news-arrow {
        display: block !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        z-index: 10;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 50%;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }
    
    .news-arrow-left {
        left: 10px;
    }
    
    .news-arrow-right {
        right: 10px;
    }
    
    .news-arrow-icon {
        width: 24px;
        height: 24px;
    }
    
    .news-slider {
        display: flex;
        gap: 20px;
        overflow: visible;
        width: auto;
        transition: transform 0.5s ease;
        will-change: transform;
    }
    
    .news-card {
        width: calc(100vw - 40px);
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        border-radius: 12px;
        flex-shrink: 0;
        height: 260px !important;
    }
    
    .news-image-wrapper {
        height: 180px;
    }
    
    .news-content {
        padding: 15px;
    }
    
    .news-section .news-card h3.news-headline,
    .news-section .news-card .news-headline {
        font-size: 20px !important;
    }
    
    .news-date {
        font-size: 12px !important;
        margin-bottom: 8px !important;
    }
    
    .news-card a,
    .news-card a:focus,
    .news-card a:active,
    .news-card a:hover {
        text-decoration: none !important;
        outline: none !important;
        border: none !important;
        box-shadow: none !important;
    }
}

@media (max-width: 480px) {
    .news-section {
        padding: 40px 0;
    }
    
    .news-section h2.news-title,
    .news-section .news-title {
        padding: 0 20px !important;
        font-size: 28px !important;
        margin-bottom: 25px !important;
    }
    
    .news-container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
    }
    
    .news-card {
        width: 100%;
        min-width: auto;
        max-width: 100%;
        border-radius: 12px;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: 260px !important;
    }
    
    .news-image-wrapper {
        height: 160px;
    }
    
    .news-content {
        padding: 12px;
    }
    
    .news-section .news-card h3.news-headline,
    .news-section .news-card .news-headline {
        font-size: 18px !important;
    }
    
    .news-date {
        font-size: 11px !important;
        margin-bottom: 6px !important;
    }
    
    .news-card a,
    .news-card a:focus,
    .news-card a:active,
    .news-card a:hover {
        text-decoration: none !important;
        outline: none !important;
        border: none !important;
        box-shadow: none !important;
    }
}

.map-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.map-container {
    width: 1298px;
    max-width: calc(100% - 142px);
    height: 402px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    margin: 0;
    padding: 0;
    border-radius: 30px;
}

@media (max-width: 1440px) {
    .map-container {
        width: 1298px;
        max-width: calc(100% - 142px);
    }
}

@media (max-width: 1024px) {
    .map-container {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .map-section {
        padding: 40px 0;
    }
    
    .map-container {
        height: 300px;
        width: calc(100% - 40px);
        max-width: none;
        border-radius: 20px;
    }
    
    .map-iframe {
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .map-section {
        padding: 30px 0;
    }
    
    .map-container {
        height: 250px;
        width: calc(100% - 30px);
        max-width: none;
        border-radius: 16px;
    }
    
    .map-iframe {
        border-radius: 16px;
    }
}

.contact-section {
    width: 100%;
    padding: 70px 0;
    background-image: url('https://drvikeshvij.com/wp-content/uploads/2026/01/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.contact-container {
    max-width: 1440px;
    width: 100%;
    padding: 0px 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin: 0 auto;
    position: relative;
}

.contact-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 0;
    padding-top: 35px;
}


.contact-title {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
    font-size: 48px !important;
    line-height: 60px !important;
    letter-spacing: 0% !important;
    text-transform: uppercase !important;
    color: rgba(0, 0, 0, 1) !important;
    margin: 0 !important;
    text-align: left !important;
}

.contact-form {
    width: 589px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 0;
       height: 660px !important;

}

.form-input,
.form-textarea {
    width: 100%;
    height: 64px;
    padding: 0 24px;
    border: 1px solid rgba(23, 23, 23, 1);
    border-radius: 16px;
    background: rgba(255, 255, 255, 1);
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
    color: rgba(0, 0, 0, 1);
    outline: none;
    transition: all 0.3s ease;
}

.form-textarea {
    height: auto;
    min-height: 120px;
    padding: 18px 24px;
    resize: vertical;
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(0, 0, 0, 0.6);
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0;
}

.form-input:focus,
.form-textarea:focus {
    border-color: rgba(23, 23, 23, 0.8);
}
.page-id-1897  .postid-2216 form.wpcf7-form.init input, form.wpcf7-form.init select, form.wpcf7-form.invalid input, form.wpcf7-form.invalid select {
    margin-bottom: 10px !important;
}
.page-id-1897 .postid-2216 form.wpcf7-form.init input, form.wpcf7-form.init select, form.wpcf7-form.invalid input, form.wpcf7-form.invalid select {
    margin-bottom: 10px !important;
}
.page-id-1897 .postid-2215 form.wpcf7-form.init input, form.wpcf7-form.init select, form.wpcf7-form.invalid input, form.wpcf7-form.invalid select {
    margin-bottom: 10px !important;
}
.form-submit {
    width: 70%;
    height: 46px;
    padding: 12px 30px;
    border: 1px solid rgba(23, 23, 23, 1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 1);
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 1);
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.form-submit:hover {
    background: rgba(190, 163, 104, 1);
    border-color: rgba(190, 163, 104, 1);
    color: rgba(255, 255, 255, 1);
}

@media (max-width: 1440px) {
    .contact-container {
        padding: 60px 60px;
        gap: 50px;
    }
    
    .contact-form {
        left: auto;
        position: relative;
        top: 0;
    }
    
    .contact-title {
        font-size: 42px;
        line-height: 54px;
    }
}

@media (max-width: 1024px) {
    .contact-section {
        padding: 70px 20px;
    }
    
    .contact-container {
        flex-direction: column;
        padding: 50px 40px;
        gap: 40px;
    }
    
    .contact-content {
        max-width: 100%;
        text-align: left;
    }
    
    .contact-title {
        font-size: 38px;
        line-height: 48px;
    }
    
    .contact-form {
        width: 100%;
        max-width: 489px;
        position: relative;
        top: 0;
        left: 0;
    }
    
    .form-input,
    .form-textarea {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-container {
        padding: 40px 30px !important;
        gap: 30px;
    }
    
    .contact-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .contact-form {
        gap: 20px;
        padding: 30px;
        width: 350px !important;
    }
    
    .form-input,
    .form-textarea {
        font-size: 16px;
        padding: 14px 18px;
    }
    
    .form-submit {
        font-size: 16px;
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 15px !important;
    }
    
    .contact-container {
        padding: 30px 20px !important ;
        gap: 25px;
    }
    
    .contact-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .contact-form {
        gap: 18px;
        padding: 25px 20px;
        height: 450px;
        width: 350px !important;
    }
    
    .form-input,
    .form-textarea {
        font-size: 14px;
        padding: 12px 16px;
        height: 56px;
    }
    
    .form-textarea {
        min-height: 100px;
    }
    
    .form-submit {
        font-size: 14px;
        width: 100% !important;
        max-width: 320px;
        height: 42px;
    }
}

.footer-section {
    width: 100%;
    background: rgba(69, 68, 64, 1);
    padding: 70px 0 0;
    position: relative;
}

.footer-container {
    max-width: 1444px;
    width: 100%;
    margin: 0 auto;
    padding: 0 100px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

.footer-logo-image {
    width: 290px;
    height: 94px;
    object-fit: contain;
}

.footer-divider {
    width: 100%;
    max-width: 1300px;
    height: 0;
    border-top: 2px solid rgba(190, 163, 104, 0.32);
    margin: 0 auto 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-treatments {
    width: 212px;
    gap: 16px;
}

.footer-location-contact {
    width: 461px;
    gap: 14px;
}

.footer-social {
    width: 215px;
    gap: 14px;
}

.footer-heading {
    font-family: 'Goldenbook', Georgia, 'Times New Roman', serif;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    line-height: 31px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    margin: 0 0 0 0;
}

.footer-contact-heading {
    line-height: 40px;
    text-align: left;
    margin-top: 50px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list li a {
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: rgba(190, 163, 104, 1);
}

.footer-text {
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 1);
    margin: 0;
}

.footer-contact .footer-text {
    line-height: 30px;
}

.footer-location {
    margin-bottom: 0;
}

.footer-contact {
    margin-top: 0;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.social-icon-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-icon-link:hover {
    transform: scale(1.1);
}

.social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.footer-links {
    list-style: none;
    padding: 20px 0px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links li a {
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: right;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: rgba(190, 163, 104, 1);
}

.footer-bottom {
    width: 100%;
    height: 65px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 70px;
    margin-top: 50px;
}

.footer-copyright {
    font-family: 'Gotham', Georgia, 'Times New Roman', serif !important;
    font-weight: 300;
    font-style: normal;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    color: rgba(255, 255, 255, 1);
    margin: 0;
    text-align: center;
}
.footer-column.footer-treatments{
    margin-right: -50px;
}
@media (max-width: 1440px) {
    .footer-container {
        padding: 0 100px;
    }
    
    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .footer-treatments,
    .footer-location-contact,
    .footer-social {
        width: auto;
        /* flex: 1; */
        min-width: 200px;
    }
    
    .footer-bottom {
        padding: 0 60px;
    }
}

@media (max-width: 1024px) {
    .footer-section {
        padding: 60px 0 0;
    }
    
    .footer-container {
        padding: 0 40px;
    }
    
    .footer-logo-image {
        width: 240px;
        height: 78px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-treatments,
    .footer-location-contact,
    .footer-social {
        width: 100%;
    }
    
    .footer-bottom {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 0 0;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-logo-image {
        width: 200px;
        height: 65px;
    }
    
    .footer-divider {
        margin-bottom: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-treatments,
    .footer-location-contact,
    .footer-social {
        width: 100%;
    }
    
    .footer-heading {
        font-size: 22px;
        line-height: 28px;
    }
    
    .footer-text,
    .footer-list li a,
    .footer-links li a {
        font-size: 16px;
    }
    
    .footer-bottom {
        padding: 0 30px;
        height: auto;
        min-height: 65px;
    }
    
    .footer-copyright {
        font-size: 16px;
        line-height: 24px;
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 40px 0 0;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-logo-image {
        width: 180px;
        height: 58px;
    }
    
    .footer-divider {
        margin-bottom: 30px;
    }
    
    .footer-content {
        gap: 25px;
    }
    
    .footer-heading {
        font-size: 20px;
        line-height: 26px;
    }
    
    .footer-text,
    .footer-list li a,
    .footer-links li a {
        font-size: 14px;
    }
    
    .footer-contact .footer-text {
        line-height: 24px;
    }
    
    .footer-bottom {
        padding: 0 20px;
    }
    
    .footer-copyright {
        font-size: 14px;
        line-height: 20px;
    }
}


