/* 
 * Main Theme Styles
 * Olivion Fuel Trading
 */

/* Grid System & Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

[class*="col-"] {
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
}

@media (min-width: 992px) {
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .pr-lg-5 { padding-right: 3rem !important; }
}

.w-100 { width: 100% !important; }
.mb-3 { margin-bottom: 1rem !important; }
.mb-4 { margin-bottom: 1.5rem !important; }
.mb-5 { margin-bottom: 3rem !important; }
.mt-3 { margin-top: 1rem !important; }
.mt-4 { margin-top: 1.5rem !important; }
.mt-5 { margin-top: 3rem !important; }
.p-4 { padding: 1.5rem !important; }
.p-5 { padding: 3rem !important; }
.pb-5 { padding-bottom: 3rem !important; }
.rounded { border-radius: 0.25rem !important; }
.shadow { box-shadow: var(--shadow) !important; }
.border { border: 1px solid #dee2e6 !important; }
.border-bottom { border-bottom: 1px solid #dee2e6 !important; }
.text-muted { color: #6c757d !important; }
.text-light { color: var(--bg-light) !important; }
.opacity-75 { opacity: 0.75 !important; }
.lead { font-size: 1.25rem; font-weight: 300; }

/* Header & Navigation */
.site-header {
    position: relative;
    z-index: 999;
    padding: 10px 0;
    background-color: var(--bg-light) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title a {
    color: var(--secondary-color);
    font-size: 1.5rem;
    text-decoration: none;
}

.main-navigation {
    display: flex;
    align-items: center;
}

.menu-wrapper {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-wrapper ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-wrapper li,
.menu-wrapper ul li {
    margin: 0 15px;
    list-style: none !important;
}

.menu-wrapper li a,
.menu-wrapper ul li a {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.menu-wrapper li a:hover,
.menu-wrapper ul li a:hover {
    color: var(--secondary-color);
}

.header-cta {
    margin-left: 30px;
}

/* Hamburger Toggle Button */
.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 12px;
    z-index: 1000;
    position: relative;
    outline: none;
}

.hamburger {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--primary-color);
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 3px;
    background-color: var(--primary-color);
    transition: transform 0.3s ease, top 0.3s ease, background-color 0.3s ease;
    left: 0;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* White Header Menu Toggle Colors */
.site-header.bg-white .hamburger,
.site-header.bg-white .hamburger::before,
.site-header.bg-white .hamburger::after {
    background-color: var(--primary-color);
}

/* Scrolled/Dark Header Menu Toggle Colors */
.site-header.scrolled .hamburger,
.site-header.scrolled .hamburger::before,
.site-header.scrolled .hamburger::after {
    background-color: var(--bg-light);
}

/* Animation to 'X' */
.menu-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent !important;
}

.menu-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
    background-color: var(--secondary-color) !important;
}

.menu-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
    background-color: var(--secondary-color) !important;
}

/* Desktop Defaults for Drawer */
.menu-drawer-container {
    display: flex;
    align-items: center;
}

.mobile-cta-wrapper {
    display: none;
}

