/*
Theme Name: overland v1.1
Theme URI: https://pressmegpt.com
Author: PressMeGPT
Author URI: https://pressmegpt.com
Description: This theme was generated by PressMeGPT.com - AI WordPress Theme Generator. Free software released under GNU GPLv2 with attribution.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: overland
Tags: custom, pressmegpt, ai-generated, custom-logo, custom-menu, custom-colors, light, custom-fonts

This theme was created with PressMeGPT.com - AI WordPress Theme Generator.
Free to use, modify, and distribute under GNU GPLv2 with attribution.
*/

/* Reset and base styles */
*, *::before, *::after {
box-sizing: border-box;
}

body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
}

img {
max-width: 100%;
height: auto;
}

a {
text-decoration: none;
}

/* ===== Header Styles ===== */
.site-header {
padding: 1rem 2rem;
}

.header-inner {
max-width: 1400px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 2rem;
}

/* Header Layout: Logo Left, Menu Right (default) */
.header-layout-logo-left-menu-right .header-inner {
flex-direction: row;
justify-content: space-between;
}

/* Header Layout: Logo Right, Menu Left */
.header-layout-logo-right-menu-left .header-inner {
flex-direction: row-reverse;
justify-content: space-between;
}

/* Header Layout: Logo Center, Menu Below */
.header-layout-logo-center-menu-below .header-inner {
flex-direction: column;
text-align: center;
}

.header-layout-logo-center-menu-below .site-branding {
margin-bottom: 1rem;
}

/* Header Layout: Logo Center, Menu Split */
.header-layout-logo-center-menu-split .header-inner {
display: grid;
grid-template-columns: 1fr auto 1fr;
align-items: center;
}

.header-layout-logo-center-menu-split .menu-left {
justify-self: end;
}

.header-layout-logo-center-menu-split .menu-right {
justify-self: start;
}

/* Site Branding */
.site-branding {
display: flex;
align-items: center;
gap: 1rem;
}

.site-branding a {
display: inline-block;
}

.custom-logo {
display: block;
height: auto;
}

.site-title {
margin: 0;
font-size: 1.5rem;
font-weight: 700;
}

.site-title a {
color: inherit;
}

.site-description {
margin: 0.25rem 0 0;
font-size: 0.875rem;
opacity: 0.8;
}

/* Primary Navigation */
.main-navigation {
display: flex;
align-items: center;
}

.main-navigation ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: 1.5rem;
}

.main-navigation li {
position: relative;
}

.main-navigation a {
display: block;
padding: 0.5rem 0;
font-weight: 500;
transition: color 0.2s ease;
}

.main-navigation a:hover {
opacity: 0.7;
}

/* Dropdown menus */
.main-navigation ul ul {
position: absolute;
top: 100%;
left: 0;
min-width: 200px;
flex-direction: column;
gap: 0;
background: #fff;
box-shadow: 0 4px 12px rgba(0,0,0,0.15);
border-radius: 4px;
padding: 0.5rem 0;
opacity: 0;
visibility: hidden;
transition: opacity 0.2s, visibility 0.2s;
}

.main-navigation li:hover > ul {
opacity: 1;
visibility: visible;
}

.main-navigation ul ul a {
padding: 0.5rem 1rem;
color: #333;
}

/* Mobile Menu Toggle */
.menu-toggle {
display: none;
background: none;
border: none;
cursor: pointer;
padding: 0.5rem;
}

.menu-toggle svg {
width: 24px;
height: 24px;
}

@media (max-width: 768px) {
.menu-toggle {
    display: block;
}

.main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: inherit;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.main-navigation.toggled {
    display: block;
}

.main-navigation ul {
    flex-direction: column;
    gap: 0.5rem;
}

.main-navigation ul ul {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding-left: 1rem;
}
}

/* ===== Footer Styles ===== */
.site-footer {
padding: 2rem;
}

.footer-inner {
max-width: 1400px;
margin: 0 auto;
}

/* Footer Layout: Centered */
.footer-layout-centered .footer-inner {
text-align: center;
}

