/*
Theme Name: ISM Industrial Steel Manufacturing
Theme URI: https://ismbc.ca
Author: ISM Team
Author URI: https://ismbc.ca
Description: Custom WordPress theme for ISM Industrial Steel Manufacturing - Steel Fabricators, Detailers & Erectors
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ismbc
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #820024;
    --secondary-color: #000000;
    --accent-color: #820024;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --bg-light: #e8e8e8;
    --bg-dark: #000000;
    --bg-medium: #4a4a4a;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    transition: scroll-padding-top 0.3s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    transition: padding-top 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: var(--primary-color) !important;
    backdrop-filter: blur(10px);
    padding: 15px 0 !important;
    transition: var(--transition);
}
.home .navbar {
    background: rgba(0, 0, 0, 0.50) !important;
}
.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0 !important;
}

/* Navigation with WordPress Admin Bar */
.admin-bar .navbar {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .navbar {
        top: 46px;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.navbar-brand .logo-img {
    height: 60px;
    transition: var(--transition);
}
@media screen and (max-width: 767px) {
    .navbar-brand .logo-img {
        height: 50px;
    }  
    
}
.navbar.scrolled .navbar-brand .logo-img {
    height: 40px;
}

.navbar-nav {
    gap: 40px;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0 !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Hero Section with Video Background */
.hero-section {
    position: relative;
    height: 56.25vw;
    min-height: 500px;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: padding-top 0.3s ease;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.video-background .overlay {
    background: rgb(0 0 0 / 59%);
    height: 100%;
    width: 100%;
    position: relative;
}
#video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    pointer-events: none;
}

#video-container iframe {
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 20px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(130, 0, 36, 0.3);
}

.cta-button:hover {
    background: #5a0019;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(130, 0, 36, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-top: 15px;
}

/* About Section */
.about-section {
    background: var(--bg-light);
}

.about-content {
    align-items: start;
}

.about-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.stat-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-box p {
    color: #666;
    font-weight: 500;
}

/* Services Section */
.services-section {
    background: white;
}

.service-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

/* Projects Section */
.projects-section {
    background: var(--bg-light);
}

.project-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 30px;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color) !important;
    color: white !important;
    border-color: var(--primary-color) !important;
}

#projectsGrid > [class*='col-'] {
    display: flex;
    align-items: stretch;
}

.project-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.project-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f0f0f0;
    flex-shrink: 0;
}

.project-image img {
    width: 100% !important;
    max-width: none;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
    display: block;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    padding: 30px 20px;
    color: white;
    transform: translateY(0);
    transition: var(--transition);
}

.project-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
    line-height: 1.3;
}

.project-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 100px 0;
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.testimonial-item {
    outline: none;
    padding: 0 15px;
}

.testimonial-content {
    background: var(--bg-light);
    padding: 50px 40px;
    border-radius: 15px;
    position: relative;
    transition: var(--transition);
}

.testimonial-content:hover {
    transform: translateY(-5px);
    background-color: #cfcfcf;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 30px;
    min-height: 120px;
}

.testimonial-author h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.testimonial-author p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Slick Carousel Custom Styling */
.testimonials-carousel .slick-dots {
    bottom: -40px;
}

.testimonials-carousel .slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonials-carousel .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-color);
}

.testimonials-carousel .slick-arrow {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
}

.testimonials-carousel .slick-arrow:before {
    font-size: 20px;
    opacity: 1;
}

.testimonials-carousel .slick-arrow:hover {
    background: #5a0019;
}

.testimonials-carousel .slick-prev {
    left: -60px;
}

.testimonials-carousel .slick-next {
    right: -60px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a0019 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.cta-text {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-section .cta-button {
    display: inline-block;
    padding: 18px 50px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
}

.cta-section .cta-button:hover {
    background: var(--bg-light);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 40px 0 0;
}

.footer-content {
    text-align: center;
    margin-bottom: 30px;
}

.footer-logo img {
    height: 60px;
}

#footer-bottom {
    background: #000000;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
}

#footer-bottom .clearfix::after {
    content: "";
    display: table;
    clear: both;
}

.address {
    text-align: center;
    margin-bottom: 25px;
}

.address p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.8;
}

.address span {
    display: inline-block;
    margin: 5px 0;
}

