/* CSS Reset */
html, body { 
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Ensures consistent width and padding calculation */
    width: 100%; /* Full width for the body */
    font-family: 'PT Sans', sans-serif; /* Set PT Sans for all text */
} 

*, *::before, *::after {
    box-sizing: inherit; /* Inherit box-sizing for all elements */
}



/* Footer Styling */
/* Full-Width Footer Styling */
.site-footer {
    background-color: #363839; /* Dark background */
    color: #ffffff; /* White text */
    padding: 0 20px; /* Removed top and bottom padding */
    text-align: left;
    width: 100%; /* Ensures full width */
    box-sizing: border-box; /* Includes padding in width calculation */
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'PT Sans', sans-serif; /* Set PT Sans for footer */
}

.site-footer .container {
    max-width: 1200px;
    margin: 40px auto; /* Added margin to create spacing */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    font-family: 'PT Sans', sans-serif;
}

.footer-widgets {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
    flex: 1;
    min-width: 200px;
    font-family: 'PT Sans', sans-serif;
}

.footer-contact {
    flex: 1;
    min-width: 200px;
    margin-right: 20px;
    font-family: 'PT Sans', sans-serif;
}

.footer-services {
    flex: 1;
    min-width: 200px;
    margin-right: 20px;
    font-family: 'PT Sans', sans-serif;
}

.footer-services ul {
    list-style: none;
    padding-left: 0;
}

.footer-services ul li {
    border-bottom: 1px solid #444444;
    padding: 8px 0;
    position: relative;
    padding-left: 15px;
}

.footer-services ul li:before {
    content: "›";
    position: absolute;
    left: 0;
    color: #ff0000;
    font-weight: bold;
}

.footer-services ul li:last-child {
    border-bottom: none;
}

.site-info {
    text-align: center;
    align-items: center;
}

.site-info p, .site-info div, .site-info span, .site-info ul, .site-info li {
    text-align: left;
    margin-top: 0;
    font-family: 'PT Sans', sans-serif;
}

/* Footer Copyright Section */
.footer-copyright {
    background-color: #222222;
    color: #ffffff;
    padding: 10px 20px;
    text-align: center;
    width: 100vw; /* Full screen width */
    font-family: 'PT Sans', sans-serif;
}

.footer-copyright a {
    color: #ff0000;
    text-decoration: none;
    font-weight: 500;
    font-family: 'PT Sans', sans-serif;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.site-footer a {
    text-decoration: none;
    color: #ffffff;
}

.site-footer a:hover {
    color: #ff0000;
}

.site-footer h3 {
    color: #ff0000;
}

.refrigerated-services h3 {
    color: #00c6ff;
}

.refrigerated-services ul li:before {
    color: #00c6ff;
}

.footer-newsletter {
    flex: 1;
    min-width: 200px;
    margin-right: 20px;
}

.newsletter-form .form-group {
    margin-bottom: 15px;
}

.newsletter-form input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #444444;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 4px;
}

.newsletter-form input::placeholder {
    color: #cccccc;
}

.newsletter-submit {
    background-color: #ff0000;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-submit:hover {
    background-color: #ff3333;
}

.footer-divider {
    width: 100vw;
    height: 2px;
    background-color: #444444;
    margin: 0;
    transform: translateX(-50%);
    position: relative;
    left: 50%;
}

/* Header Styles */
.site-header {
    width: 100%;
}

/* Top Contact Bar */
.header-contact-bar {
    background-color: #ff0000;
    color: #ffffff;
    padding: 8px 0;
}

.header-contact-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-info .fas {
    margin-right: 5px;
    font-size: 14px;
}

/* Main Navigation Bar */
.main-navigation-bar {
    background-color: #ffffff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.main-navigation-bar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 25px;
    position: relative;
}

.site-branding .custom-logo {
    max-height: 60px;
    width: auto;
}

.site-branding .fors-logo {
    height: 60px;
    width: auto;
    margin-left: 15px;
    position: relative;
}