.footer-layout-centered .footer-navigation ul {
justify-content: center;
}

/* Footer Layout: Left Aligned */
.footer-layout-left-aligned .footer-inner {
text-align: left;
}

/* Footer Layout: Split */
.footer-layout-split .footer-inner {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}

/* Footer Navigation */
.footer-navigation {
margin-bottom: 1rem;
}

.footer-navigation ul {
display: flex;
list-style: none;
margin: 0;
padding: 0;
gap: 1.5rem;
flex-wrap: wrap;
}

.footer-navigation a {
font-size: 0.875rem;
transition: opacity 0.2s;
}

.footer-navigation a:hover {
opacity: 0.7;
}

/* Footer Menu Position */
.footer-menu-below .footer-navigation {
order: 2;
margin-bottom: 0;
margin-top: 1rem;
}

.footer-menu-below .site-info {
order: 1;
}

/* Footer Widgets */
.footer-widgets {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 2rem;
margin-bottom: 2rem;
}

.footer-widgets .widget {
margin-bottom: 0;
}

.footer-widgets .widget-title {
font-size: 1rem;
font-weight: 600;
margin-bottom: 1rem;
}

/* Site Info */
.site-info {
font-size: 0.875rem;
opacity: 0.8;
}

.site-info p {
margin: 0;
}

@media (max-width: 768px) {
.footer-layout-split .footer-inner {
    flex-direction: column;
    text-align: center;
}

.footer-navigation ul {
    justify-content: center;
}
}

/* ===== Widget Styles ===== */
.widget {
margin-bottom: 2rem;
}

.widget-title {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 1rem;
}

.widget ul {
list-style: none;
padding: 0;
margin: 0;
}

.widget li {
padding: 0.25rem 0;
}

/* ===== Content Styles ===== */
.content-area {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}

.content-area.has-sidebar {
display: grid;
grid-template-columns: 1fr 300px;
gap: 3rem;
align-items: start;
}

@media (max-width: 768px) {
.content-area.has-sidebar {
    grid-template-columns: 1fr;
    gap: 2rem;
}
}

/* PressMeGPT: full-bleed entry header for blog posts (rendered outside .content-area) */
.single .entry-header,
.page .entry-header.full-bleed {
width: 100%;
margin: 0;
}

.primary-content {
min-width: 0;
}

.page-content-wrapper {
max-width: 1200px;
margin: 0 auto;
}

/* PressMeGPT inner pages render full-bleed (sections handle their own width) */
.pressmegpt-page-content,
.pressmegpt-page-content.entry-content {
width: 100%;
max-width: none;
margin: 0;
padding: 0;
line-height: inherit;
}

.page-header {
margin-bottom: 2rem;
padding-bottom: 1rem;
border-bottom: 2px solid #0066cc;
}

.page-title {
font-size: 2rem;
margin: 0 0 0.5rem;
color: #111111;
}

.archive-description {
font-size: 1rem;
opacity: 0.7;
}

.entry-header {
margin-bottom: 1.5rem;
}

.entry-title {
font-size: 2rem;
margin: 0 0 0.5rem;
}

.entry-title a {
color: #111111;
text-decoration: none;
transition: color 0.2s;
}

.entry-title a:hover {
color: #0066cc;
}

.entry-meta {
font-size: 0.875rem;
opacity: 0.7;
margin-bottom: 0.5rem;
}

.entry-content {
margin-bottom: 2rem;
line-height: 1.8;
}

.entry-footer {
font-size: 0.875rem;
padding: 1rem 0;
border-top: 1px solid rgba(0,0,0,0.1);
margin-bottom: 1.5rem;
}

.entry-footer .cat-links,
.entry-footer .tags-links {
display: block;
margin-bottom: 0.25rem;
}

.entry-footer a {
color: #0066cc;
}

.post-thumbnail {
margin-bottom: 1.5rem;
}

.post-thumbnail img {
border-radius: 8px;
width: 100%;
}

/* Post navigation */
.post-navigation,
.posts-navigation {
padding: 1.5rem 0;
border-top: 1px solid rgba(0,0,0,0.1);
margin-top: 1rem;
}

