/*
Theme Name: Consult Experts
Description: A professional WordPress theme for consulting and financial services companies, based on the Gudfin HTML template.
Author: Consult Experts Team
Version: 1.0.0
Text Domain: consult-experts
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: consulting, financial, business, corporate, modern
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.justify-content-between {
    justify-content: space-between;
}

.text-center {
    text-align: center;
}

/* Header Styles */
.site-header {
    position: relative;
    z-index: 1000;
}

.pbmit-main-header-area {
    /*background: #fff;*/
    background: #5D5D5D66;
    backdrop-filter: blur(30px);
    box-shadow: none;
    /*box-shadow: 0 2px 10px rgba(0,0,0,0.1);*/
}

/* Navigation */
.main-navigation ul {
    display: flex;
    gap: 30px;
}

.main-navigation a {
    padding: 15px 0;
    display: block;
    position: relative;
}

.main-navigation a:hover {
    color: #f59f46;
}

/* Buttons */
.pbmit-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #f59f46;
    color: #fff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.pbmit-btn:hover {
    background: #e8893a;
    transform: translateY(-2px);
}

/* Sections */
.pbmit-bg-color-light {
    background: #f8f9fa;
}

.pbmit-bg-color-secondary {
    background: #1a1a1a;
    color: #fff;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 0;
}

/* Responsive */
@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
        gap: 10px;
    }

    .pbmit-main-header-area .d-flex {
        flex-direction: column;
    }
}
.pbmit-element-title__phone {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.pbmit-element-title__phone:hover,
.pbmit-element-title__phone:focus {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}