#sponsors {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-footer {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.social-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-footer a:hover {
    background: #5a0019;
    transform: translateY(-3px);
}

.social-footer i {
    font-size: 20px;
}

.logo-footer {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.logo-footer a {
    display: inline-block;
    transition: var(--transition);
}

.logo-footer a:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

.logo-footer img {
    height: 40px;
    width: auto;
    max-width: 100%;
}

.copyright {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright p {
    opacity: 0.6;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar-nav {
        gap: 20px;
        text-align: center;
        padding: 20px 0;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
    
    .testimonial-content {
        padding: 40px 30px;
    }
    
    .testimonial-text {
        font-size: 1rem;
        min-height: auto;
    }
    
    .testimonials-carousel .slick-prev {
        left: -45px;
    }
    
    .testimonials-carousel .slick-next {
        right: -45px;
    }
    
    .project-image {
        height: 220px;
    }
    
    .address span {
        display: block;
        margin: 8px 0;
    }
    
    .logo-footer {
        gap: 15px;
    }
    
    .logo-footer a {
        max-width: 80px !important;
    }
    
    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-box {
        flex: 1;
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-section .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .testimonials-carousel .slick-arrow {
        display: none !important;
    }
    
    .quote-icon {
        font-size: 2rem;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .stat-box h3 {
        font-size: 2rem;
    }
    
    .project-image {
        height: 200px;
    }
}

/* ========================================
   About Us Page Template
   ======================================== */

.about-us-page {
    background-color: #fff;
}

/* Breadcrumbs */
.breadcrumbs-wrapper {
    background-color: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: #6c757d;
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--secondary-color);
}

.breadcrumbs span {
    color: #6c757d;
}

/* Page Header */
.page-header {
    padding: 20px 0 0;
    background: var(--bg-dark);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 15px;
    font-family: var(--heading-font);
    line-height: 1.2;
}

.page-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.6;
    max-width: 800px;
}

/* About Intro Section */
.about-intro-section {
    padding: 60px 0;
    background: #fff;
    position: relative;
}

.about-intro-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e0e0e0 20%, #e0e0e0 80%, transparent 100%);
}

.intro-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-color);
    text-align: center;
}

.intro-content p {
    margin-bottom: 25px;
}

.intro-content p:first-of-type {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.8;
}
.intro-content strong,
.intro-content b {
    color: var(--primary-color);
    font-weight: 600;
}

.intro-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.intro-content a:hover {
    border-bottom-color: var(--primary-color);
}

/* Content Sections */
.content-sections {
    padding: 0;
}

.content-section {
    padding: 60px 0;
}

.content-section:nth-child(even) {
    background-color: #f8f9fa;
}

.content-section .text-content {
    color: var(--text-color);
    line-height: 1.8;
}

.content-section .text-content h2,
.content-section .text-content h3,
.content-section .text-content h4 {
    color: var(--text-dark);
    font-family: var(--heading-font);
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 700;
}

.content-section .text-content h2 {
    font-size: 2.25rem;
}

.content-section .text-content h3 {
    font-size: 1.75rem;
}

.content-section .text-content h4 {
    font-size: 1.5rem;
}

.content-section .text-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.content-section .text-content ul,
.content-section .text-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

.content-section .text-content li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.section-image img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-image img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Image-Text Layout Specific */
.image-text.image-right .section-image,
.image-text.image-left .section-image {
    position: relative;
}

.image-text.image-right .section-image::before,
.image-text.image-left .section-image::before {
    content: '';
    position: absolute;
    top: -20px;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    opacity: 0.1;
    z-index: -1;
    border-radius: 50%;
}

.image-text.image-left .section-image::before {
    right: -20px;
}

.image-text.image-right .section-image::before {
    left: -20px;
}

/* About CTA Section */
.about-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #6a001c 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.about-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cta-icon {
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.cta-card:hover .cta-icon {
    transform: scale(1.1);
}

.cta-icon i {
    filter: drop-shadow(0 4px 8px rgba(130, 0, 36, 0.3));
}

.cta-card .cta-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: var(--heading-font);
}

.cta-card .cta-description {
    font-size: 1.05rem;
    color: var(--text-color);
    margin-bottom: 30px;
    flex-grow: 1;
    line-height: 1.7;
}

.cta-card .cta-button {
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.cta-card .cta-button:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateX(5px);
}