.post-navigation a,
.posts-navigation a,
.nav-links a {
color: #0066cc;
text-decoration: none;
font-weight: 500;
}

.post-navigation a:hover,
.posts-navigation a:hover,
.nav-links a:hover {
text-decoration: underline;
}

.nav-subtitle {
display: block;
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.05em;
opacity: 0.6;
margin-bottom: 0.25rem;
}

/* ===== Search ===== */
.search-form {
display: flex;
max-width: 500px;
}

.search-form .search-field {
flex: 1;
padding: 10px 16px;
border: 2px solid rgba(0,0,0,0.15);
border-right: none;
border-radius: 6px 0 0 6px;
font-size: 1rem;
outline: none;
}

.search-form .search-field:focus {
border-color: #0066cc;
}

.search-form .search-submit {
padding: 10px 20px;
background: #0066cc;
color: #fff;
border: 2px solid #0066cc;
border-radius: 0 6px 6px 0;
cursor: pointer;
font-weight: 600;
font-size: 1rem;
}

.search-result {
padding-bottom: 1.5rem;
margin-bottom: 1.5rem;
border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* ===== Comments ===== */
.comments-area {
margin-top: 2rem;
padding-top: 2rem;
border-top: 2px solid rgba(0,0,0,0.08);
}

.comments-title {
font-size: 1.5rem;
margin-bottom: 1.5rem;
}

.comment-list {
list-style: none;
padding: 0;
margin: 0;
}

.comment-list li {
padding: 1rem 0;
border-bottom: 1px solid rgba(0,0,0,0.06);
}

.comment-list .comment-author img {
border-radius: 50%;
margin-right: 0.75rem;
vertical-align: middle;
}

.comment-form label {
display: block;
margin-bottom: 0.25rem;
font-weight: 500;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
width: 100%;
padding: 10px 14px;
border: 2px solid rgba(0,0,0,0.12);
border-radius: 6px;
font-size: 1rem;
margin-bottom: 1rem;
}

.comment-form textarea {
min-height: 120px;
resize: vertical;
}

.comment-form .submit-button,
.comment-form input[type="submit"] {
background: #0066cc;
color: #fff;
border: none;
padding: 12px 24px;
border-radius: 6px;
cursor: pointer;
font-weight: 600;
font-size: 1rem;
}

/* ===== Sidebar ===== */
.widget-area {
padding: 1.5rem;
background: rgba(0,0,0,0.03);
border-radius: 8px;
}

.widget-area .widget {
margin-bottom: 2rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid rgba(0,0,0,0.08);
}

.widget-area .widget:last-child {
margin-bottom: 0;
padding-bottom: 0;
border-bottom: none;
}

.widget-area .widget-title {
font-size: 1rem;
font-weight: 700;
margin-bottom: 0.75rem;
color: #111111;
}

.widget-area ul {
list-style: none;
padding: 0;
margin: 0;
}

.widget-area li {
padding: 0.35rem 0;
}

.widget-area a {
color: #0066cc;
text-decoration: none;
}

.widget-area a:hover {
text-decoration: underline;
}

/* ===== Utility Classes ===== */
.screen-reader-text {
border: 0;
clip: rect(1px, 1px, 1px, 1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
word-wrap: normal !important;
}

.skip-link:focus {
background-color: #f1f1f1;
clip: auto !important;
clip-path: none;
color: #21759b;
display: block;
font-size: 0.875rem;
font-weight: 700;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000;
}

/* Theme Designer Custom Styles */
:root {
    --td-color-primary-dark: #01153D;
    --td-color-primary-light: #0D7BFF;
    --td-color-accent-gold: #FFC107;
    --td-color-text-dark: #333333;
    --td-color-text-light: #FFFFFF;
    --td-color-background-light: #FFFFFF;
    --td-color-border-grey: #DDDDDD;

    --td-font-heading: 'Montserrat', sans-serif;
    --td-font-body: 'Open Sans', sans-serif;
}

/* Base Styles */
body {
    font-family: var(--td-font-body);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--td-color-text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--td-font-heading);
    color: var(--td-color-text-dark);
    margin-top: 0;
    margin-bottom: 1rem;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

.fse-section {
    padding: 60px 20px;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
}

.fse-group {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.fse-columns {
    display: grid;
    gap: 30px;
}

.fse-column {
    display: flex;
    flex-direction: column;
}

.fse-image {
    max-width: 100%;
    height: auto;
    display: block;
}

.fse-heading {
    font-weight: 700;
}

.fse-paragraph {
    font-size: 1rem;
}

.fse-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
}

.fse-button:hover {
    filter: brightness(1.08);
    text-decoration: none;
}

/* Header */
.fse-header {
    background-color: var(--td-color-background-light);
    padding: 15px 20px;
    border-bottom: 1px solid var(--td-color-border-grey);
}

.fse-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
}

.fse-header-logo-container {
    display: flex;
    align-items: center;
    padding: 0;
    max-width: none;
}

.fse-header-logo {
    height: 40px; /* Adjust as needed */
    width: auto;
    margin-right: 10px;
}

.fse-header-tagline {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--td-color-primary-dark);
    letter-spacing: 1px;
    margin-left: 5px;
}

