/**
 * OM Plugin Styles
 */
 
.om-header {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 15px 30px; 
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease; 
}
 
.om-header.sticky {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}  
  
.om-header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto; 
    gap: 30px;
}

/* Logo Section */ 
.om-header__logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.om-header__logo-link {
    text-decoration: none;
    display: block;
}

.om-header__logo {
    width: 60px;
    height: 60px;
    background-color: #20b2aa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.om-header__logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.om-header__logo-icon {
    font-size: 32px;
    color: #ffffff;
}

.om-header__company {
    display: flex;
    flex-direction: column;
}

.om-header__company-name {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
}

.om-header__company-subtitle {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.2;
}

/* Navigation */
.om-header__navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.om-header__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.om-header__menu-item-wrapper {
    margin: 0;
    padding: 0;
}

.om-header__menu-item {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
    display: block;
}

.om-header__menu-item:hover {
    color: #20b2aa;
}

/* Actions (Phone & Button) */
.om-header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.om-header__phone {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #20b2aa;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.om-header__phone:hover {
    opacity: 0.8;
}

.om-header__phone-icon {
    font-size: 20px;
    color: #20b2aa;
}

.om-header__phone-number {
    color: #20b2aa;
}

.om-header__button {
    background-color: #20b2aa;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    white-space: nowrap;
}

