:root {
    --primary: #ff7f45;
    --white: #ffffff;
    --dark: #333333;
    --gray: #767676;
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { 
	font-family: 'Montserrat', sans-serif;
	/* font-family: 'Open Sans', sans-serif; */
	line-height: 1.6; 
	color: var(--dark); 
	background-color: var(--white); 
}

/*a {
    color: #e37e4a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #c96a3a;
}

p, li {color: #797979;}*/

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/*.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}*/

/* ──────────────────────────────────────────
       FONT-AWESOME ICONS
    ────────────────────────────────────────── */
.fa-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: currentColor;        /* inherits text color automatically */
    vertical-align: -0.125em; /* matches Font Awesome's baseline alignment */
    overflow: visible;
}

/* Size variants if needed */
.fa-icon.icon-sm   { width: 0.75em; height: 0.75em; }
.fa-icon.icon-lg   { width: 1.5em;  height: 1.5em;  }
.fa-icon.icon-xl   { width: 2em;    height: 2em;    }

/* ──────────────────────────────────────────
       HEADER TOP ROW
    ────────────────────────────────────────── */
.header-top { padding: 15px 0; border-bottom: 1px solid #f1f1f1; }
.header-top-content { display: flex; justify-content: space-between; align-items: center; gap: 15px; }

.logo img { width: 200px; height: 47px; display: block; object-fit: contain; }

.header-info-blocks { display: flex; align-items: center; gap: 30px; }
.info-block { display: flex; align-items: center; gap: 10px; }
/*.info-icon { color: var(--primary); font-size: 18px; }*/
.info-icon { color: var(--primary); font-size: 22px; }
.info-text { display: flex; flex-direction: column; }
.info-label { font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; line-height: 1.2; }
.info-value { font-size: 13px; font-weight: 600; text-decoration: none; color: var(--dark); }

.btn-primary { 
    background: var(--primary); color: var(--white); padding: 10px 18px; border-radius: 4px; 
    text-decoration: none; font-weight: 700; font-size: 13px; transition: var(--transition); 
    white-space: nowrap; border: none; cursor: pointer; 
}
.btn-primary:hover { background: #e66d35; box-shadow: 0 4px 12px rgba(255, 127, 69, 0.2); }

/* ──────────────────────────────────────────
       HEADER BOTTOM ROW (NAV)
    ────────────────────────────────────────── */
.header-bottom { 
    background: var(--white); position: sticky; top: 0; z-index: 1000; 
    border-bottom: 1px solid #eee; box-shadow: 0 4px 10px rgba(0,0,0,0.03); 
}
.navbar { display: flex; align-items: center; height: 55px; }

.nav-menu { display: flex; list-style: none; gap: 35px; height: 100%; }
.nav-menu > li { display: flex; align-items: center; }

.nav-item-wrapper { display: flex; align-items: center; gap: 6px; }

.nav-menu > li > a { 
    text-decoration: none; color: var(--dark); font-weight: 600; font-size: 13px; 
    text-transform: uppercase; transition: var(--transition); display: flex; align-items: center; gap: 6px; 
}
.nav-menu > li > a:hover { color: var(--primary); }

/* Desktop Dropdown */
.has-dropdown { position: relative; }
/* .arrow { font-size: 8px; transition: var(--transition); } */
.arrow { 
    font-size: 8px; 
    transition: var(--transition); 
    cursor: pointer; 
    padding: 15px; /* Increases clickable area */
}
.dropdown { 
    position: absolute; top: 100%; left: 0; background: var(--white); min-width: 240px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.08); list-style: none; opacity: 0; visibility: hidden; 
    transform: translateY(10px); transition: var(--transition); padding: 8px 0; border-top: 3px solid var(--primary); 
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { padding: 10px 20px; display: block; text-decoration: none; color: var(--dark); font-size: 14px; }
.dropdown li a:hover { background: #fff5f0; color: var(--primary); }

/* Mobile Toggle Button */
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.menu-toggle span { width: 25px; height: 2px; background: var(--dark); transition: var(--transition); }

/* ──────────────────────────────────────────
       FOOTER MAIN STYLES
    ────────────────────────────────────────── */
.site-footer {
	background-color: #141714;
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: auto;
}

.footer-container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 3rem 1.5rem 1.5rem 1.5rem;
}

/* footer columns grid */
.footer-widgets {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	margin-bottom: 2.5rem;
}

/* column 1 specific */
.footer-col-logo {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.footer-logo img {
	width: 200px;
	height: auto;
	max-width: 100%;
	display: block;
	transition: opacity 0.2s ease;
}

.footer-contact-info {
	font-family: 'Open Sans', sans-serif;
	color: #797979;
	font-size: 0.95rem;
	line-height: 1.6;
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
}

/*.footer-contact-info p {
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.footer-contact-info p::before {
	content: "📍";
	font-size: 0.9rem;
	opacity: 0.8;
	width: 20px;
	display: inline-block;
}

.footer-contact-info p:first-child::before {
	content: "📞";
}

.footer-contact-info p:last-child::before {
	content: "✉️";
}*/

.footer-contact-info p {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-contact-info .footer-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.8;
    color: #ff7f45;
}

/* widget columns */
.footer-widget {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.footer-widget-title {
	color: white;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
	letter-spacing: 0.3px;
	margin: 0 0 0.25rem 0;
	position: relative;
	display: inline-block;
}

.footer-widget-title::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: var(--primary);
	border-radius: 2px;
}

.footer-widget ul {
	list-style: none;
	margin-top: 0.5rem;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.footer-widget li {
	line-height: 1.4;
}

.footer-widget a {
	color: #e6e6e6;
	text-decoration: none;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.9rem;
	transition: all 0.2s ease;
	display: inline-block;
	position: relative;
}

.footer-widget a:hover {
	color: white;
	transform: translateX(4px);
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* bottom bar */
.footer-bottom {
	background-color: #000000;
	width: 100%;
	display: flex;
	justify-content: center;
}

.footer-bottom-container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 1rem 1.5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.8rem;
}

.footer-copyright {
	color: #585858;
	font-family: 'Open Sans', sans-serif;
	font-size: 0.85rem;
	letter-spacing: 0.3px;
}

.back-to-top {
	background-color: var(--primary); /* #e6a017; */
	border: none;
	color: #141714;
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	cursor: pointer;
	transition: all 0.25s ease;
	padding: 0.5rem 1.2rem;
	border-radius: 40px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2);
	letter-spacing: 0.3px;
}

/* .back-to-top:hover {
	background-color: #c48812;
	color: #000000;
	transform: translateY(-2px);
	box-shadow: 0 4px 10px rgba(0,0,0,0.25);
} */

.back-to-top:hover { background: #e66d35; box-shadow: 0 4px 12px rgba(255, 127, 69, 0.2); }

.back-to-top:active {
	transform: translateY(1px);
}

.back-to-top::before {
	content: "↑";
	font-size: 1rem;
	font-weight: bold;
	transition: transform 0.2s;
}

.back-to-top:hover::before {
	transform: translateY(-2px);
}

/*.main-content { padding: 80px 0; text-align: left; min-height: 50vh; }*/

/* ──────────────────────────────────────────
       TABLE CSS STYLES
    ────────────────────────────────────────── */
.main-table-wrap {
  overflow-x: auto;
  margin: 28px 0;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 420px;
}

thead tr { background: #e37e4a; }
thead th {
  color: #ffffff;
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

tbody tr { border-bottom: 1px solid #e8e8e8; transition: background 0.15s; }
tbody tr:hover { background: #fff6f1; }
tbody tr:nth-child(even) { background: #fafafa; }
tbody tr:nth-child(even):hover { background: #fff0e8; }

td {
  padding: 10px 16px;
  color: #797979;
  vertical-align: top;
}

td:first-child { color: #242424; font-weight: 500; }

/* ──────────────────────────────────────────
       GLOBAL WORDPRESS LIST STYLES
    ────────────────────────────────────────── */
ul.wp-block-list {
	list-style: none;
	padding: 0;
	margin-bottom: 1.5rem;
}

ul.wp-block-list li {
	padding: 6px 0 6px 24px;
	position: relative;
	color: #797979;
}

ul.wp-block-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 14px;
	width: 8px;
	height: 8px;
	background: #ff7f45;
	border-radius: 50%;
}

ol.wp-block-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    counter-reset: li-counter;
}

ol.wp-block-list li {
    padding: 6px 0 6px 24px;
    position: relative;
    color: #797979;
    counter-increment: li-counter;
}

ol.wp-block-list li::before {
    content: counter(li-counter);
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    background: #ff7f45;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Add margin to <strong> elements inside <li> */
ol.wp-block-list li strong {
    margin-left: 8px; /* Adjust this value as needed */
}


/* NEW STYLES FROM GPT */
/*.navbar {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.nav-menu {
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.dropdown {
    max-width: 100vw; 
    left: 0;
    right: auto;
}*/

/** { outline: 1px solid red; }*/

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

.header-bottom .container {
    overflow: visible; /* keep dropdowns visible */
}


.navbar {
    display: flex;
    align-items: center;
    height: 55px;
    overflow: visible;
    width: 100%;
}

.nav-menu {
    flex-wrap: nowrap;
    width: 100%;
    overflow: visible;
}
/* ──────────────────────────────────────────
       MOBILE STYLES
    ────────────────────────────────────────── */
/*@media (max-width: 1165px) {
    .nav-menu {
        gap: 17px;
    }
}*/

@media (max-width: 1178px) {
    .nav-menu {
        gap: 18px;
    }

    .nav-menu > li > a {
        font-size: 13px;
    }

    .dropdown > li > a {
    	font-size: 12px;
    }

}

@media (max-width: 1093px) {
    .nav-menu {
        gap: 16px;
    }

    .nav-menu > li > a {
        font-size: 11px;
    }
}

@media (max-width: 992px) {
    /* HEADER MOBILE STYLES */
    /* 
    .header-info-blocks { display: none; }
    .menu-toggle { display: flex; } 
    */
	
	/* 1. Stack everything in the top row */
    .header-top-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .header-info-blocks {
        flex-direction: column;
        gap: 20px;
    }

    .info-block {
        flex-direction: column;
        gap: 5px;
    }

    /* 2. Show toggle button UNDER the items */
    .menu-toggle {
        display: flex;
        order: 10; /* Ensures it is last in the flex container */
    }

    .navbar { height: auto; padding: 0; }
    
    .nav-menu { 
        display: none; position: absolute; top: 100%; left: 0; width: 100%; /* position: absolute; */ 
        flex-direction: column; background: var(--white); border-top: 1px solid #eee;
        height: auto; max-height: 80vh; overflow-y: auto; gap: 0; /* max-height: 80vh; */
    }
    .nav-menu.active { display: flex; }
    .nav-menu > li { width: 100%; border-bottom: 1px solid #f9f9f9; display: block; }
    .nav-menu > li > a { padding: 15px 20px; font-size: 14px; justify-content: space-between; width: 100%; }

    /* Mobile Dropdown (Accordion Mode) */
    .dropdown { 
        position: static; opacity: 1; visibility: visible; display: none; 
        transform: none; box-shadow: none; background: #fcfcfc; border-top: none; padding: 0;
    }
    .has-dropdown.active .dropdown { display: block; }
    .has-dropdown.active .arrow { transform: rotate(180deg); }
    
    .dropdown li a { padding: 12px 35px; border-bottom: 1px solid #eee; font-size: 13px; font-weight: 500; }

    /* FOOTER MOBILE STYLES */
	.footer-widgets {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem 1.8rem;
	}
	.footer-container {
		padding: 2.5rem 1.5rem 1.2rem;
	}
}

@media (max-width: 640px) {
	/* FOOTER MOBILE STYLES */
	.footer-widgets {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	.bottom-container {
		flex-direction: column;
		text-align: center;
		justify-content: center;
	}
	.copyright {
		text-align: center;
	}
	.widget-title::after {
		width: 35px;
	}
	.contact-info p::before {
		width: 24px;
	}
	.footer-logo img {
		margin: 0 auto;
	}
	.footer-col-logo {
		align-items: center;
		text-align: center;
	}
	.contact-info {
		align-items: center;
	}
	.back-to-top {
		padding: 0.4rem 1rem;
		font-size: 0.8rem;
	}
}

/* TEMPORARY STYLES */
/* Delete or comment them when in production */
.section-comment {
	margin: 20px;
}