.fse-navbar {
    display: flex;
    gap: 25px;
    padding: 0;
    max-width: none;
}

.fse-nav-link {
    color: var(--td-color-text-dark);
    font-weight: 500;
    padding: 8px 0;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
}

.fse-nav-link:hover {
    color: var(--td-color-primary-light);
    filter: none;
}

.fse-button-primary {
    background-color: var(--td-color-accent-gold);
    color: var(--td-color-text-light);
    border-color: var(--td-color-accent-gold);
}

/* Hero Section */
.fse-hero {
    background-image: url('https://placehold.co/800x600/EEE/999?text=Image'); /* Placeholder for hero background */
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--td-color-text-light);
    padding: 100px 20px;
}

.fse-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--td-color-primary-dark);
    opacity: 0.8;
    z-index: 1;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.fse-hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.fse-hero-text-content {
    flex: 1;
    max-width: 50%;
    padding: 0;
    margin: 0;
}

.fse-hero-heading {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--td-color-text-light);
}

.fse-hero-paragraph {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--td-color-text-light);
}

.fse-hero-buttons {
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
    max-width: none;
}

.fse-button-secondary {
    background-color: var(--td-color-primary-light);
    color: var(--td-color-text-light);
    border-color: var(--td-color-primary-light);
}

.fse-button-outline {
    background-color: transparent;
    color: var(--td-color-text-light);
    border-color: var(--td-color-text-light);
}

.fse-hero-graphic-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    max-width: 50%;
    text-align: right;
    margin: 0;
    padding: 0;
}

.fse-hero-graphic {
    width: 500px; /* Adjust size based on mockup */
    height: auto;
    margin-bottom: 20px;
}

.fse-hero-logo-bottom {
    width: 350px; /* Adjust size based on mockup */
    height: auto;
    margin-bottom: 10px;
}

.fse-hero-logo-tagline {
    color: var(--td-color-text-light);
    font-size: 1rem;
    letter-spacing: 1.5px;
    font-weight: 500;
    margin-top: 0;
}

/* Services Section */
.fse-services {
    background-color: var(--td-color-background-light);
    text-align: center;
}

.fse-services-heading {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-transform: uppercase;
    position: relative;
}

.fse-services-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--td-color-primary-light);
    margin: 15px auto 0;
}

.fse-services-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.fse-service-card {
    background-color: var(--td-color-background-light);
    border: 1px solid var(--td-color-border-grey);
    border-radius: 8px;
    padding: 40px 25px;
    text-align: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fse-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.fse-service-icon {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 25px;
    border-radius: 50%;
    background-color: #D0E7FF;
    padding: 15px;
}

.fse-service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--td-color-primary-dark);
}

.fse-service-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* Why Choose Section */
.fse-why-choose {
    background-color: var(--td-color-primary-dark);
    color: var(--td-color-text-light);
    text-align: center;
    padding: 80px 20px;
}

