/* Variables */
:root {
    --primary-color: #ff6b00; /* Orange vif comme pixelab */
    --secondary-color: #1a2342; /* Bleu foncé pour textes importants */
    --accent-color: #ff6b00; /* Orange pour accents et boutons */
    --text-color: #333; /* Texte standard */
    --light-bg: #f8f9fa; /* Fond clair */
    --dark-bg: #1a2342; /* Fond foncé */
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Ombre douce */
    --border-radius: 10px; /* Coins arrondis */
    
    /* Couleurs spécifiques aux sections */
    --construction-color: #ff6b00; /* Orange pour construction */
    --mining-color: #ff6b00; /* Orange pour mining */
    --hydrocarbons-color: #ff6b00; /* Orange pour hydrocarbons */
    --about-color: #ff6b00; /* Orange pour about */
    --contact-color: #ff6b00; /* Orange pour contact */
}

/* General Styles */
html {
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    font-family: 'Inter', 'Roboto', sans-serif; /* Police moderne comme pixelab */
    background-color: #fff;
    color: var(--text-color);
    line-height: 1.6;
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 0;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
}

a:hover {
    color: #fff !important;
    background: var(--primary-color, #ff6b00) !important;
    box-shadow: 0 4px 24px rgba(255,107,0,0.15);
    transform: translateY(-2px) scale(1.04);
    text-decoration: none;
}

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

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo span {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

header nav ul li {
    margin-right: 2rem;
}

header nav ul li:last-child {
    margin-right: 0;
}

header nav ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

header nav ul li a:hover {
    color: var(--primary-color);
}

header nav ul li a:hover::after {
    width: 100%;
}

.request-quote {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.request-quote:hover {
    background-color: #e55d00;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 107, 0, 0.4);
}

/* Modern Hero and Header Styles */
.glass-morphism {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.1;
    animation: floatingShape 20s infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 50%;
    right: 10%;
    animation-delay: -10s;
}

@keyframes floatingShape {
    0% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -50px) rotate(120deg); }
    66% { transform: translate(-30px, 50px) rotate(240deg); }
    100% { transform: translate(0, 0) rotate(360deg); }
}

.modern-hero {
    position: relative;
    min-height: 100vh;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-background .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,107,0,0.1) 0%, rgba(26,35,66,0.1) 100%);
}

.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.shape-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}

.shape-divider path {
    fill: #ffffff;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mega-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.rotating-text {
    height: 4.8rem;
    overflow: hidden;
    margin-top: 0.5rem;
}

.rotating-text span {
    display: block;
    animation: rotateWords 6s infinite;
}

@keyframes rotateWords {
    0%, 27% { transform: translateY(0); }
    33%, 60% { transform: translateY(-4.8rem); }
    66%, 93% { transform: translateY(-9.6rem); }
    100% { transform: translateY(-14.4rem); }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.glass-button {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.main-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255,107,0,0.3);
    animation: pulse 2s infinite;
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-align: center;
    margin-top: 0.3rem;
}

/* Navigation Styles */
.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    color: var(--secondary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
    text-align: center;
    }

    .mega-title {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .mega-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 1rem;
    }

    .experience-badge .years {
        font-size: 1.5rem;
    }
}

