/*
Theme Name: Fluffy Dusters Custom
Theme URI: https://www.fluffydusters-ayrshire.co.uk/
Author: Custom Theme for Fluffy Dusters
Author URI: https://www.fluffydusters-ayrshire.co.uk/
Description: A custom WordPress theme for Fluffy Dusters
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fluffydusters
*/

/* ==========================================================================
   Fonts
   ========================================================================== */

@font-face {
    font-family: 'Helvetica W01 Roman';
    src: url('assets/fonts/helvetica-w01-roman.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

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

a:hover {
    opacity: 0.7;
}

/* ==========================================================================
   Header Styles
   ========================================================================== */

.site-header {
    background-color: #ffffff;
    width: 100%;
    position: relative;
    z-index: 100;
    padding-bottom: 10px;
}

.header-top {
    width: 100%;
    background-color: #ffffff;
}

.header-top-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 5px 40px;
}

.header-email,
.header-phone {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4em;
    color: #000000;
}

.header-email {
    text-align: left;
    justify-self: start;
}

.header-phone {
    text-align: right;
    justify-self: end;
}

.header-email a,
.header-phone a {
    text-decoration: underline;
}

.header-logo {
    text-align: center;
    justify-self: center;
}

.header-logo img,
.header-logo .custom-logo {
    max-height: 80px;
    width: auto;
}

/* Navigation */
.main-navigation {
    width: 100%;
    background-color: #ffffff;
    margin-top: 30px;
    margin-bottom: 10px;
}

.mobile-menu-toggle {
    display: none;
}

.nav-menu-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

#primary-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

#primary-menu li {
    margin: 0 5px;
}

#primary-menu a {
    font-family: Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
    font-size: 18px;
    letter-spacing: 0.05em;
    color: #000000;
    text-decoration: none;
    display: block;
    padding: 8px 60px;
    transition: border 0.3s ease;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
}

#primary-menu a:hover,
#primary-menu .current-menu-item a {
    border-top: 1px solid #000000;
    border-bottom: 1px solid #000000;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
}

/* ==========================================================================
   Main Content
   ========================================================================== */

.site-main {
    width: 100%;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    display: flex;
    width: 100%;
    padding: 0 20px;
    min-height: 500px;
    align-items: center;
    background-color: #ffffff;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-left {
    padding: 60px 40px;
    position: relative;
    z-index: 1;
}

.hero-left-content {
    max-width: 450px;
    width: 100%;
}

.hero-title {
    font-family: 'Libre Baskerville', Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
    font-size: 46px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtext {
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: #000000;
    margin-bottom: 20px;
    max-width: 380px;
}

.hero-subtext p {
    margin-bottom: 10px;
}

.hero-subtext strong,
.hero-subtext b {
    font-family: Helvetica, Arial, sans-serif !important;
    font-weight: bold !important;
}

.hero-subtext p {
    margin-bottom: 10px;
}

.hero-cta-text {
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 20px;
    color: #000000;
    margin-bottom: 20px;
}

.hero-button {
    display: flex;
    justify-content: center;
    margin: 0;
    width: 80%;
    padding: 12px 24px;
    background-color: #ffffff;
    border: 2px solid #000000;
    color: #000000;
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    gap: 10px;
}

.hero-button:hover {
    background-color: #000000;
    color: #ffffff;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img {
    position: fixed;
    right: 20px;
    top: 0;
    width: calc(50vw - 20px);
    height: 100vh;
    object-fit: cover;
    z-index: 0;
}

/* ==========================================================================
   Features Section
   ========================================================================== */

.features-section {
    width: 100%;
    background-color: #1a1f46;
    padding: 40px 80px;
    position: relative;
    z-index: 1;
}

.features-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 250px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: #419bdc;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.feature-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.feature-text {
    color: #ffffff;
    font-family: 'Libre Baskerville', Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 400;
}

/* ==========================================================================
   Content Section
   ========================================================================== */