.fse-why-choose-heading {
    font-size: 2.2rem;
    margin-bottom: 60px;
    text-transform: uppercase;
    color: var(--td-color-text-light);
}

.fse-why-choose-grid {
    grid-template-columns: repeat(6, 1fr);
    max-width: 1200px;
    margin: 0 auto;
}

.fse-why-choose-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.fse-why-choose-item .fse-icon {
    font-size: 3.5rem;
    color: var(--td-color-primary-light);
    margin-bottom: 15px;
}

.fse-why-choose-text {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--td-color-text-light);
    margin-bottom: 0;
}

/* About Us Section */
.fse-about-us {
    background-color: var(--td-color-background-light);
}

.fse-about-us-wrapper {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.fse-about-us-content {
    padding-right: 40px;
}

.fse-about-us-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
}

.fse-about-us-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--td-color-primary-light);
    margin: 15px 0 0;
}

.fse-about-us-paragraph {
    font-size: 1rem;
    color: #555;
    margin-bottom: 30px;
}

.fse-about-us-images {
    text-align: right;
}

.fse-about-us-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Footer */
.fse-footer {
    background-color: var(--td-color-primary-dark);
    color: var(--td-color-text-light);
    padding: 70px 20px 20px;
}

.fse-footer-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fse-footer-column {
    display: flex;
    flex-direction: column;
}

.fse-footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--td-color-text-light);
    text-transform: uppercase;
}

.fse-contact-info .fse-paragraph {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.fse-contact-info .fse-paragraph .fas {
    margin-right: 10px;
    font-size: 1.1rem;
    color: var(--td-color-primary-light);
    flex-shrink: 0;
    margin-top: 3px;
}

.fse-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.fse-footer-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.fse-footer-link:hover {
    color: var(--td-color-primary-light);
}

.fse-contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
    padding: 0;
    max-width: none;
}

.fse-input, .fse-textarea {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 15px;
    border-radius: 5px;
    color: var(--td-color-text-light);
    font-family: var(--td-font-body);
    font-size: 0.95rem;
    width: 100%;
    box-sizing: border-box;
}

.fse-input::placeholder, .fse-textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.fse-input:focus, .fse-textarea:focus {
    outline: none;
    border-color: var(--td-color-primary-light);
}

.fse-textarea {
    min-height: 100px;
    resize: vertical;
}

.fse-button-gold {
    background-color: var(--td-color-accent-gold);
    color: var(--td-color-primary-dark);
    border-color: var(--td-color-accent-gold);
    align-self: flex-start;
    padding: 12px 30px;
}

.fse-button-gold:hover {
    filter: brightness(1.15);
}

.fse-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.fse-footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.fse-social-icons {
    display: flex;
    gap: 15px;
    margin: 0;
    padding: 0;
    max-width: none;
}