.om-header__button:hover {
    background-color: #1a9a94;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Mobile Menu Toggle Button */
.om-header__menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent; 
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.om-header__menu-toggle-line {
    width: 100%;
    height: 3px;
    background-color: #20b2aa;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.om-header--menu-open .om-header__menu-toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.om-header--menu-open .om-header__menu-toggle-line:nth-child(2) {
    opacity: 0;
}

.om-header--menu-open .om-header__menu-toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .om-header__container {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .om-header__navigation {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .om-header__menu {
        gap: 20px;
    }
    
    .om-header__phone-number {
        display: none;
    }
}

@media (max-width: 768px) {
    .om-header {
        padding: 12px 20px;
    }
    
    .om-header__container {
        flex-wrap: nowrap;
        gap: 15px;
    }
    
    .om-header__logo-section {
        flex: 1;
        min-width: 0;
    }
    
    .om-header__logo {
        width: 50px;
        height: 50px;
    }
    
    .om-header__logo-icon {
        font-size: 28px;
    }
    
    .om-header__company-name {
        font-size: 16px;
    }
    
    .om-header__company-subtitle {
        font-size: 11px;
    }
    
    .om-header__navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        order: unset;
        width: 100%;
        margin-top: 12px;
        border-radius: 0 0 8px 8px;
    }
    
    .om-header--menu-open .om-header__navigation {
        max-height: 500px;
        padding: 20px;
    }
    
    .om-header__menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }
    
    .om-header__menu-item {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .om-header__menu-item:last-child {
        border-bottom: none;
    }
    
    .om-header__actions {
        gap: 15px;
        flex-shrink: 0;
    }
    
    .om-header__phone {
        display: none;
    }
    
    .om-header__button {
        padding: 10px 18px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .om-header__menu-toggle {
        display: flex;
    }
}

@media (max-width: 480px) {
    .om-header {
        padding: 10px 15px;
    }
    
    .om-header__container {
        gap: 10px;
    }
    
    .om-header__logo {
        width: 45px;
        height: 45px;
    }
    
    .om-header__logo-icon {
        font-size: 24px;
    }
    
    .om-header__company-name {
        font-size: 14px;
    }
    
    .om-header__company-subtitle {
        font-size: 10px;
    }
    
    .om-header__button {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .om-header__menu-toggle {
        width: 26px;
        height: 26px;
    }
    
    .om-header__actions {
        gap: 10px;
    }
}

/**
 * OM Hero Widget Styles
 */

.om-hero {
    padding: 60px 30px;
    background-color: #f8f9fa;
}

.om-hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Left Content */
.om-hero__content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.om-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #87ceeb;
    padding: 8px 16px;
    border-radius: 8px;
    width: fit-content;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}

.om-hero__badge-icon {
    color: #ffffff;
    font-weight: bold;
    font-size: 16px;
}

.om-hero__title {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #333333;
}

.om-hero__title-normal {
    color: #333333;
}

.om-hero__title-highlight {
    color: #20b2aa;
    font-style: italic;
}

.om-hero__description {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: #666666;
    max-width: 600px;
}

.om-hero__description strong {
    font-weight: 700;
    color: #333333;
}

.om-hero__buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.om-hero__button {
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.om-hero__button-primary {
    background-color: #20b2aa;
    color: #ffffff;
}

.om-hero__button-primary:hover {
    background-color: #1a9a94;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.3);
    color: #ffffff;
}

.om-hero__button-secondary {
    background-color: #ffffff;
    color: #333333;
    border: 2px solid #e0e0e0;
}

.om-hero__button-secondary:hover {
    border-color: #20b2aa;
    color: #20b2aa;
    transform: translateY(-2px);
}

.om-hero__button-icon {
    font-size: 16px;
    margin-left: 8px;
}

.om-hero__button-primary .om-hero__button-icon {
    color: #ffffff;
}

/* Right Image */
.om-hero__image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.om-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.om-hero__overlay {
    position: absolute;
    background-color: #ffffff;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    max-width: 280px;
}

.om-hero__overlay--bottom-left {
    bottom: 30px;
    left: 30px;
}

.om-hero__overlay-number {
    font-size: 36px;
    font-weight: 700;
    color: #20b2aa;
    line-height: 1;
    margin-bottom: 8px;
}

.om-hero__overlay-text {
    font-size: 12px;
    font-weight: 500;
    color: #666666;
    line-height: 1.4;
}

.om-hero__overlay-text--line1 {
    font-size: 14px;
    color: #333333;
    margin-top: 8px;
}

.om-hero__overlay-text--line2 {
    font-size: 12px;
    color: #666666;
    margin-top: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .om-hero__container {
        gap: 40px;
    }
    
    .om-hero__title {
        font-size: 40px;
    }
    
    .om-hero__description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .om-hero {
        padding: 40px 20px;
    }
    
    .om-hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .om-hero__image-wrapper {
        order: -1;
    }
    
    .om-hero__title {
        font-size: 32px;
    }
    
    .om-hero__description {
        font-size: 16px;
    }
    
    .om-hero__buttons {
        flex-direction: column;
    }
    
    .om-hero__button {
        width: 100%;
        justify-content: center;
    }
    
    .om-hero__overlay--bottom-left {
        bottom: 20px;
        left: 20px;
        max-width: 240px;
        padding: 16px 20px;
    }
    
    .om-hero__overlay-number {
        font-size: 28px;
    }
    
    .om-hero__overlay-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .om-hero {
        padding: 30px 15px;
    }
    
    .om-hero__title {
        font-size: 28px;
    }
    
    .om-hero__badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .om-hero__overlay--bottom-left {
        bottom: 15px;
        left: 15px;
        max-width: 200px;
        padding: 12px 16px;
    }
    
    .om-hero__overlay-number {
        font-size: 24px;
    } 
}

/**
 * OM Services Widget Styles
 */

.om-services {
    padding: 60px 30px;
    background-color: #ffffff;
}

.om-services__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.om-services__header-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.om-services__badge {
    display: inline-block;
    background-color: #20b2aa20;
    color: #20b2aa;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.om-services__title {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
}

.om-services__header-right {
    display: flex;
    align-items: center;
}

.om-services__description {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

.om-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.om-services__card {
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.om-services__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.om-services__card--teal {
    background-color: #20b2aa;
    color: #ffffff;
}

.om-services__card--white {
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #e0e0e0;
}

.om-services__card-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.om-services__card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.om-services__card-icon-wrapper--teal {
    background-color: #ffffff;
    color: #20b2aa;
}

.om-services__card-icon-wrapper--white {
    background-color: #e6f7f6;
    color: #20b2aa;
}

.om-services__card-icon-wrapper i,
.om-services__card-icon-wrapper svg {
    font-size: 28px;
    width: 28px;
    height: 28px;
}

.om-services__card-title {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.om-services__card--teal .om-services__card-title {
    color: #ffffff;
}

.om-services__card--white .om-services__card-title {
    color: #333333;
}

.om-services__card-description {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    flex: 1;
}

.om-services__card--teal .om-services__card-description {
    color: #ffffff;
    opacity: 0.95;
}

.om-services__card--white .om-services__card-description {
    color: #666666;
}

.om-services__card-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
    margin-top: 10px;
}

.om-services__card-button--teal {
    background-color: #ffffff;
    color: #333333;
}

.om-services__card-button--teal:hover {
    background-color: #f0f0f0;
    transform: translateX(5px);
    color: #333333;
}

.om-services__card-button--white {
    background-color: #20b2aa;
    color: #ffffff;
}

.om-services__card-button--white:hover {
    background-color: #1a9a94;
    transform: translateX(5px);
    color: #ffffff;
}

.om-services__card-button-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.om-services__card-button:hover .om-services__card-button-icon {
    transform: translateX(3px);
}

.om-services__card-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-top: auto;
}

.om-services__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 16px 16px;
}

/* Decorative background elements for teal card */
.om-services__card--teal::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.om-services__card--teal::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    border-radius: 20px;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .om-services {
        padding: 50px 25px;
    }
    
    .om-services__header {
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .om-services__title {
        font-size: 36px;
    }
    
    .om-services__grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .om-services {
        padding: 40px 20px;
    }
    
    .om-services__header {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .om-services__title {
        font-size: 32px;
    }
    
    .om-services__description {
        font-size: 15px;
    }
    
    .om-services__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .om-services__card-content {
        padding: 30px;
    }
    
    .om-services__card-title {
        font-size: 24px;
    }
    
    .om-services__card-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .om-services {
        padding: 30px 15px;
    }
    
    .om-services__header {
        margin-bottom: 30px;
    }
    
    .om-services__title {
        font-size: 28px;
    }
    
    .om-services__badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .om-services__card-content {
        padding: 25px;
        gap: 15px;
    }
    
    .om-services__card-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .om-services__card-icon-wrapper i,
    .om-services__card-icon-wrapper svg {
        font-size: 24px;
        width: 24px;
        height: 24px;
    }
    
    .om-services__card-title {
        font-size: 22px;
    }
    
    .om-services__card-description {
        font-size: 14px;
    }
    
    .om-services__card-button {
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .om-services__card-image-wrapper {
        height: 200px;
    } 
}

/**
 * OM Services Alt Widget Styles
 */

.om-services-alt { 
    padding: 60px 30px;
    background-color: #f5f5f5;
}

.om-services-alt__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.om-services-alt__card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.om-services-alt__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.om-services-alt__card--white {
    background-color: #ffffff;
}

.om-services-alt__card--beige {
    background-color: #f5e6d3;
}

.om-services-alt__card--teal {
    background-color: #20b2aa;
    color: #ffffff;
}

/* Image Position: Bottom */
.om-services-alt__card--image-bottom {
    flex-direction: column;
}

.om-services-alt__card--image-bottom .om-services-alt__card-content {
    padding: 40px;
    flex: 1;
}

.om-services-alt__card--image-bottom .om-services-alt__card-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.om-services-alt__card--image-bottom .om-services-alt__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 16px 16px;
}

/* Image Position: Right */
.om-services-alt__card--image-right {
    flex-direction: row;
}

.om-services-alt__card--image-right .om-services-alt__card-content {
    padding: 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.om-services-alt__card--image-right .om-services-alt__card-image-wrapper {
    width: 300px;
    height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.om-services-alt__card--image-right .om-services-alt__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 16px 16px 0;
}

/* Image Position: Top */
.om-services-alt__card--image-top {
    flex-direction: column-reverse;
}

.om-services-alt__card--image-top .om-services-alt__card-content {
    padding: 40px;
    flex: 1;
}

.om-services-alt__card--image-top .om-services-alt__card-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.om-services-alt__card--image-top .om-services-alt__card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

/* Card Content */
.om-services-alt__card-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.om-services-alt__card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.om-services-alt__card-icon-wrapper--white {
    background-color: #20b2aa;
    color: #ffffff;
}

.om-services-alt__card-icon-wrapper i,
.om-services-alt__card-icon-wrapper svg {
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: inherit;
}

.om-services-alt__card-title {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: #333333;
}

.om-services-alt__card--beige .om-services-alt__card-title {
    color: #8b6f47;
}

.om-services-alt__card--teal .om-services-alt__card-title {
    color: #ffffff;
}

.om-services-alt__card-description {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    flex: 1;
}

.om-services-alt__card--beige .om-services-alt__card-description {
    color: #666666;
}

.om-services-alt__card--teal .om-services-alt__card-description {
    color: #ffffff;
    opacity: 0.95;
}

.om-services-alt__card-link {
    display: inline-block;
    color: #8b6f47;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 500;
    margin-top: 10px;
    transition: color 0.3s ease;
    width: fit-content;
}

.om-services-alt__card-link:hover {
    color: #6b5537;
    text-decoration: underline;
}

.om-services-alt__card--teal .om-services-alt__card-link {
    color: #ffffff;
    text-decoration: underline;
}

.om-services-alt__card--teal .om-services-alt__card-link:hover {
    color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .om-services-alt {
        padding: 50px 25px;
    }
    
    .om-services-alt__grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 25px;
    }
    
    .om-services-alt__card-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .om-services-alt {
        padding: 40px 20px;
    }
    
    .om-services-alt__grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .om-services-alt__card--image-right {
        flex-direction: column;
    }
    
    .om-services-alt__card--image-right .om-services-alt__card-content {
        padding: 30px;
    }
    
    .om-services-alt__card--image-right .om-services-alt__card-image-wrapper {
        width: 100%;
        height: 250px;
        order: -1;
    }
    
    .om-services-alt__card--image-right .om-services-alt__card-image {
        border-radius: 16px 16px 0 0;
    }
    
    .om-services-alt__card--image-bottom .om-services-alt__card-content,
    .om-services-alt__card--image-top .om-services-alt__card-content {
        padding: 30px;
    }
    
    .om-services-alt__card-title {
        font-size: 26px;
    }
    
    .om-services-alt__card-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .om-services-alt {
        padding: 30px 15px;
    }
    
    .om-services-alt__card--image-bottom .om-services-alt__card-content,
    .om-services-alt__card--image-top .om-services-alt__card-content,
    .om-services-alt__card--image-right .om-services-alt__card-content {
        padding: 25px;
        gap: 12px;
    }
    
    .om-services-alt__card-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .om-services-alt__card-icon-wrapper i,
    .om-services-alt__card-icon-wrapper svg {
        font-size: 24px;
        width: 24px;
        height: 24px;
    }
    
    .om-services-alt__card-title {
        font-size: 24px;
    }
    
    .om-services-alt__card-description {
        font-size: 14px;
    }
    
    .om-services-alt__card-link {
        font-size: 15px;
    }
    
    .om-services-alt__card--image-bottom .om-services-alt__card-image-wrapper,
    .om-services-alt__card--image-top .om-services-alt__card-image-wrapper,
    .om-services-alt__card--image-right .om-services-alt__card-image-wrapper {
        height: 200px;
    }
}

/**
 * OM Contact Widget Styles
 */

.om-contact {
    padding: 60px 30px;
    background-color: #f5f5f5;
}

.om-contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

/* Left Column: Contact Info */
.om-contact__info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.om-contact__title {
    margin: 0;
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
}

.om-contact__info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.om-contact__info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.om-contact__info-icon {
    width: 60px;
    height: 60px;
    background-color: #20b2aa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 24px;
} 

.om-contact__info-icon i,
.om-contact__info-icon svg {
    color: #ffffff;
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.om-contact__info-content {
    flex: 1;
}

.om-contact__info-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
}

.om-contact__info-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

.om-contact__info-note {
    margin: 8px 0 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: #999999;
}

.om-contact__info-link {
    color: #20b2aa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.om-contact__info-link:hover {
    color: #1a9a94;
    text-decoration: underline;
}

.om-contact__social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.om-contact__social-link {
    width: 40px;
    height: 40px;
    border: 2px solid #333333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.om-contact__social-link:hover {
    background-color: #20b2aa;
    border-color: #20b2aa;
    color: #ffffff;
    transform: translateY(-2px);
}

.om-contact__social-link i,
.om-contact__social-link svg {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

/* Right Column: Contact Form */
.om-contact__form-wrapper {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.om-contact__form-title {
    margin: 0 0 30px 0;
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    line-height: 1.2;
}

.om-contact__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.om-contact__form-field {
    display: flex;
    flex-direction: column;
}

.om-contact__form-input,
.om-contact__form-select,
.om-contact__form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: #333333;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.om-contact__form-input:focus,
.om-contact__form-select:focus,
.om-contact__form-textarea:focus {
    outline: none;
    border-color: #20b2aa;
}

.om-contact__form-input::placeholder,
.om-contact__form-textarea::placeholder {
    color: #999999;
}

.om-contact__form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.om-contact__form-textarea {
    resize: vertical;
    min-height: 120px;
}

.om-contact__form-button {
    padding: 16px 32px;
    background-color: #20b2aa;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.om-contact__form-button:hover {
    background-color: #1a9a94;
    transform: translateY(-2px);
}

.om-contact__form-button:active {
    transform: translateY(0);
}

.om-contact__form-message {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 10px;
}

.om-contact__form-message--success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.om-contact__form-message--error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .om-contact {
        padding: 50px 25px;
    }
    
    .om-contact__container {
        gap: 40px;
    }
    
    .om-contact__title {
        font-size: 32px;
    }
    
    .om-contact__form-wrapper {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .om-contact {
        padding: 40px 20px;
    }
    
    .om-contact__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .om-contact__title {
        font-size: 28px;
    }
    
    .om-contact__info-items {
        gap: 25px;
    }
    
    .om-contact__info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .om-contact__info-title {
        font-size: 16px;
    }
    
    .om-contact__info-text {
        font-size: 15px;
    }
    
    .om-contact__form-wrapper {
        padding: 30px;
    }
    
    .om-contact__form-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
}

@media (max-width: 480px) {
    .om-contact {
        padding: 30px 15px;
    }
    
    .om-contact__container {
        gap: 30px;
    }
    
    .om-contact__title {
        font-size: 24px;
    }
    
    .om-contact__info-item {
        gap: 15px;
    }
    
    .om-contact__info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .om-contact__info-title {
        font-size: 15px;
    }
    
    .om-contact__info-text {
        font-size: 14px;
    }
    
    .om-contact__form-wrapper {
        padding: 25px;
    }
    
    .om-contact__form-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .om-contact__form {
        gap: 15px;
    }
    
    .om-contact__form-input,
    .om-contact__form-select,
    .om-contact__form-textarea {
        padding: 12px 14px;
        font-size: 15px;
    }
    
    .om-contact__form-button {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .om-contact__social-link {
        width: 36px;
        height: 36px;
    }
    
    .om-contact__social-link i,
    .om-contact__social-link svg {
        font-size: 16px;
        width: 16px;
        height: 16px;
    }
}

/**
 * OM Footer Widget Styles
 */

.om-footer {
    background-color: #f5f5f5;
    padding: 40px 30px;
    border-top: 1px solid #e0e0e0;
}

.om-footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 40px;
}

/* Left: Logo and Copyright */
.om-footer__left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.om-footer__logo-section {
    display: flex;
    align-items: center;
}

.om-footer__logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.om-footer__logo-link:hover {
    opacity: 0.8;
}

.om-footer__logo {
    width: 50px;
    height: 50px;
    background-color: #20b2aa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.om-footer__logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.om-footer__logo-icon {
    font-size: 28px;
    color: #ffffff;
}

.om-footer__company-name {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.2;
}

.om-footer__copyright {
    margin: 0;
    font-size: 14px;
    color: #666666;
    line-height: 1.5;
}

/* Right: Footer Links */
.om-footer__right {
    display: flex;
    align-items: center;
}

.om-footer__links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
    align-items: center;
}

.om-footer__link-item {
    margin: 0;
    padding: 0;
}

.om-footer__link {
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 5px 0;
    display: block;
}

.om-footer__link:hover {
    color: #20b2aa;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .om-footer {
        padding: 35px 25px;
    }
    
    .om-footer__container {
        gap: 30px;
    }
    
    .om-footer__links {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .om-footer {
        padding: 30px 20px;
    }
    
    .om-footer__container {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    
    .om-footer__left {
        width: 100%;
    }
    
    .om-footer__right {
        width: 100%;
    }
    
    .om-footer__links {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .om-footer__company-name {
        font-size: 16px;
    }
    
    .om-footer__copyright {
        font-size: 13px;
    }
    
    .om-footer__link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .om-footer {
        padding: 25px 15px;
    }
    
    .om-footer__container {
        gap: 20px;
    }
    
    .om-footer__logo {
        width: 45px;
        height: 45px;
    }
    
    .om-footer__logo-icon {
        font-size: 24px;
    }
    
    .om-footer__company-name {
        font-size: 15px;
    }
    
    .om-footer__copyright {
        font-size: 12px;
    }
    
    .om-footer__links {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }
    
    .om-footer__link {
        font-size: 12px;
        padding: 8px 0;
    }
}