.content-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.content-section-inner {
    max-width: 800px;
    margin: 0 auto;
}

.section-heading {
    font-family: 'Libre Baskerville', Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
    font-size: 36px;
    color: #1a1f46;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 300;
}

.section-content {
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    text-align: center;
}

.section-content p {
    margin-bottom: 10px;
}

.section-content strong,
.section-content b {
    font-family: Helvetica, Arial, sans-serif !important;
    font-weight: bold !important;
}

.section-content p {
    margin-bottom: 15px;
}

.section-content ul,
.section-content ol {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
    padding-left: 20px;
}

.section-content li {
    margin-bottom: 5px;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.services-section-inner {
    max-width: 100%;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 100px;
}

.service-box {
    background-color: #f1f1f1;
    padding: 80px 30px 40px;
    text-align: center;
    position: relative;
}

.service-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 10px solid #f1f1f1;
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
}

.service-title {
    font-family: 'Libre Baskerville', Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
    font-size: 24px;
    font-weight: 300;
    color: #000000;
    margin-bottom: 20px;
}

.service-description {
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 30px;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.service-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffffff;
    border: 1px solid #000000;
    color: #000000;
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-button:hover {
    background-color: #000000;
    color: #ffffff;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */

.testimonials-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.testimonials-section-inner {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote-icon {
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
}

.testimonial-quote-icon img {
    width: 80px;
    height: 80px;
    filter: invert(46%) sepia(98%) saturate(1285%) hue-rotate(170deg) brightness(95%) contrast(89%);
    transform: rotate(180deg);
}

.testimonial-text {
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 18px;
    color: #000000;
    margin-bottom: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-author {
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #000000;
    margin-bottom: 40px;
}

.testimonial-author a {
    color: #000000;
    text-decoration: underline;
}

.reviews-box {
    background-color: #199bdc;
    padding: 50px 80px;
    margin: 0 auto;
    border-radius: 0;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.reviews-box-title {
    color: #ffffff;
    font-family: 'Libre Baskerville', Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 400;
}

.reviews-box-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    width: 100%;
}

.review-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-icon {
    width: 50px;
    height: 50px;
}

.review-details {
    color: #ffffff;
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    text-align: left;
}

.review-rating {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.review-stars {
    color: #ffd700;
    margin-left: 5px;
}

.review-count {
    font-size: 14px;
}

/* ==========================================================================
   Split Sections
   ========================================================================== */

.split-section {
    display: flex;
    width: 100%;
    padding: 0;
    min-height: 500px;
    align-items: stretch;
    background-color: #ffffff;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.split-left,
.split-right {
    width: 50%;
    flex-shrink: 0;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    padding: 0;
}

/* Split Section 1: Text Left, Image Right */
.split-section:not(.split-section-2):not(.contact-details-section) .split-left {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
}

.split-section:not(.split-section-2):not(.contact-details-section) .split-right {
    padding: 0;
}

/* Split Section 2: Image Left, Text Right */
.split-section-2 .split-left {
    padding: 0;
}

.split-section-2:not(.contact-details-section) .split-right {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
}

/* Add padding to homepage split sections */
.split-section:not(.contact-details-section) {
    padding: 0 20px;
}

.split-content {
    max-width: 450px;
    width: 100%;
}

.split-title {
    font-family: 'Libre Baskerville', Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
    font-size: 50px;
    font-weight: 300;
    color: #1a1f46;
    margin-bottom: 20px;
    line-height: 1.2;
}

.split-text {
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 20px;
}

.split-text p {
    margin-bottom: 10px;
}

.split-text strong,
.split-text b {
    font-family: Helvetica, Arial, sans-serif !important;
    font-weight: bold !important;
}

.split-text ul,
.split-text ol {
    margin: 10px 0 10px 20px;
    padding-left: 20px;
}

.split-text li {
    margin-bottom: 5px;
}

.split-text p + p {
    margin-top: 15px;
}

.split-cta-text {
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 20px;
    color: #000000;
    margin-bottom: 20px;
}

.split-button {
    display: inline-flex;
    justify-content: center;
    padding: 12px 24px;
    background-color: #ffffff;
    border: 2px solid #000000;
    color: #000000;
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    gap: 10px;
}

.split-button .phone-icon {
    width: 18px;
    height: 18px;
    filter: brightness(0);
}

.split-button:hover .phone-icon {
    filter: brightness(0) invert(1);
}

.split-button:hover {
    background-color: #000000;
    color: #ffffff;
}

.split-section:not(.split-section-2) .split-right img,
.split-section-2 .split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
   Three Column Features
   ========================================================================== */

.three-col-features-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.three-col-features-inner {
    max-width: 100%;
    margin: 0 auto;
}

.features-heading {
    font-family: 'Libre Baskerville', Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
    font-size: 36px;
    color: #1a1f46;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 400;
}

.three-col-grid {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    max-width: 100%;
    width: 100%;
    padding: 0 40px;
}

.feature-col {
    text-align: center;
    flex: 1;
    max-width: 350px;
}

.feature-col-icon {
    width: 60px;
    height: 60px;
    background-color: #419bdc;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.feature-col-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.feature-col-title {
    font-family: 'Libre Baskerville', Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
    font-size: 24px;
    color: #1a1f46;
    margin-bottom: 15px;
}

.feature-col-text {
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
}

/* ==========================================================================
   Dark Split Section
   ========================================================================== */

.dark-split-section {
    display: flex;
    width: 100%;
    min-height: 500px;
    align-items: center;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.dark-split-container {
    display: flex;
    width: 100%;
    max-width: 100%;
}

.dark-split-left {
    background-color: #1a1e45;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    width: 50%;
    flex-shrink: 0;
}

.dark-split-content {
    max-width: 450px;
    width: 100%;
}

.dark-split-title {
    font-family: 'Libre Baskerville', Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
    font-size: 50px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.dark-split-text {
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
}

.dark-split-text p {
    margin-bottom: 10px;
}

.dark-split-text strong,
.dark-split-text b {
    font-family: Helvetica, Arial, sans-serif !important;
    font-weight: bold !important;
}

.dark-split-text ul,
.dark-split-text ol {
    margin: 10px 0 10px 20px;
    padding-left: 20px;
}

.dark-split-text li {
    margin-bottom: 5px;
}

.dark-split-text p + p {
    margin-top: 15px;
}

.dark-split-text p {
    margin-bottom: 10px;
}

.dark-split-cta-text {
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 20px;
}

.dark-split-button {
    display: inline-flex;
    padding: 12px 24px;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    color: #000000;
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    gap: 10px;
}

.dark-split-button:hover {
    background-color: transparent;
    color: #ffffff;
}

.dark-split-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    flex-shrink: 0;
}

.dark-split-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

.contact-details-section {
    min-height: 100vh;
}

.contact-details-section .split-left {
    width: 50vw;
    padding: 60px 40px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-details-section .split-right.contact-image-wrapper {
    position: absolute;
    right: 20px;
    top: 0;
    width: calc(50vw - 20px);
    height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.contact-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 450px;
    background-color: #f1f1f1;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
    box-sizing: border-box;
}

.contact-form-overlay input[type="text"],
.contact-form-overlay input[type="email"],
.contact-form-overlay input[type="tel"],
.contact-form-overlay input[type="url"],
.contact-form-overlay input[type="number"],
.contact-form-overlay textarea,
.contact-form-overlay select {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 0 15px 0 !important;
    padding: 12px 15px !important;
    background-color: #ffffff !important;
    border: 1px solid #ddd !important;
    border-radius: 8px !important;
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif !important;
    font-size: 14px !important;
}

.contact-form-overlay textarea {
    min-height: 120px !important;
}

.contact-form-overlay input[type="submit"] {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 14px 20px !important;
    background-color: #1d2461 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif !important;
    font-size: 16px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease !important;
    margin-top: 10px !important;
}

.contact-form-overlay input[type="submit"]:hover {
    background-color: #151b4a !important;
}

.contact-details h3 {
    font-family: 'Libre Baskerville', Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
    font-size: 24px;
    font-weight: 400;
    color: #1a1f46;
    margin-bottom: 20px;
    margin-top: 40px;
}

.contact-details h3:first-child {
    margin-top: 0;
}

.contact-details p {
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 10px;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin: 30px 0;
}

.contact-social img {
    width: 40px;
    height: 40px;
}

.google-maps-section {
    width: 100%;
    padding: 0 20px;
    background-color: #ffffff;
    position: relative;
    z-index: 1;
}

.google-maps-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.google-maps-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}

/* ==========================================================================
   Footer Styles
   ========================================================================== */

.site-footer {
    background-color: #ffffff;
    color: #000000;
    width: 100%;
    position: relative;
    z-index: 1;
}

.footer-widgets {
    padding: 60px 80px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-family: 'Libre Baskerville', Baskerville, 'Baskerville Old Face', 'Hoefler Text', Garamond, 'Times New Roman', serif;
    font-size: 20px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
}

.footer-column p {
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 10px;
}

.footer-column a {
    color: #000000;
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-social img {
    width: 40px;
    height: 40px;
}

.footer-review img {
    max-width: 200px;
}

.footer-bottom {
    background-color: #1a1f46;
    color: #ffffff;
    padding: 30px 80px;
    text-align: center;
}

.footer-bottom-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-navigation {
    width: 100%;
    margin-bottom: 20px;
}

.footer-navigation #footer-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

.footer-navigation #footer-menu li {
    margin: 0;
}

.footer-navigation #footer-menu li:not(:last-child)::after {
    content: ' | ';
    color: #ffffff;
    margin: 0 15px;
}

.footer-navigation #footer-menu a {
    color: #ffffff;
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 14px;
    text-decoration: underline;
}

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

.footer-copyright {
    font-family: 'Helvetica W01 Roman', Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.6;
}

.footer-copyright a {
    color: #ffffff;
    text-decoration: underline;
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1024px) {
    /* Tablet styles */
    .header-top-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 15px;
    }
    
    .header-email,
    .header-phone {
        justify-content: center;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .hero-section {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .hero-left,
    .hero-right {
        width: 100%;
    }
    
    .hero-right img {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        margin-top: 30px;
    }
    
    .features-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .services-grid {
        flex-direction: column;
        gap: 60px;
    }
    
    .split-section {
        flex-direction: column-reverse;
    }
    
    .split-section-2 {
        flex-direction: column;
    }
    
    .split-left,
    .split-right {
        width: 100% !important;
    }
    
    .contact-details-section .split-right.contact-image-wrapper {
        position: relative;
        right: 0;
        width: 100% !important;
        height: 400px;
        margin-top: 30px;
    }
    
    .contact-details-section .split-left {
        width: 100%;
    }
    
    .three-col-grid {
        flex-direction: column;
        gap: 40px;
    }
    
    .dark-split-section {
        flex-direction: column;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .dark-split-container {
        width: 100% !important;
        flex-direction: column !important;
        display: flex !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .dark-split-left,
    .dark-split-right {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .dark-split-left {
        padding: 60px 40px !important;
        order: 2;
    }
    
    .dark-split-right {
        order: 1;
    }
    
    .dark-split-right img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 !important;
    }
    
    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Mobile styles */
    body {
        font-size: 14px;
    }
    
    .header-top {
        position: relative;
    }
    
    .header-top-container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto auto;
        padding: 15px 20px;
        gap: 15px;
        align-items: center;
    }
    
    .header-email {
        grid-column: 1 / -1;
        grid-row: 3;
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
        font-size: 16px;
    }
    
    .header-logo {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
    }
    
    .header-logo img {
        max-width: 180px;
        max-height: 60px;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 32px;
        cursor: pointer;
        padding: 5px;
        z-index: 1000;
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }
    
    .header-phone {
        grid-column: 1 / -1;
        grid-row: 2;
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
        font-size: 16px;
    }
    
    .main-navigation {
        margin-top: 0;
        margin-bottom: 0;
    }
    
    .nav-menu-container {
        padding: 0;
        position: relative;
    }
    
    #primary-menu {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    #primary-menu.active {
        display: flex;
    }
    
    #primary-menu li {
        width: 100%;
        text-align: left;
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
    }
    
    #primary-menu a {
        padding: 15px 20px;
        display: block;
        border-top: none !important;
        border-bottom: none !important;
    }
    
    #primary-menu a:hover,
    #primary-menu .current_page_item a {
        background-color: #f5f5f5;
    }
    
    .hero-section {
        padding: 0;
        flex-direction: column-reverse;
        margin: 0;
    }
    
    .hero-left {
        padding: 30px 20px;
    }
    
    .hero-right {
        order: -1;
        margin-bottom: 0;
        width: 100%;
        padding: 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtext {
        font-size: 14px;
    }
    
    .hero-button {
        width: 100%;
    }
    
    .hero-right img {
        position: relative !important;
        right: 0 !important;
        top: 0 !important;
        width: 100% !important;
        height: 300px !important;
        margin: 0;
    }
    
    .features-section {
        padding: 30px 20px;
    }
    
    .features-container {
        align-items: flex-start;
    }
    
    .feature-item {
        justify-content: flex-start;
        text-align: left;
    }
    
    .feature-text {
        font-size: 16px;
    }
    
    .content-section,
    .services-section,
    .testimonials-section,
    .three-col-features-section {
        padding: 60px 20px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .service-box {
        padding: 60px 20px 30px;
    }
    
    .reviews-box {
        padding: 30px 20px;
        gap: 30px;
    }
    
    .reviews-box-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .split-title {
        font-size: 32px;
    }
    
    .dark-split-section {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    .dark-split-container {
        width: 100% !important;
        flex-direction: column !important;
        display: flex !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .dark-split-left {
        width: 100% !important;
        padding: 40px 20px !important;
        margin: 0 !important;
        box-sizing: border-box;
        order: 2;
    }
    
    .dark-split-right {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        order: 1;
    }
    
    .dark-split-right img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 0 !important;
    }
    
    .dark-split-title {
        font-size: 32px;
    }
    
    .footer-widgets {
        padding: 40px 20px;
    }
    
    .footer-bottom {
        padding: 20px;
    }
    
    .footer-navigation #footer-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-navigation #footer-menu li:not(:last-child)::after {
        content: '';
        margin: 0;
    }
    
    .contact-form-overlay {
        width: 90%;
        padding: 20px;
    }
}

.footer-copyright p {
    margin-bottom: 5px;
}

/* ==========================================================================
   Phone Icon Styling
   ========================================================================== */

.phone-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    vertical-align: middle;
}

.hero-button .phone-icon,
.split-button .phone-icon,
.dark-split-button .phone-icon {
    filter: brightness(0);
}

.hero-button:hover .phone-icon,
.split-button:hover .phone-icon {
    filter: brightness(0) invert(1);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media screen and (max-width: 768px) {
    .header-top-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .header-email,
    .header-phone {
        text-align: center;
    }

    #primary-menu {
        display: none;
        flex-direction: column;
    }
    
    #primary-menu.active {
        display: flex;
    }

    .hero-section {
        flex-direction: column;
    }
    
    .split-section {
        flex-direction: column-reverse;
    }
    
    .split-section-2 {
        flex-direction: column;
    }
    
    .dark-split-section {
        flex-direction: column-reverse;
    }

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

    .three-col-grid {
        flex-direction: column;
        gap: 40px;
    }

    .footer-columns {
        flex-direction: column;
    }

    .reviews-box-content {
        flex-direction: column;
        gap: 30px;
    }
}