.cta-projects {
    border-top: 5px solid var(--primary-color);
}

.cta-careers {
    border-top: 5px solid var(--secondary-color);
}

.cta-careers .cta-icon {
    color: var(--secondary-color);
}

.cta-careers .cta-button {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.cta-careers .cta-button:hover {
    background: transparent;
    color: var(--secondary-color);
}

/* Responsive Styles for About Us Page */
@media (max-width: 991px) {
    .page-header {
        padding: 30px 0 0;
    }
    
    .page-title {
        font-size: 2.25rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .about-intro-section {
        padding: 50px 0;
    }
    
    .intro-content {
        font-size: 1.05rem;
    }
    
    .intro-content p:first-of-type {
        font-size: 1.15rem;
    }
    
    .intro-content p:first-of-type::first-letter {
        font-size: 3rem;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .content-section .text-content h2 {
        font-size: 2rem;
    }
    
    .image-text .section-image {
        margin-bottom: 30px;
    }
    
    .cta-card {
        padding: 40px 30px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .page-header {
        padding: 20px 0 0;
    }
    
    .page-title {
        font-size: 1.875rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .about-intro-section {
        padding: 40px 0;
    }
    
    .intro-content {
        font-size: 1rem;
        text-align: left;
    }
    
    .intro-content p:first-of-type {
        font-size: 1.1rem;
    }
    
    .intro-content p:first-of-type::first-letter {
        font-size: 2.5rem;
        margin: 0 8px 0 0;
    }
    
    .content-section {
        padding: 30px 0;
    }
    
    .content-section .text-content h2 {
        font-size: 1.75rem;
    }
    
    .content-section .text-content h3 {
        font-size: 1.5rem;
    }
    
    .about-cta-section {
        padding: 60px 0;
    }
    
    .cta-card .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-card .cta-description {
        font-size: 1rem;
    }
    
    .breadcrumbs-wrapper {
        padding: 10px 0;
    }
}

/* ========================================
   Careers & Jobs Pages
   ======================================== */

/* Careers Intro Section */
.careers-intro-section {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

.careers-intro-section .intro-content {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    color: var(--text-dark);
}

.careers-intro-section .intro-content p {
    margin-bottom: 20px;
}

/* Jobs Filter Section */
.jobs-filter-section {
    padding: 40px 0;
    background: #f8f9fa;
    border-bottom: 3px solid var(--primary-color);
}

.filter-controls {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.filter-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
}

.filter-controls .form-select,
.filter-controls .form-control {
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    border-radius: 5px;
    transition: var(--transition);
}

.filter-controls .form-select:focus,
.filter-controls .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(130, 0, 36, 0.1);
}

/* Jobs Listing Section */
.jobs-listing-section {
    padding: 60px 0;
    background: #fff;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.job-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.job-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.job-card.hidden {
    display: none;
}

.job-card-header {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.job-card .job-title {
    font-size: 1.5rem;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.job-card .job-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.job-card .job-title a:hover {
    color: var(--primary-color);
}

.job-type-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-type-badge.badge-full-time {
    background: #28a745;
    color: white;
}

.job-type-badge.badge-part-time {
    background: #17a2b8;
    color: white;
}

.job-type-badge.badge-contract {
    background: #ffc107;
    color: #000;
}

.job-type-badge.badge-temporary {
    background: #6c757d;
    color: white;
}

.job-type-badge.badge-internship {
    background: #007bff;
    color: white;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    color: #ffffff;
}
.jobs-grid .job-meta-item {
    color: var(--bg-medium);
}

.job-meta-item i {
    color: var(--primary-color);
}

.job-meta-item.deadline {
    color: var(--primary-color);
    font-weight: 600;
}

.job-excerpt {
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 0.95rem;
}

.job-card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.btn-view-job {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-view-job:hover {
    background: #5a0019;
    color: white;
    transform: translateX(5px);
}

.btn-view-job i {
    transition: var(--transition);
}

.btn-view-job:hover i {
    transform: translateX(3px);
}

.no-jobs-message,
.no-jobs-available {
    margin: 40px 0;
}

.no-jobs-message .alert,
.no-jobs-available .alert {
    padding: 40px;
    border-radius: 10px;
}

.no-jobs-available h3 {
    color: var(--text-dark);
    margin: 20px 0 15px;
}

.no-jobs-available i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Careers CTA Section */
.careers-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a0019 100%);
    color: white;
}

.careers-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.careers-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.careers-cta-section .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    font-size: 1.1rem;
}

.careers-cta-section .cta-button:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ========================================
   Single Job Page
   ======================================== */
section.page-breadcrumbs {
    margin: 0;
    padding: 0;
}
/* Job Header */
.job-header {
    padding: 40px 0;
    background: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 25px 25px, rgba(255, 255, 255, 0.05) 2%, transparent 0%),
        radial-gradient(circle at 75px 75px, rgba(255, 255, 255, 0.05) 2%, transparent 0%);
    background-size: 100px 100px;
    position: relative;
    color: white;
}

.job-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(130, 0, 36, 0.1) 100%);
    pointer-events: none;
}

.job-header .container {
    position: relative;
    z-index: 1;
}

.job-header .breadcrumbs-wrapper {
    margin-bottom: 25px;
}

.job-header .breadcrumbs,
.job-header .breadcrumbs a,
.job-header .breadcrumbs span {
    color: rgba(255, 255, 255, 0.8);
}

.job-header .breadcrumbs a:hover {
    color: white;
}

.job-header-content {
    color: white;
}

.job-header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.job-header .job-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.job-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.btn-apply-now {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    font-size: 1.1rem;
}

.btn-apply-now:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.badge-inactive {
    display: inline-block;
    padding: 12px 25px;
    background: #6c757d;
    color: white;
    border-radius: 50px;
    font-weight: 600;
}

/* Job Quick Info */
.job-quick-info {
    margin-top: 30px;
}

.info-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
}

.info-box:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.info-box i {
    font-size: 2rem;
    color: white;
    opacity: 0.8;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-label {
    font-size: 0.85rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
}

.deadline-box {
    border-color: #ffc107;
}

.deadline-box i {
    color: #ffc107;
}

/* Job Content Section */
.job-content-section {
    padding: 60px 0;
    background: #fff;
}

.job-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
}

.job-section:last-child {
    border-bottom: none;
}

.job-section .section-title {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.job-section .section-title i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.job-section .section-content {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.job-section .section-content ul,
.job-section .section-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.job-section .section-content li {
    margin-bottom: 12px;
}

.job-section .section-content h3,
.job-section .section-content h4 {
    color: var(--text-dark);
    margin-top: 25px;
    margin-bottom: 15px;
}

/* Application Section */
.application-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}

.application-instructions {
    background: white;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
    border-left: 4px solid var(--primary-color);
}

.application-form .gform_wrapper {
    margin: 0;
}

/* Job Sidebar */
.job-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    border: 2px solid #e0e0e0;
}

.sidebar-widget .widget-title {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

/* Share Widget */
.share-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.share-facebook {
    background: #1877f2;
}

.share-x {
    background: #000000;
}

.share-linkedin {
    background: #0077b5;
}

.share-email {
    background: #6c757d;
}

/* Related Jobs Widget */
.related-jobs-list {
    margin-bottom: 20px;
}

.related-job-item {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.related-job-item:last-child {
    border-bottom: none;
}

.related-job-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.related-job-item h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.related-job-item h4 a:hover {
    color: var(--primary-color);
}

.related-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.9rem;
    color: #6c757d;
}

.related-job-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.view-all-jobs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.view-all-jobs:hover {
    gap: 12px;
    color: #5a0019;
}

/* Contact Widget */
.contact-widget p {
    margin-bottom: 20px;
    color: #555;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    justify-content: center;
}

.contact-btn:hover {
    background: #5a0019;
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for Careers & Jobs */
@media (max-width: 991px) {
    .jobs-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .job-header .job-title {
        font-size: 2rem;
    }
    
    .job-header-top {
        flex-direction: column;
    }
    
    .job-sidebar {
        position: static;
        top: auto;
        margin-top: 40px;
    }
    
    .careers-cta-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-controls {
        padding: 20px;
    }
    
    .job-header {
        padding: 30px 0;
    }
    
    .job-header .job-title {
        font-size: 1.75rem;
    }
    
    .job-quick-info .col-sm-6 {
        margin-bottom: 15px;
    }
    
    .job-section .section-title {
        font-size: 1.5rem;
    }
    
    .application-section {
        padding: 25px 20px;
    }
    
    .careers-cta-section {
        padding: 60px 0;
    }
    
    .careers-cta-section h2 {
        font-size: 1.75rem;
    }
    
    .careers-cta-section p {
        font-size: 1.05rem;
    }
}

/* ========================================
   Projects Archive Page
   ======================================== */

/* Projects Hero Header */
.projects-hero-header {
    padding: 80px 0 60px;
    background: var(--bg-dark);
    color: white;
    position: relative;
}


.projects-hero-header .breadcrumbs-wrapper {
    margin-bottom: 30px;
}

.projects-hero-header .breadcrumbs,
.projects-hero-header .breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.projects-hero-header .breadcrumbs a:hover {
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 10px 25px;
    background: rgba(130, 0, 36, 0.2);
    border: 2px solid var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge i {
    color: var(--primary-color);
    margin-right: 8px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
}

/* Projects Stats Section */
.projects-stats-section {
    padding: 0 0 60px;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-box {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #5a0019 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.stat-box:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

/* Projects Filter Section */
.projects-filter-section {
    padding: 50px 0;
    background: white;
}

.filter-header {
    text-align: center;
    margin-bottom: 40px;
}

.filter-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.filter-header p {
    font-size: 1.05rem;
    color: #6c757d;
    margin: 0;
}

.filter-controls-wrapper {
    background: var(--bg-light);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.filter-group {
    position: relative;
}

.filter-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.filter-label i {
    color: var(--primary-color);
    margin-right: 8px;
}

.filter-select,
.filter-search {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}

.filter-select:focus,
.filter-search:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(130, 0, 36, 0.1);
    outline: none;
}

.btn-reset {
    padding: 14px 25px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
    cursor: pointer;
}

.btn-reset:hover {
    background: #5a0019;
    transform: translateY(-2px);
}

.results-info {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
    font-size: 1.05rem;
    color: #6c757d;
}

.results-info #projectCount {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Projects Grid */
.projects-listing-section {
    padding: 60px 0 80px;
    background: white;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 40px;
}

.project-archive-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-archive-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}

.project-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.project-image-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--bg-light);
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-archive-card:hover .project-image-wrapper img {
    transform: scale(1.1);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, #e0e0e0 100%);
}

.placeholder-image i {
    font-size: 4rem;
    color: #ccc;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(130, 0, 36, 0.95) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}

.project-archive-card:hover .project-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
}

.view-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: white;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.view-project-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.project-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
}

.badge-featured,
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.badge-featured {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #5a0019;
}

.badge-status {
    background: white;
    color: var(--text-dark);
}

.badge-in-progress {
    background: linear-gradient(135deg, #17a2b8 0%, #20c4e0 100%);
    color: white;
}

.badge-upcoming {
    background: linear-gradient(135deg, #28a745 0%, #34ce57 100%);
    color: white;
}

.project-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 15px;
    background: rgba(130, 0, 36, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    align-self: flex-start;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.project-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.project-title a:hover {
    color: var(--primary-color);
}

.project-meta-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--bg-light);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #6c757d;
}

.meta-item i {
    color: var(--primary-color);
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.meta-item span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.project-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    margin-top: auto;
}

.project-link-arrow:hover {
    gap: 15px;
    color: #5a0019;
}

.project-link-arrow i {
    transition: var(--transition);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 40px;
    background: var(--bg-light);
    border-radius: 15px;
}

.empty-state i {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.empty-state p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 30px;
}

.empty-state .btn {
    padding: 12px 30px;
    font-size: 1rem;
}

/* ========================================
   CTA Section (Global)
   ======================================== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a0019 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25px 25px, rgba(255, 255, 255, 0.05) 2%, transparent 0%),
        radial-gradient(circle at 75px 75px, rgba(255, 255, 255, 0.05) 2%, transparent 0%);
    background-size: 100px 100px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2,
.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-section p,
.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
    line-height: 1.7;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button i {
    transition: var(--transition);
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive - Projects Archive */
@media (max-width: 1199px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .projects-stats-section {
        padding: 0 0 40px;
    }
    
    .filter-controls-wrapper {
        padding: 25px;
    }
    
    .cta-section h2,
    .cta-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .cta-section p,
    .cta-text {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .cta-section .text-lg-end {
        text-align: center !important;
        margin-top: 20px;
    }
}

@media (max-width: 767px) {
    .projects-hero-header {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-box {
        padding: 25px 20px;
    }
    
    .filter-controls-wrapper {
        padding: 20px;
    }
    
    .btn-reset {
        margin-top: 10px;
    }
    
    .project-meta-info {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2,
    .cta-title {
        font-size: 1.75rem;
    }
    
    .empty-state {
        padding: 60px 30px;
    }
    
    .empty-state i {
        font-size: 4rem;
    }
}

/* ========================================
   Single Project Page
   ======================================== */

/* Project Hero */
.project-hero {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: var(--bg-dark);
}

.project-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.project-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.project-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 0;
    color: white;
    z-index: 2;
}


.breadcrumbs-wrapper .breadcrumbs {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs-wrapper .breadcrumbs a {
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs-wrapper .breadcrumbs a:hover {
    color: white;
}

.hero-text {
    max-width: 800px;
}

.project-category {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-color);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
    line-height: 1.2;
}

.project-location {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.project-location i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Project Stats Section */
.project-stats-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.project-stats {
    margin: 0 -10px;
}

.stat-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    height: 100%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.stat-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* Project Content Section */
.project-content-section {
    padding: 80px 0;
}

.content-block {
    margin-bottom: 50px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.content-block h2 i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.content-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    margin-top: 30px;
}

.content-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.content-text p {
    margin-bottom: 20px;
}

.content-text ul,
.content-text ol {
    margin: 20px 0;
    padding-left: 25px;
}

.content-text li {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Challenges & Solutions Block */
.challenges-block {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.challenges-section,
.solutions-section {
    margin-bottom: 30px;
}

.challenges-section:last-child,
.solutions-section:last-child {
    margin-bottom: 0;
}

.challenges-section h3 {
    color: #dc3545;
    margin-top: 0;
}

.solutions-section h3 {
    color: #28a745;
}

/* Project Gallery */
.gallery-block {
    margin: 60px 0;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.project-gallery-grid a {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4 / 3;
    transition: var(--transition);
}

.project-gallery-grid a::after {
    content: '\f002';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.project-gallery-grid a:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.project-gallery-grid a:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-gallery-grid a:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(130, 0, 36, 0.7);
    z-index: 1;
}

.project-gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Testimonial Block */
.testimonial-block {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a0019 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    position: relative;
    margin: 60px 0;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 30px;
    left: 40px;
}

.testimonial-content {
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 30px 0;
    font-style: italic;
}

.testimonial-author {
    margin-top: 30px;
}

.testimonial-author h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.testimonial-author p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Project Sidebar */
.project-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

/* Highlights Widget */
.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--bg-light);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.highlights-list li:last-child {
    border-bottom: none;
}

.highlights-list i {
    color: #28a745;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Share Widget */
.share-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.share-btn {
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
}

.share-facebook {
    background: #1877f2;
}

.share-facebook:hover {
    background: #0d65d9;
    transform: translateY(-3px);
}

.share-x {
    background: #000000;
}

.share-x:hover {
    background: #333333;
    transform: translateY(-3px);
}

.share-linkedin {
    background: #0077b5;
}

.share-linkedin:hover {
    background: #00669c;
    transform: translateY(-3px);
}

.share-email {
    background: #6c757d;
}

.share-email:hover {
    background: #5a6268;
    transform: translateY(-3px);
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a0019 100%);
    color: white;
}

.cta-widget h3 {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.cta-widget p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: var(--transition);
    margin-top: 10px;
    width: 100%;
}

.cta-btn:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Related Projects Section */
.related-projects-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.related-projects-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
}

.project-card-item {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.project-card-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.project-card-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card-item:hover .project-card-image img {
    transform: scale(1.1);
}

.project-card-content {
    padding: 25px;
}

.project-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.view-project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.project-card-item:hover .view-project-link {
    gap: 12px;
}

/* Responsive Styles for Projects */
@media (max-width: 1199px) {
    .project-sidebar {
        position: static;
        top: auto;
        margin-top: 50px;
    }
}

@media (max-width: 991px) {
    .project-hero {
        height: 400px;
    }
    
    .project-title {
        font-size: 2.5rem;
    }
    
    .project-stats-section {
        padding: 40px 0;
    }
    
    .project-content-section {
        padding: 60px 0;
    }
    
    .content-block h2 {
        font-size: 1.75rem;
    }
    
    .related-projects-section {
        padding: 60px 0;
    }
    
    .related-projects-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .project-hero {
        height: 350px;
    }
    
    .project-hero-content {
        padding: 40px 0;
    }
    
    .project-title {
        font-size: 2rem;
    }
    
    .project-location {
        font-size: 1rem;
    }
    
    .stat-item {
        padding: 20px;
        margin-bottom: 15px;
    }
    
    .stat-item i {
        font-size: 2rem;
    }
    
    .project-content-section {
        padding: 40px 0;
    }
    
    .content-block {
        margin-bottom: 35px;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .challenges-block {
        padding: 25px;
    }
    
    .project-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .testimonial-block {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 1.05rem;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .share-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .related-projects-section {
        padding: 40px 0;
    }
    
    .related-projects-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }
}

/* ========================================
   Contact Page
   ======================================== */

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: white;
}

.contact-details {
    padding-right: 30px;
}

.contact-block {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 2px solid var(--bg-light);
}

.contact-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a0019 100%);
    color: white;
    border-radius: 12px;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(130, 0, 36, 0.2);
}

.contact-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

.contact-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-content a:hover {
    color: #5a0019;
    text-decoration: underline;
}

/* Map Container */
.map-container {
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-form-section .section-header {
    margin-bottom: 50px;
}

.contact-form-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.contact-form-section .title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #5a0019 100%);
    margin-bottom: 20px;
}

.contact-form-section .section-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

/* Gravity Forms Styling for Contact Page */
.contact-form-wrapper .gform_wrapper {
    margin: 0 !important;
}

.contact-form-wrapper .gform_wrapper form {
    margin: 0;
}

.contact-form-wrapper .gform_body {
    margin-bottom: 25px;
}

.contact-form-wrapper .gfield {
    margin-bottom: 25px;
}

.contact-form-wrapper .gfield_label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 10px;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper input[type="url"],
.contact-form-wrapper textarea,
.contact-form-wrapper select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.contact-form-wrapper input[type="text"]:focus,
.contact-form-wrapper input[type="email"]:focus,
.contact-form-wrapper input[type="tel"]:focus,
.contact-form-wrapper input[type="url"]:focus,
.contact-form-wrapper textarea:focus,
.contact-form-wrapper select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(130, 0, 36, 0.1);
}

.contact-form-wrapper textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-wrapper .gform_footer {
    margin-top: 30px;
    padding: 0;
}

.contact-form-wrapper .gform_button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a0019 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(130, 0, 36, 0.3);
}

.contact-form-wrapper .gform_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(130, 0, 36, 0.4);
}

/* Contact Additional Section */
.contact-additional-section {
    padding: 80px 0;
    background: white;
}

.info-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(130, 0, 36, 0.1) 0%, rgba(90, 0, 25, 0.05) 100%);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 2.5rem;
    transition: var(--transition);
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, var(--primary-color) 0%, #5a0019 100%);
    color: white;
}

.info-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.info-card p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.7;
    margin: 0;
}

/* Responsive - Contact Page */
@media (max-width: 991px) {
    .contact-info-section {
        padding: 60px 0;
    }
    
    .contact-details {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .map-container {
        height: 400px;
    }
    
    .contact-form-section {
        padding: 60px 0;
    }
    
    .contact-form-section .section-title {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 35px 25px;
    }
    
    .contact-additional-section {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .contact-info-section {
        padding: 40px 0;
    }
    
    .contact-block {
        gap: 15px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-content h3 {
        font-size: 1.1rem;
    }
    
    .contact-content p {
        font-size: 0.95rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .contact-form-section {
        padding: 40px 0;
    }
    
    .contact-form-section .section-title {
        font-size: 1.75rem;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .contact-form-wrapper input[type="text"],
    .contact-form-wrapper input[type="email"],
    .contact-form-wrapper input[type="tel"],
    .contact-form-wrapper input[type="url"],
    .contact-form-wrapper textarea,
    .contact-form-wrapper select {
        padding: 12px 15px;
    }
    
    .contact-form-wrapper .gform_button {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
    }
    
    .contact-additional-section {
        padding: 40px 0;
    }
    
    .info-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .info-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
}