@media (max-width: 768px) {
    .site-branding {
        gap: 15px;
    }

    .site-branding .custom-logo {
        max-height: 50px;
    }

    .site-branding .fors-logo {
        height: 45px;
        margin-left: 10px;
    }
}

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

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

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: #ff0000;
}

/* Hero Slider Styles */
.hero-section {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.slide-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.slide-content {
    position: absolute;
    bottom: 100px;
    right: 0;
    width: 40%;
    max-width: 500px;
    padding: 0;
    transform: none;
    margin-right: 50px;
}

.slide-text {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 5px;
}

.slide-text h2 {
    color: #ffffff;
    font-size: 32px;
    margin: 0 0 15px 0;
    line-height: 1.2;
    font-weight: bold;
}

.slide-text p {
    color: #ffffff;
    font-size: 18px;
    margin: 0;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ff0000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button.secondary {
    background-color: #ff0000;
    border: none;
}

.cta-button:hover,
.cta-button.secondary:hover {
    background-color: #ff3333;
    color: #ffffff;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
        max-width: 250px; /* Set a max-width to prevent full-width buttons */
        margin: 0 auto; /* Center the buttons container */
    }

    .slide-content {
        width: 90%;
        right: 50%;
        transform: translateX(50%);
        margin-right: 0;
        bottom: 50px;
    }

    .cta-button {
        width: auto; /* Remove full width */
        min-width: 200px; /* Set minimum width */
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Header Mobile Styles */
    .header-contact-bar {
        padding: 5px 0;
    }

    .contact-info {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }

    .site-branding {
        max-width: 150px; /* Smaller logo on mobile */
    }

    /* Hero Slider Mobile Styles */
    .hero-section {
        height: 400px;
    }

    .slide-content {
        bottom: 30px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Footer Mobile Styles */
    .site-footer .container {
        flex-direction: column;
        gap: 30px;
        margin: 20px auto;
    }

    .footer-contact,
    .footer-services,
    .footer-newsletter {
        margin-right: 0;
        min-width: 100%;
    }

    .footer-services ul li {
        padding: 10px 0 10px 20px; /* Increased touch target */
    }

    .newsletter-form input,
    .newsletter-submit {
        height: 44px; /* Larger touch targets */
    }

    .footer-copyright {
        padding: 15px;
        font-size: 14px;
    }

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

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-section {
        height: 300px;
    }

    .slide-content {
        bottom: 20px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none; /* Hide navigation arrows on very small screens */
    }

    .site-footer {
        padding: 0 10px;
    }

    .footer-services h3,
    .footer-contact h3,
    .footer-newsletter h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
}

/* Medium Devices */
@media (min-width: 769px) and (max-width: 1024px) {
    .site-footer .container {
        flex-wrap: wrap;
    }

    .footer-contact,
    .footer-services,
    .footer-newsletter {
        flex: 0 0 calc(50% - 20px);
        min-width: calc(50% - 20px);
    }

    .hero-section {
        height: 500px;
    }
}

/* Full Width Text Section */
.full-width-text {
    width: 100%;
    background-color: #f5f5f5;
    padding: 40px 0;
    text-align: center;
}

.full-width-text .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.full-width-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 30px;
    line-height: 1.4;
    color: #4d4d4d;
    margin: 0;
    font-weight: 500;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .full-width-text {
        padding: 30px 0;
    }
    
    .full-width-text p {
        font-size: 22px;
    }
}

/* Service Boxes Section */
.service-boxes {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-boxes .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.boxes-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 30px;
}

.boxes-row:last-child {
    margin-bottom: 0;
}

.service-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 400px;
    text-decoration: none; /* Remove link underline */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.box-image {
    height: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.box-content {
    height: 50%;
    padding: 20px;
    background: #333333; /* Dark grey background */
}

.box-content h3 {
    display: none; /* Remove the header */
}

.box-content p {
    color: #ffffff; /* White text */
    margin: 0;
    line-height: 1.5;
    font-size: 28px; /* Larger font size */
    font-weight: 400;
}

/* Responsive styles */
@media (max-width: 768px) {
    .boxes-row {
        flex-direction: column;
        gap: 20px;
    }

    .service-box {
        min-height: 400px; /* Changed from fixed height to min-height */
        width: 100%; /* Ensure full width */
        display: flex;
        flex-direction: column;
    }

    .box-image {
        min-height: 200px; /* Give explicit minimum height */
        width: 100%;
        flex: 1; /* Allow image to flex */
        background-size: cover;
        background-position: center;
    }

    .box-content {
        min-height: 200px; /* Give explicit minimum height */
        width: 100%;
        flex: 1; /* Allow content to flex */
    }

    .box-content p {
        font-size: 22px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .box-content p {
        font-size: 24px; /* Medium size for tablets */
    }
}

/* About Text Section */
.about-text-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.about-text-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text-section h2 {
    color: #333333;
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.about-text-section .intro-text {
    font-size: 18px;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 40px;
    text-align: center;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.features-list li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

.features-list li:before {
    content: "•";
    color: #ff0000;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

.features-list li strong {
    color: #333333;
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
}

.about-text-section .closing-text {
    font-size: 18px;
    line-height: 1.6;
    color: #666666;
    text-align: center;
    font-weight: 500;
    margin-top: 40px;
}

/* Responsive styles for About Text Section */
@media (max-width: 768px) {
    .about-text-section {
        padding: 40px 0;
    }

    .about-text-section h2 {
        font-size: 28px;
    }

    .features-list li {
        font-size: 15px;
    }

    .features-list li strong {
        font-size: 16px;
    }

    .about-text-section .intro-text,
    .about-text-section .closing-text {
        font-size: 16px;
    }
}

/* Services Icon Grid Section */
.services-icon-grid {
    padding: 60px 0;
    background-color: #ffffff;
}

.services-icon-grid .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-icon-grid h2 {
    text-align: center;
    color: #333333;
    font-size: 36px;
    margin-bottom: 20px;
}

.services-icon-grid .section-intro {
    text-align: center;
    color: #666666;
    font-size: 18px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
    max-width: 1000px;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 20px;
    transition: transform 0.3s ease;
}

.icon-item:hover {
    transform: translateY(-5px);
}

.icon-item i {
    font-size: 40px;
    color: #ff0000;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.icon-item:hover i {
    color: #ff3333;
}

.icon-item h3 {
    color: #333333;
    font-size: 18px;
    margin: 0;
    text-align: center;
    transition: color 0.3s ease;
}

.icon-item:hover h3 {
    color: #ff0000;
}

/* Responsive styles */
@media (max-width: 768px) {
    .services-icon-grid {
        padding: 40px 0;
    }

    .services-icon-grid h2 {
        font-size: 28px;
    }

    .services-icon-grid .section-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .icon-item i {
        font-size: 32px;
    }

    .icon-item h3 {
        font-size: 16px;
    }
}

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

/* Client Logos Section */
.client-logos {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.client-logos .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.client-logos h2 {
    text-align: center;
    color: #333333;
    font-size: 36px;
    margin-bottom: 40px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
}

.logo-item a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.logo-item img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.logo-item:hover img {
    opacity: 0.8;
}

/* Responsive styles */
@media (max-width: 768px) {
    .client-logos {
        padding: 40px 0;
    }

    .client-logos h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .logo-item {
        padding: 15px;
    }

    .logo-item img {
        max-height: 60px;
    }
}

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

/* Contact Form Section */
.contact-form-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-form-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form-section h2 {
    text-align: center;
    color: #333333;
    font-size: 36px;
    margin-bottom: 40px;
}

/* Contact Form 7 Styles */
.wpcf7-form {
    display: grid;
    gap: 20px;
}

.wpcf7-form p {
    margin: 0;
}

.wpcf7-form label {
    display: block;
    margin-bottom: 5px;
    color: #333333;
    font-weight: 500;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    background-color: #f9f9f9;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus {
    border-color: #ff0000;
    outline: none;
}

.wpcf7-form textarea {
    height: 150px;
    resize: vertical;
}

.wpcf7-form input[type="submit"] {
    background-color: #ff0000;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: auto;
    margin: 0 auto;
    display: block;
}

.wpcf7-form input[type="submit"]:hover {
    background-color: #ff3333;
}

/* Form Response Messages */
.wpcf7-response-output {
    margin: 20px 0 0;
    padding: 15px;
    border-radius: 4px;
    text-align: center;
}

.wpcf7-validation-errors {
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    color: #856404;
}

.wpcf7-mail-sent-ok {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.wpcf7-not-valid-tip {
    color: #dc3545;
    font-size: 14px;
    margin-top: 5px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .contact-form-section {
        padding: 40px 0;
    }

    .contact-form-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .wpcf7-form input[type="text"],
    .wpcf7-form input[type="email"],
    .wpcf7-form input[type="tel"],
    .wpcf7-form textarea {
        padding: 10px;
        font-size: 15px;
    }

    .wpcf7-form input[type="submit"] {
        padding: 12px 25px;
        font-size: 15px;
    }
}

/* Page Template Styles */
.page-content {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .page-content {
        padding: 40px 0;
    }
}

/* Page Hero Section */
.page-hero-section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.page-hero-section .hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.page-hero-section .slide-content {
    position: absolute;
    bottom: 100px;
    right: 0;
    width: 40%;
    max-width: 500px;
    padding: 0;
    transform: none;
    margin-right: 50px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .page-hero-section {
        height: 400px;
    }

    .page-hero-section .slide-content {
        width: 90%;
        right: 50%;
        transform: translateX(50%);
        margin-right: 0;
        bottom: 50px;
    }
}

@media (max-width: 480px) {
    .page-hero-section {
        height: 300px;
    }

    .page-hero-section .slide-content {
        bottom: 30px;
    }
}

/* Two Column Section */
.two-column-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.two-column-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.column-wrapper {
    display: flex;
    gap: 40px;
}

/* Left Column Styles */
.content-column {
    flex: 1;
    padding-right: 20px;
}

.content-column h2 {
    color: #333333;
    font-size: 32px;
    margin-bottom: 25px;
}

.content-column h3 {
    color: #333333;
    font-size: 24px;
    margin: 30px 0 20px;
}

.content-column .main-text {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.content-column .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-column .features-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 25px;
    color: #666666;
}

.content-column .features-list li:before {
    content: "•";
    color: #ff0000;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
}

.content-column .features-list .feature-title {
    color: #333333;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.content-column .features-list .feature-description {
    font-size: 16px;
    line-height: 1.5;
    color: #666666;
}

@media (max-width: 768px) {
    .content-column .features-list .feature-title {
        font-size: 16px;
    }
    
    .content-column .features-list .feature-description {
        font-size: 15px;
    }
    
    .content-column .features-list li {
        margin-bottom: 20px;
    }
}

/* Right Column Styles */
.form-column {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-column h2 {
    color: #333333;
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}

/* Quote Form Styles */
.quote-form {
    display: grid;
    gap: 20px;
}

.quote-form .form-row {
    display: grid;
    gap: 15px;
}

.quote-form label {
    display: block;
    margin-bottom: 5px;
    color: #333333;
    font-weight: 500;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form input[type="date"],
.quote-form input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 15px;
}

.quote-form input[type="submit"] {
    background-color: #ff0000;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.quote-form input[type="submit"]:hover {
    background-color: #ff3333;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .column-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .content-column {
        padding-right: 0;
    }

    .form-column {
        padding: 20px;
    }

    .content-column h2 {
        font-size: 28px;
    }

    .content-column h3 {
        font-size: 22px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.testimonials-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-section h2 {
    text-align: center;
    color: #333333;
    font-size: 36px;
    margin-bottom: 40px;
}

.testimonial-content {
    text-align: center;
    padding: 30px;
    margin: 0 auto;
    max-width: 800px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 25px;
    position: relative;
    padding: 0 60px; /* Increased padding to accommodate quotes */
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-size: 60px;
    color: #333333; /* Changed to dark grey */
    position: absolute;
    line-height: 1;
}

.testimonial-text:before {
    left: 0;
    top: -10px;
}

.testimonial-text:after {
    right: 0;
    bottom: -40px;
}

.testimonial-author {
    margin-top: 20px;
}

.testimonial-author strong {
    display: block;
    color: #333333;
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-author .company {
    color: #666666;
    font-size: 16px;
}

/* Swiper Navigation Styles - Fixed positioning */
.testimonials-slider {
    position: relative;
    padding: 0 20px; /* Reduced padding since we removed arrows */
}

/* Remove all the navigation arrow styles */
.testimonials-slider .swiper-pagination-bullet {
    background: #ff0000;
    opacity: 0.5;
}

.testimonials-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 768px) {
    .testimonials-slider {
        padding: 0 20px;
    }
}

/* Quote Form Section Styles */
.quote-form-sections {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-section {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.form-section h3 {
    color: #333333;
    font-size: 20px;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff0000;
}

.form-row {
    margin-bottom: 15px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
    color: #333333;
    font-weight: 500;
}

.dimensions-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.dimension-field {
    width: 100%;
}

.quote-form-sections input[type="text"],
.quote-form-sections input[type="tel"],
.quote-form-sections input[type="number"],
.quote-form-sections input[type="datetime-local"],
.quote-form-sections textarea,
.quote-form-sections select {
    width: 100%;
    padding: 10px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 15px;
    background-color: #ffffff;
}

.quote-form-sections textarea {
    height: 100px;
    resize: vertical;
}

.quote-form-sections input[type="submit"] {
    background-color: #ff0000;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.quote-form-sections input[type="submit"]:hover {
    background-color: #ff3333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dimensions-group {
        grid-template-columns: 1fr;
    }

    .form-section {
        padding: 20px;
    }

    .form-section h3 {
        font-size: 18px;
    }
}

/* Contact Page Styles */
.contact-page-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.contact-page-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-columns {
    display: flex;
    gap: 40px;
}

/* Left Column Styles */
.contact-info-column {
    flex: 1;
}

.contact-info-column h2 {
    color: #333333;
    font-size: 32px;
    margin-bottom: 25px;
}

.contact-text {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-details h3 {
    color: #333333;
    font-size: 20px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details h3 i {
    color: #ff0000;
}

.address-section,
.phone-section,
.email-section {
    margin-bottom: 25px;
}

.contact-details p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding-left: 34px;
}

.contact-details a {
    color: #ff0000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ff3333;
}

/* Google Map Styles */
.google-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Right Column Styles */
.contact-form-column {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.contact-form-column h2 {
    color: #333333;
    font-size: 28px;
    margin-bottom: 25px;
    text-align: center;
}

/* Contact Form Styles */
.contact-form {
    display: grid;
    gap: 20px;
}

.contact-form .form-row {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    color: #333333;
    font-weight: 500;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 15px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ff0000;
    outline: none;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-form input[type="submit"] {
    background-color: #ff0000;
    color: #ffffff;
    padding: 15px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.contact-form input[type="submit"]:hover {
    background-color: #ff3333;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-columns {
        flex-direction: column;
    }

    .contact-info-column,
    .contact-form-column {
        width: 100%;
    }

    .contact-info-column h2 {
        font-size: 28px;
    }

    .contact-details h3 {
        font-size: 18px;
    }

    .contact-form-column {
        padding: 20px;
    }
}

/* Blog Page Styles */
.blog-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.blog-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    text-align: center;
    color: #333333;
    font-size: 36px;
    margin-bottom: 40px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Blog Card Styles */
.blog-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.blog-image {
    position: relative;
    padding-top: 60%; /* 3:2 Aspect Ratio */
    overflow: hidden;
}

.blog-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    margin-bottom: 15px;
    color: #666666;
    font-size: 14px;
}

.blog-meta i {
    color: #ff0000;
    margin-right: 5px;
}

.blog-title {
    font-size: 20px;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.blog-title a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: #ff0000;
}

.blog-excerpt {
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #ff0000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #ff3333;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Pagination Styles */
.pagination {
    text-align: center;
    margin-top: 40px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 4px;
    background: #ffffff;
    color: #333333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination .page-numbers.current {
    background: #ff0000;
    color: #ffffff;
}

.pagination .page-numbers:hover:not(.current) {
    background: #f0f0f0;
}

.pagination .prev,
.pagination .next {
    width: auto;
    padding: 0 15px;
}

.pagination i {
    font-size: 12px;
}

/* No Posts Message */
.no-posts {
    text-align: center;
    color: #666666;
    font-size: 18px;
    grid-column: 1 / -1;
    padding: 40px 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 40px 0;
    }

    .page-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-content {
        padding: 20px;
    }

    .blog-title {
        font-size: 18px;
    }

    .pagination .page-numbers {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Single Post Styles */
.single-post {
    background-color: #ffffff;
    margin-bottom: 60px;
}

.post-hero {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.post-header {
    text-align: center;
    margin-bottom: 40px;
}

.post-title {
    color: #333333;
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.post-meta {
    color: #666666;
    font-size: 16px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.post-meta i {
    color: #ff0000;
    margin-right: 5px;
}

.post-meta a {
    color: #666666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-meta a:hover {
    color: #ff0000;
}

.post-body {
    font-size: 18px;
    line-height: 1.8;
    color: #444444;
}

.post-body p {
    margin-bottom: 20px;
}

.post-body img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
}

/* Post Navigation */
.post-navigation {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eeeeee;
    display: flex;
    justify-content: space-between;
}

.prev-post,
.next-post {
    flex: 0 0 45%;
    text-decoration: none;
    color: #666666;
    transition: color 0.3s ease;
}

.prev-post:hover,
.next-post:hover {
    color: #ff0000;
}

.prev-post i,
.next-post i {
    margin: 0 5px;
}

.prev-post span,
.next-post span {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

.prev-post strong,
.next-post strong {
    display: block;
    color: #333333;
    font-size: 16px;
}

.next-post {
    text-align: right;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .post-hero {
        height: 300px;
    }

    .post-content {
        padding: 30px 20px;
    }

    .post-title {
        font-size: 28px;
    }

    .post-meta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .post-body {
        font-size: 16px;
    }

    .post-navigation {
        flex-direction: column;
        gap: 20px;
    }

    .prev-post,
    .next-post {
        flex: 0 0 100%;
        text-align: center;
    }
}

/* Services Grid Section */
.services-grid-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.services-grid-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.service-grid-box {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-grid-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.service-grid-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-grid-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-grid-content h2 {
    color: #333333;
    font-size: 24px;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.service-grid-content h3 {
    color: #666666;
    font-size: 18px;
    margin: 0 0 15px 0;
    font-weight: normal;
}

.service-grid-content p {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex-grow: 1;
    max-height: 16em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.read-more {
    color: #ff0000;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.service-grid-box:hover .read-more {
    color: #ff3333;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid-section {
        padding: 40px 0;
    }

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

    .service-grid-image {
        height: 200px;
    }

    .service-grid-content {
        padding: 20px;
    }

    .service-grid-content h2 {
        font-size: 20px;
    }

    .service-grid-content h3 {
        font-size: 16px;
    }
}

p.box-para {
    color: #fff;
    font-size: 16px;
    margin-top: 10px;
    opacity: 0.8;
    line-height: 1.4;
}

/* Responsive styles */
@media (max-width: 768px) {
    p.box-para {
        font-size: 14px;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    p.box-para {
        font-size: 13px;
        margin-top: 6px;
    }
}