.fse-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--td-color-text-light);
    font-size: 1.1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.fse-icon-link:hover {
    background-color: var(--td-color-primary-light);
    color: var(--td-color-text-light);
    filter: none;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .fse-header-container, .fse-hero-content-wrapper, .fse-services-grid, .fse-why-choose-grid, .fse-about-us-wrapper, .fse-footer-grid, .fse-footer-bottom {
        max-width: 960px;
    }

    .fse-hero-heading {
        font-size: 3rem;
    }

    .fse-hero-graphic {
        width: 400px;
    }

    .fse-hero-logo-bottom {
        width: 300px;
    }

    .fse-services-heading, .fse-about-us-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .fse-header-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .fse-navbar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .fse-button-primary {
        margin-top: 10px;
    }

    .fse-hero-content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .fse-hero-text-content,
    .fse-hero-graphic-content {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .fse-hero-heading {
        font-size: 2.5rem;
    }

    .fse-hero-graphic {
        width: 300px;
    }

    .fse-hero-logo-bottom {
        width: 250px;
    }

    .fse-hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .fse-services-grid {
        grid-template-columns: 1fr;
    }

    .fse-why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fse-about-us-wrapper {
        grid-template-columns: 1fr;
    }

    .fse-about-us-content {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

    .fse-about-us-heading::after {
        margin: 15px auto 0;
    }

    .fse-about-us-images {
        text-align: center;
    }

    .fse-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fse-footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .fse-header-logo {
        height: 35px;
    }

    .fse-navbar {
        flex-direction: column;
        width: 100%;
    }

    .fse-nav-link {
        width: 100%;
        text-align: center;
    }

    .fse-hero-heading {
        font-size: 2rem;
    }

    .fse-hero-graphic {
        width: 250px;
    }

    .fse-hero-logo-bottom {
        width: 200px;
    }

    .fse-services-heading, .fse-about-us-heading {
        font-size: 2rem;
    }

    .fse-why-choose-grid {
        grid-template-columns: 1fr;
    }

    .fse-why-choose-item .fse-icon {
        font-size: 3rem;
    }

    .fse-why-choose-text {
        font-size: 0.85rem;
    }

    .fse-footer-heading {
        font-size: 1.1rem;
    }

    .fse-footer-copyright {
        text-align: center;
    }
}

/* === Scroll Reveal Animation System === */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.animate-on-scroll { opacity: 0; }
.animate-slide-left { opacity: 0; }
.animate-slide-right { opacity: 0; }
.animate-scale { opacity: 0; }
.animate-on-scroll.visible { animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-slide-left.visible { animation: fadeSlideLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-slide-right.visible { animation: fadeSlideRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-scale.visible { animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
/* Hover micro-interactions — buttons only lighten slightly, no underline, no text color change */
.fse-button { transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.2s ease; }
.fse-button:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); filter: brightness(1.1); text-decoration: none !important; }
.fse-button:hover * { text-decoration: none !important; color: inherit !important; }




/* PressMeGPT FAQ accordion (native details/summary + JS fallback) */
.fse-faq-details,
details.fse-faq-item,
details[class*="faq"] {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.fse-faq-details summary,
details.fse-faq-item summary,
details[class*="faq"] summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 600;
}
.fse-faq-details summary::-webkit-details-marker,
details.fse-faq-item summary::-webkit-details-marker {
  display: none;
}
.fse-faq-answer,
.fse-faq-details > div,
details.fse-faq-item > div {
  padding-bottom: 1rem;
}
.fse-faq-item.is-open > .fse-faq-answer,
.fse-accordion-item.is-open > .fse-accordion-body {
  display: block;
}
.fse-faq-item:not(.is-open) > .fse-faq-answer,
.fse-accordion-item:not(.is-open) > .fse-accordion-body {
  display: none;
}


/* ===== Per-Page Scoped Styles (PressMeGPT) ===== */


/* ===== PressMeGPT: Blog/Archive Layout Enforcement (must win over master CSS) ===== */
body.single .content-area,
body.blog .content-area,
body.archive .content-area,
body.search .content-area,
body.error404 .content-area {
max-width: 1200px !important;
margin-left: auto !important;
margin-right: auto !important;
padding-left: 2rem !important;
padding-right: 2rem !important;
box-sizing: border-box;
}

@media (max-width: 768px) {
body.single .content-area,
body.blog .content-area,
body.archive .content-area,
body.search .content-area,
body.error404 .content-area {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}
}

body.single .content-area.has-sidebar,
body.blog .content-area.has-sidebar,
body.archive .content-area.has-sidebar,
body.search .content-area.has-sidebar {
display: grid !important;
grid-template-columns: minmax(0, 1fr) 300px !important;
gap: 3rem !important;
align-items: start;
}

@media (max-width: 900px) {
body.single .content-area.has-sidebar,
body.blog .content-area.has-sidebar,
body.archive .content-area.has-sidebar,
body.search .content-area.has-sidebar {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
}
}

body.single .primary-content,
body.single .primary-content > article,
body.single .entry-content,
body.single .entry-footer,
body.single .post-navigation,
body.single .comments-area,
body.blog .primary-content,
body.archive .primary-content {
max-width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
box-sizing: border-box;
}