/* Mobile Media Queries (max-width: 991px) */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-cta {
        display: none;
    }

    .menu-drawer-container {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-color);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
        padding: 30px 40px 40px;
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.4s;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 0 0 20px 20px;
    }

    .main-navigation.nav-active .menu-drawer-container {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .menu-wrapper {
        display: block !important;
        margin: 0 0 25px 0 !important;
        padding: 0 !important;
    }

    .menu-wrapper li {
        margin: 0 !important;
        padding: 0 !important;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .main-navigation.nav-active .menu-wrapper li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered load effects */
    .main-navigation.nav-active .menu-wrapper li:nth-child(1) { transition-delay: 0.1s; }
    .main-navigation.nav-active .menu-wrapper li:nth-child(2) { transition-delay: 0.15s; }
    .main-navigation.nav-active .menu-wrapper li:nth-child(3) { transition-delay: 0.2s; }
    .main-navigation.nav-active .menu-wrapper li:nth-child(4) { transition-delay: 0.25s; }
    .main-navigation.nav-active .menu-wrapper li:nth-child(5) { transition-delay: 0.3s; }

    .menu-wrapper li a {
        color: #ffffff !important;
        font-size: 1.15rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        display: block;
        padding: 15px 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .menu-wrapper li:last-child a {
        border-bottom: none;
    }

    .menu-wrapper li a:hover {
        color: var(--secondary-color) !important;
    }

    /* Mobile CTA wrapper */
    .mobile-cta-wrapper {
        display: block;
        text-align: center;
        margin-top: 10px;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        transition-delay: 0.35s;
    }

    .main-navigation.nav-active .mobile-cta-wrapper {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero-section {
    padding: 180px 0;
    background-size: cover;
    background-position: center;
    color: var(--bg-light);
    position: relative;
}

.hero-headline {
    font-size: 4rem;
    color: var(--bg-light);
    margin-bottom: 20px;
}

.hero-subheadline {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Grids */
.about-grid, .services-grid, .posts-grid, .stats-grid, .features-grid {
    display: grid;
    gap: 40px;
}

.about-grid { grid-template-columns: 1fr 1fr; align-items: center; }
.services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.posts-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.stats-grid { grid-template-columns: repeat(4, 1fr); }
.features-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px;}

@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-headline { font-size: 2.5rem; }
}

/* Forms */
.form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: var(--secondary-color);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

/* Footer */
.site-footer {
    padding-top: 80px;
    color: #ccc;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-title {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.widget-title {
    color: var(--bg-light);
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 10px;
}

.contact-info {
    list-style: none;
}
.contact-info li {
    margin-bottom: 15px;
}

.site-info {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}
.site-info .container {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr; }
    .site-info .container { flex-direction: column; text-align: center; gap: 10px;}
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/* Services Page Cards */
.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* About Page Custom Layout Styles */

/* General Utilities for About Page */
.about-page-main {
    background-color: #ffffff;
}

.text-dark-navy {
    color: #0B1F3A !important;
}

.text-gold {
    color: #D4AF37 !important;
}

.bg-yellow-accent {
    background-color: #f7de3a !important; /* Premium bright yellow/gold */
}

/* About Header/Banner */
.about-header {
    background-color: #4A4B53; /* Charcoal slate gray */
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.about-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.about-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Three Column Grid / Section 1 */
.quality-section {
    padding: 90px 0;
}

.quality-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

@media (max-width: 991px) {
    .quality-grid {
        grid-template-columns: 1fr;
    }
}

.quality-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quality-intro h2 {
    font-size: 2.5rem;
    color: #0B1F3A;
    margin-bottom: 20px;
    line-height: 1.2;
}

.quality-intro p {
    color: #555555;
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.7;
}

.learn-more-link {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: #0B1F3A;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.learn-more-link svg {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more-link:hover {
    color: #D4AF37;
}

.learn-more-link:hover svg {
    transform: translateX(5px);
}

/* Quality Cards */
.quality-card {
    background: #F5F7FA;
    border-radius: 16px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.quality-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(11, 31, 58, 0.1);
}

.quality-card .card-icon-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.quality-card h3 {
    font-size: 1.4rem;
    color: #0B1F3A;
    margin-bottom: 15px;
}

.quality-card p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Quality Card Yellow Variation */
.quality-card.card-yellow {
    background: #f7de3a;
    box-shadow: 0 10px 30px rgba(247, 222, 58, 0.2);
}

.quality-card.card-yellow h3 {
    color: #0B1F3A;
}

.quality-card.card-yellow p {
    color: #2F3E46;
}

/* Section 2: Energy Needs Section */
.energy-needs-section {
    padding: 90px 0;
}

.energy-needs-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 991px) {
    .energy-needs-grid {
        grid-template-columns: 1fr;
    }
}

/* Dark layout container */
.energy-dark-container {
    background-color: #202128;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.energy-dark-container img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
}

.energy-dark-container .top-img {
    height: 240px;
}

.energy-dark-container .bottom-row {
    display: flex;
    gap: 20px;
}

.energy-dark-container .bottom-img {
    width: 50%;
    height: 160px;
}

.energy-social-box {
    width: 50%;
    background-color: #141518;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.energy-social-box h4 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.energy-social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.energy-social-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Right content area */
.energy-content h2 {
    font-size: 2.6rem;
    color: #0B1F3A;
    margin-bottom: 20px;
    line-height: 1.2;
}

.energy-content p {
    color: #555555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Progress bars */
.skill-bar-container {
    margin-bottom: 25px;
}

.skill-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: #0B1F3A;
    margin-bottom: 8px;
}

.skill-label svg {
    color: #D4AF37;
}

.skill-track {
    width: 100%;
    height: 5px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background-color: #f7de3a;
    border-radius: 10px;
}

/* Stat cards */
.energy-stats-row {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.energy-stat-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 25px 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.energy-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.energy-stat-card .stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.energy-stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #0B1F3A;
    line-height: 1;
}

.energy-stat-card .stat-title {
    font-size: 0.9rem;
    color: #777777;
    font-weight: 500;
}

/* Section 3: Brand Showcase */
.brand-showcase-section {
    padding: 20px 0 60px;
}

.brand-showcase-container {
    background-color: #F5F7FA;
    border-radius: 20px;
    padding: 35px 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.brand-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.brand-item:hover {
    opacity: 1;
}

.brand-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: #4A4B53;
    letter-spacing: -0.5px;
}

/* Section 4: Community Section */
.community-section {
    background-color: #4A4B53; /* Dark Charcoal Slate */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.community-section h2 {
    font-size: 2.8rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.community-section p {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.play-button-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
}

.play-button-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background-color: #f7de3a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B1F3A;
    box-shadow: 0 0 0 0 rgba(247, 222, 58, 0.4);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.play-button-link:hover .play-button-circle {
    transform: scale(1.1);
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

/* Section 5: Team Section */
.team-expert-section {
    padding: 100px 0;
}

.team-expert-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .team-expert-grid {
        grid-template-columns: 1fr;
    }
}

.team-expert-info h2 {
    font-size: 2.6rem;
    color: #0B1F3A;
    margin-bottom: 20px;
}

.team-testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(11, 31, 58, 0.05);
    border: 1px solid #f2f4f7;
    margin-top: 40px;
    position: relative;
}

.team-testimonial-card .quote-icon {
    position: absolute;
    top: 30px;
    right: 40px;
    color: rgba(247, 222, 58, 0.4);
}

.team-testimonial-card p {
    font-size: 1rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.team-testimonial-author h4 {
    font-size: 1.15rem;
    color: #0B1F3A;
    margin-bottom: 5px;
}

.team-testimonial-author span {
    font-size: 0.9rem;
    color: #888888;
    font-weight: 500;
}

.team-portraits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.team-portrait-item img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    height: 420px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.team-portrait-item:hover img {
    transform: translateY(-8px);
}

/* Footer Styling Override */
.site-footer {
    position: relative;
    background-image: linear-gradient(rgba(2, 35, 20, 0.96), rgba(2, 35, 20, 0.96)), url('../images/footer_background.png') !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #c2dcc8;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo img, .footer-logo .custom-logo-link img {
    background: #ffffff;
    padding: 10px 22px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    max-height: 65px;
    width: auto;
    display: block;
}

.footer-widget-area {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 991px) {
    .footer-widget-area {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 576px) {
    .footer-widget-area {
        grid-template-columns: 1fr;
    }
}

.footer-col.brand-col p {
    margin-top: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #a3c7b2;
}

.footer-col h3.widget-title {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #8cC63F;
}

.footer-col .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col .footer-menu li {
    margin-bottom: 12px;
}

.footer-col .footer-menu li a {
    color: #a3c7b2;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-col .footer-menu li a:hover {
    color: #8cC63F;
    padding-left: 5px;
}

/* Contact Info Row */
.footer-contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-contact-items {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 0.95rem;
}

.footer-contact-item svg {
    color: #8cC63F;
}

.footer-social-circles {
    display: flex;
    gap: 12px;
}

.social-circle-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-circle-link:hover {
    transform: translateY(-3px);
    background-color: #8cC63F;
    border-color: #8cC63F;
    color: #022314;
}

/* Site Info / Copyright */
.site-footer .site-info {
    border-top: none;
    padding: 25px 0 0;
}

.site-footer .site-info .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #a3c7b2;
    font-size: 0.9rem;
}

.site-footer .site-info a {
    color: #a3c7b2;
}

.site-footer .site-info a:hover {
    color: #8cC63F;
}

/* Services Page Custom Layout Styles */

/* Services Header Banner */
.services-header {
    position: relative;
    background-image: linear-gradient(rgba(11, 31, 58, 0.85), rgba(11, 31, 58, 0.85)), url('../images/services_header_bg.png');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
}

.services-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.services-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* Services Page Grid Section */
.services-main-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px; /* larger row gap to accommodate floating badges */
    padding: 120px 0 90px;
}

@media (max-width: 991px) {
    .services-main-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-main-grid {
        grid-template-columns: 1fr;
    }
}

.service-grid-card {
    background: #F5F7FA;
    border-radius: 20px;
    padding: 55px 35px 35px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.service-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(11, 31, 58, 0.08);
}

.service-card-badge {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #f7de3a;
    border: 4px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 5px 15px rgba(11, 31, 58, 0.08);
    transition: transform 0.3s ease;
}

.service-grid-card:hover .service-card-badge {
    transform: translateX(-50%) scale(1.05);
}

.service-grid-card h3 {
    font-size: 1.35rem;
    color: #0B1F3A;
    margin-bottom: 15px;
    margin-top: 10px;
    font-weight: 700;
}

.service-grid-card p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Service Card Dark Variation */
.service-grid-card.card-dark {
    background: #202128;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-grid-card.card-dark .service-card-badge {
    border: 4px solid #202128;
}

.service-grid-card.card-dark h3 {
    color: #ffffff;
}

.service-grid-card.card-dark p {
    color: #a0aec0;
}

.service-grid-card.card-dark .learn-more-link {
    color: #ffffff;
}

.service-grid-card.card-dark .learn-more-link:hover {
    color: #f7de3a;
}

/* Reach the Top Section */
.reach-top-section {
    background-color: #4A4B53;
    color: #ffffff;
    padding: 95px 0;
}

.reach-top-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .reach-top-grid {
        grid-template-columns: 1fr;
    }
}

.reach-top-content h2 {
    font-size: 2.6rem;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.reach-top-content p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.reach-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reach-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-weight: 500;
    font-size: 1.05rem;
}

/* Reach progress bars */
.reach-progress-container {
    margin-bottom: 30px;
}

.progress-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
}

.reach-track {
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
}

.reach-fill {
    height: 100%;
    background-color: #f7de3a;
    border-radius: 10px;
}

/* Client Say Section */
.client-say-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.client-say-header {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

@media (max-width: 991px) {
    .client-say-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.client-say-header h2 {
    font-size: 2.6rem;
    color: #0B1F3A;
    margin-bottom: 15px;
}

.client-say-header p {
    color: #555555;
    line-height: 1.7;
    font-size: 1.05rem;
}

.client-say-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

@media (max-width: 991px) {
    .client-say-grid {
        grid-template-columns: 1fr;
    }
}

.client-say-card {
    background: #F5F7FA;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(11, 31, 58, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border: 1px solid #f0f0f0;
}

.client-say-card .quote-icon {
    position: absolute;
    top: 25px;
    right: 35px;
    color: rgba(247, 222, 58, 0.4);
}

.client-say-card p {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.client-say-author h4 {
    font-size: 1.15rem;
    color: #0B1F3A;
    margin-bottom: 5px;
    font-weight: 700;
}

.client-say-author span {
    font-size: 0.9rem;
    color: #888888;
    font-weight: 500;
}

/* Portrait Testimonial Card */
.client-portrait-card {
    background: #ffffff;
    border: 1px solid #eef1f6;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(11, 31, 58, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.client-portrait-card:hover {
    transform: translateY(-5px);
}

.client-portrait-card .quote-badge-floating {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #f7de3a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0B1F3A;
    position: absolute;
    top: 20px;
    left: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 5;
}

.client-portrait-frame {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
}

.client-portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-portrait-card p {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.client-portrait-card h4 {
    font-size: 1.15rem;
    color: #0B1F3A;
    margin-bottom: 5px;
    font-weight: 700;
}

.client-portrait-card span {
    font-size: 0.9rem;
    color: #888888;
    font-weight: 500;
}