/* Section Headings */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.section-label {
    color: var(--primary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
    display: block;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.service-link:hover {
    color: #fff !important;
    background: var(--primary-color, #ff6b00) !important;
    box-shadow: 0 4px 24px rgba(255,107,0,0.15);
    transform: translateY(-2px) scale(1.04);
    text-decoration: none;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Team Section */
.team {
    padding: 5rem 0;
    background-color: var(--light-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
}

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

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    max-width: 200px;
    margin: 2rem auto 1rem;
    border: 5px solid rgba(255, 107, 0, 0.1);
}

.team-info {
    padding: 1.5rem;
}

.team-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.team-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 0;
    background-color: var(--light-bg);
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #e55d00;
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a3555 100%);
    color: #fff;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/engine.jpg') center/cover;
    opacity: 0.02;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-col ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

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

.footer-contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-info li:last-child {
    margin-bottom: 0;
}

.footer-contact-info i {
    background: rgba(255, 107, 0, 0.1);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-contact-info li {
        justify-content: center;
    }
}

/* Animations from existing code */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.slide-in-left {
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
}

.slide-in-right {
    animation: slideInRight 1s ease-out forwards;
    opacity: 0;
}

.zoom-in {
    animation: zoomIn 1s ease-out forwards;
    opacity: 0;
}

/* Responsive styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero .container {
        flex-direction: column;
    text-align: center;
    }
    
    .hero-content, .hero-image {
        max-width: 100%;
    }
    
    .hero-image {
    margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    header nav {
        display: none;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
    border-radius: var(--border-radius);
        margin-bottom: 1rem;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
    }
}

/* Enhanced Animation effects */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Animation classes */
.fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.slide-in-left {
    animation: slideInLeft 1s ease-out forwards;
    opacity: 0;
}

.slide-in-right {
    animation: slideInRight 1s ease-out forwards;
    opacity: 0;
}

.zoom-in {
    animation: zoomIn 1s ease-out forwards;
    opacity: 0;
}

.bounce {
    animation: bounce 2s ease infinite;
}

.pulse {
    animation: pulse 2s ease infinite;
}

.float {
    animation: float 3s ease-in-out infinite;
}

.rotate {
    animation: rotate 8s linear infinite;
}

.shake:hover {
    animation: shake 0.5s ease-in-out;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

/* Conserver les effets interactifs existants */
.interactive-card, .card-3d, .hover-card, .tilt-effect, .animated-button, 
.ripple-effect, .cursor-glow, .floating, .pulse, .bounce {
    /* Garder ces classes pour maintenir la compatibilité avec le JavaScript existant */
}

/* Featured Products Section - Modern Design */
.featured-products {
    background-color: var(--light-bg);
    padding: 5rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.modern-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 66, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    gap: 1rem;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modern-card:hover .product-actions {
    transform: translateY(0);
}

.action-button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.action-button:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.product-content {
    padding: 1.5rem;
}

.product-category {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    display: block;
}

.modern-card h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.modern-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.product-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.product-link:hover {
    color: #fff !important;
    background: var(--primary-color, #ff6b00) !important;
    box-shadow: 0 4px 24px rgba(255,107,0,0.15);
    transform: translateY(-2px) scale(1.04);
    text-decoration: none;
}

.product-link i {
    transition: transform 0.3s ease;
}

.product-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-image {
        height: 200px;
    }
}

/* Construction Page Specific Styles */
.construction-hero {
    background: linear-gradient(135deg, #1a2342 0%, #2a3555 100%);
    color: #fff;
}

.construction-overlay {
    background: linear-gradient(135deg, rgba(255,107,0,0.1) 0%, rgba(26,35,66,0.2) 100%);
}

.construction-hero .hero-text {
    color: #fff;
}

.construction-hero .mega-title {
    color: #fff;
}

.construction-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8533 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.construction-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://picsum.photos/id/1060/1200/800') center/cover;
    opacity: 0.1;
}

.construction-cta .cta-content {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
}

.construction-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.construction-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Product Categories Section - Enhanced Design */
.product-categories {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.category-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.1);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8533 100%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.category-card:hover::before {
    opacity: 0.05;
}

.card-icon {
    width: 90px;
    height: 90px;
    background: rgba(255,107,0,0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.category-card:hover .card-icon {
    background: var(--primary-color);
    transform: rotateY(180deg);
}

.category-card:hover .card-icon i {
    color: #fff;
    transform: rotateY(180deg);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-content h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1rem;
}

.category-card:hover .feature-list li {
    transform: translateX(5px);
}

.card-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(255,107,0,0.1);
    color: var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transform: translateX(-100%);
    transition: all 0.4s ease;
    z-index: -1;
}

.card-button:hover {
    color: #fff;
}

.card-button:hover::before {
    transform: translateX(0);
}

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

    .category-card {
        padding: 2rem;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .card-content h3 {
        font-size: 1.5rem;
    }
}

/* Mining Page Specific Styles */
.mining-hero {
    background: linear-gradient(135deg, #1a2342 0%, #2a3555 100%);
    color: #fff;
}

.mining-overlay {
    background: linear-gradient(135deg, rgba(255,107,0,0.1) 0%, rgba(26,35,66,0.2) 100%);
}

.mining-hero .hero-text {
    color: #fff;
}

.mining-hero .mega-title {
    color: #fff;
}

.expertise-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255,107,0,0.3);
    animation: pulse 2s infinite;
}

.expertise-badge i {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.expertise-badge .text {
    font-size: 0.7rem;
    text-align: center;
    font-weight: 500;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,107,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.solution-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    background: var(--primary-color);
    transform: rotateY(180deg);
}

.solution-card:hover .solution-icon i {
    color: #fff;
    transform: rotateY(180deg);
}

.solution-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Mining CTA Section */
.mining-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a3555 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.mining-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://picsum.photos/id/1069/1200/800') center/cover;
    opacity: 0.1;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.mining-cta .glass-button {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.mining-cta .glass-button:hover {
    background: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .solutions-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .expertise-badge {
        width: 80px;
        height: 80px;
        padding: 1rem;
    }

    .expertise-badge i {
        font-size: 1.5rem;
    }

    .expertise-badge .text {
        font-size: 0.6rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(135deg, #1a2342 0%, #2a3555 100%);
    color: #fff;
}

.about-overlay {
    background: linear-gradient(135deg, rgba(255,107,0,0.1) 0%, rgba(26,35,66,0.2) 100%);
}

.about-hero .hero-text {
    color: #fff;
}

.about-hero .mega-title {
    color: #fff;
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    padding-right: 50%;
    text-align: right;
}

.timeline-item:nth-child(even) {
    padding-left: 50%;
    text-align: left;
}

.timeline-content {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -60px;
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -60px;
    transform: translateY(-50%);
}

.timeline-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,107,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.value-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-color);
    transform: rotateY(180deg);
}

.value-card:hover .value-icon i {
    color: #fff;
    transform: rotateY(180deg);
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.position {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255,107,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Partners Section */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-logo {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

.partner-logo img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* About CTA Section */
.about-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a3555 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://picsum.photos/id/1071/1200/800') center/cover;
    opacity: 0.1;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 0;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding: 0 0 0 2rem;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        left: -10px;
        transform: translateY(-50%);
}

.team-member img {
        height: 250px;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

/* Hydrocarbons Page Specific Styles */
.hydrocarbons-hero {
    background: linear-gradient(135deg, #1a2342 0%, #2a3555 100%);
    color: #fff;
}

.hydrocarbons-overlay {
    background: linear-gradient(135deg, rgba(255,107,0,0.1) 0%, rgba(26,35,66,0.2) 100%);
}

.hydrocarbons-hero .hero-text {
    color: #fff;
}

.hydrocarbons-hero .mega-title {
    color: #fff;
}

.quality-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255,107,0,0.3);
    animation: pulse 2s infinite;
}

.quality-badge i {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.quality-badge span {
    font-size: 0.8rem;
    text-align: center;
    line-height: 1;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,107,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.product-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    background: var(--primary-color);
    transform: rotateY(180deg);
}

.product-card:hover .product-icon i {
    color: #fff;
    transform: rotateY(180deg);
}

.product-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,107,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    transform: rotateY(180deg);
}

.service-card:hover .service-icon i {
    color: #fff;
    transform: rotateY(180deg);
}

.service-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

/* Advantages Section */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,107,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.advantage-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background: var(--primary-color);
    transform: rotateY(180deg);
}

.advantage-card:hover .advantage-icon i {
    color: #fff;
    transform: rotateY(180deg);
}

.advantage-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.advantage-card p {
    color: #666;
    margin: 0;
}

/* Hydrocarbons CTA Section */
.hydrocarbons-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a3555 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hydrocarbons-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://picsum.photos/id/1015/1200/800') center/cover;
    opacity: 0.1;
}

@media (max-width: 768px) {
    .products-grid,
    .services-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .product-card,
    .service-card,
    .advantage-card {
        padding: 1.5rem;
    }

    .quality-badge {
        width: 80px;
        height: 80px;
        padding: 1rem;
        bottom: -15px;
        right: -15px;
    }

    .quality-badge i {
        font-size: 1.5rem;
    }

    .quality-badge span {
        font-size: 0.7rem;
    }
}

/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(135deg, #1a2342 0%, #2a3555 100%);
    color: #fff;
}

.contact-overlay {
    background: linear-gradient(135deg, rgba(255,107,0,0.1) 0%, rgba(26,35,66,0.2) 100%);
}

.contact-hero .hero-text {
    color: #fff;
}

.contact-hero .mega-title {
    color: #fff;
}

.contact-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255,107,0,0.3);
    animation: pulse 2s infinite;
}

.contact-badge i {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.contact-badge .text {
    font-size: 0.7rem;
    text-align: center;
    font-weight: 500;
}

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,107,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.contact-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--primary-color);
    transform: rotateY(180deg);
}

.contact-card:hover .contact-icon i {
    color: #fff;
    transform: rotateY(180deg);
}

.contact-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.contact-link:hover {
    color: #fff !important;
    background: var(--primary-color, #ff6b00) !important;
    box-shadow: 0 4px 24px rgba(255,107,0,0.15);
    transform: translateY(-2px) scale(1.04);
    text-decoration: none;
}

.contact-link i {
    transition: transform 0.3s ease;
}

.contact-link:hover i {
    transform: translateX(5px);
}

/* Contact Form Section */
.contact-form-wrapper {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
}

.contact-form .form-floating {
    margin-bottom: 1.5rem;
}

.contact-form .form-control {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255,107,0,0.25);
}

.contact-form .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn-primary:hover {
    background: #e55d00;
    transform: translateY(-3px);
}

/* Office Hours */
.office-hours {
    margin-bottom: 2rem;
}

.hours-item {
    background: rgba(255,107,0,0.05);
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hours-item:hover {
    background: rgba(255,107,0,0.1);
}

.hours-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.hours-item h5 {
    color: var(--secondary-color);
    font-weight: 600;
}

.hours-item p {
    color: #666;
    margin: 0;
}

/* Social Connect Section */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--secondary-color);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    color: var(--primary-color);
}

.social-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.social-card span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Map Container */
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.map-container img {
    transition: all 0.5s ease;
}

.map-container:hover img {
    transform: scale(1.05);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26,35,66,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.map-container:hover .map-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .contact-badge {
        width: 80px;
        height: 80px;
        padding: 1rem;
        bottom: -15px;
        right: -15px;
    }

    .contact-badge i {
        font-size: 1.5rem;
    }

    .contact-badge .text {
        font-size: 0.6rem;
    }

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

/* Heavy Equipment Section Styles */
.heavy-equipment-section {
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.image-wrapper {
    position: relative;
    z-index: 1;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-card img {
    width: 100%;
    height: auto;
    transition: transform 0.6s ease;
}

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

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(255,107,0,0.3);
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.floating-badge span {
    font-size: 0.8rem;
    font-weight: 600;
}

.equipment-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.separator {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 1.5rem 0;
    border-radius: 2px;
}

.features-container {
    margin-top: 2rem;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 107, 0, 0.05);
    transform: translateX(10px);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.feature-text {
    flex: 1;
}

.feature-text strong {
    display: block;
    color: var(--secondary-color);
    margin-bottom: 0.2rem;
}

.feature-text span {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 992px) {
    .floating-badge {
        width: 80px;
        height: 80px;
        padding: 1rem;
    }

    .floating-badge i {
        font-size: 1.5rem;
    }

    .floating-badge span {
        font-size: 0.7rem;
    }

    .feature-item {
        padding: 0.8rem;
    }
}
