/* ===================================
   Flagship Equipment Company Styles
   Modern, Animated, Responsive Design
   =================================== */

/* === CSS Variables === */
:root {
    /* Colors from Logo */
    --primary-navy: #1a2840;
    --primary-red: #d42028;
    --primary-white: #ffffff;
    --charcoal: #3a3a3a;
    --light-gray: #f5f5f5;
    --silver: #c0c0c0;
    
    /* Additional Colors */
    --gradient-start: #d42028;
    --gradient-end: #ff6b6b;
    --overlay-dark: rgba(26, 40, 64, 0.85);
    --overlay-light: rgba(26, 40, 64, 0.6);
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.3s ease;
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* === Global Reset & Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.6;
    background-color: var(--primary-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* === Utility Classes === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), #ff4444);
    color: var(--primary-white);
    box-shadow: 0 4px 15px rgba(212, 32, 40, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 32, 40, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.btn-secondary:hover {
    background: var(--primary-white);
    color: var(--primary-navy);
}

.btn-outline {
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-outline:hover {
    background: var(--primary-red);
    color: var(--primary-white);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* === Preloader === */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.loader-ring {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-white);
    letter-spacing: 4px;
}

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

/* === Header/Navigation === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: transparent;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: var(--primary-navy);
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    height: 60px;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.header.scrolled .logo img {
    height: 45px;
}

.logo-main {
    max-width: 280px;
    width: auto;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

.header.scrolled .logo-main {
    max-height: 45px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--primary-white);
    letter-spacing: 1px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-white);
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.btn-phone:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-white);
    transition: var(--transition-smooth);
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--primary-navy);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-navy);
    z-index: 0;
}

#particles-js {
    display: none !important;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--primary-white);
    padding: 150px 0 100px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    margin-bottom: 40px;
    opacity: 1;
    font-weight: 500;
    letter-spacing: 1px;
}

.hero-subtitle .dot-accent {
    color: var(--primary-red);
    font-weight: 700;
    margin: 0 15px;
    font-size: 1.2em;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-
    flex-wrap: wrap;
}

.hero-services {
    text-align: center;
    font-size: 1.8rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-white);
    margin-top: 15px;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.hero-services .dot {
    color: var(--primary-red);
    font-weight: 700;
    margin: 0 8px;
}

.hero-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--primary-white);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--primary-white);
    border-radius: 15px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--primary-white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

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

@keyframes scroll-wheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

/* === Section Styles === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

.section-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

/* === Value Proposition Section === */
.value-proposition {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.value-card {
    background: var(--primary-white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-white);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.value-card > p {
    margin-bottom: 20px;
    color: #666;
}

.value-features {
    text-align: left;
    margin-top: 20px;
}

.value-features li {
    padding: 8px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.value-features i {
    color: var(--primary-red);
    font-size: 0.8rem;
}

/* === Equipment Showcase === */
.equipment-showcase {
    padding: var(--section-padding);
}

.equipment-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--primary-white);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.equipment-card {
    background: var(--primary-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

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

.equipment-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #fff;
}

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

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

.equipment-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: var(--primary-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(212, 32, 40, 0.3);
}

.equipment-info {
    padding: 30px;
}

.equipment-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-navy);
}

.equipment-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.equipment-specs span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.equipment-specs i {
    color: var(--primary-red);
}

.equipment-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.equipment-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Catalog CTA */
.catalog-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
}

.catalog-cta .btn {
    background: var(--primary-navy);
    color: var(--primary-white);
    border: 2px solid var(--primary-navy);
    padding: 18px 45px;
    font-size: 16px;
}

.catalog-cta .btn:hover {
    background: transparent;
    color: var(--primary-navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 40, 64, 0.3);
}

.catalog-cta .btn i {
    font-size: 18px;
}

/* === Services Section === */
.services-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 32, 40, 0.3), transparent);
}

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

.service-card {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 40px 35px;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
    border-color: rgba(212, 32, 40, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-featured {
    border: 2px solid var(--primary-red);
    background: linear-gradient(135deg, #fff 0%, #fff9fa 100%);
}

.service-card-featured::before {
    transform: scaleX(1);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: var(--primary-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(212, 32, 40, 0.3);
}

.service-icon-wrapper {
    margin-bottom: 25px;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(212, 32, 40, 0.25);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-features-list {
    list-style: none;
    margin-bottom: 25px;
}

.service-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #555;
    font-size: 0.9rem;
}

.service-features-list i {
    color: var(--primary-red);
    font-size: 1rem;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.service-link:hover {
    gap: 12px;
}

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

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

/* Service Highlights Section */
.service-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    padding: 50px 40px;
    background: var(--primary-white);
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    transition: var(--transition-smooth);
}

.highlight-item:hover {
    transform: translateX(5px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.highlight-icon i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.highlight-item:hover .highlight-icon {
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    transform: rotate(10deg);
}

.highlight-item:hover .highlight-icon i {
    color: var(--primary-white);
}

.highlight-content h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--primary-navy);
    margin-bottom: 5px;
    font-weight: 600;
}

.highlight-content p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* === Team Section === */
.team-section {
    padding: var(--section-padding);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: var(--primary-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.team-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-light);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 50px;
    height: 50px;
    background: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 1.2rem;
    transition: var(--transition-bounce);
}

.team-social a:hover {
    background: var(--primary-red);
    color: var(--primary-white);
    transform: translateY(-5px);
}

.team-info {
    padding: 30px;
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.team-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.team-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light-gray);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
}

.credential-badge i {
    color: var(--primary-red);
}

.team-description {
    color: #666;
    line-height: 1.6;
}

/* Text-only team cards */
.team-card-text-only {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.team-card-text-only .team-info {
    padding: 40px;
}

.team-card-text-only h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.team-card-text-only .team-role {
    font-size: 1rem;
    margin-bottom: 25px;
}

/* === Trust Section === */
.trust-section {
    padding: var(--section-padding);
    background: var(--primary-navy);
    color: var(--primary-white);
}

.trust-section .section-tag {
    color: var(--primary-red);
}

.trust-section .section-title {
    color: var(--primary-white);
}

.testimonial-slider {
    margin-top: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 0 2px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.trust-logos {
    margin-top: 80px;
    text-align: center;
}

.trust-logos h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--primary-white);
}

.logo-scroll {
    overflow: hidden;
    padding: 20px 0;
}

.logo-track {
    display: flex;
    gap: 60px;
    animation: scroll-logos 20s linear infinite;
}

.partner-logo {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* === Quote/Contact Section === */
.quote-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.quote-info .section-tag {
    text-align: left;
}

.quote-info .section-title {
    text-align: left;
}

.quote-info > p {
    margin-bottom: 40px;
    color: #666;
    font-size: 1.1rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-navy);
}

.contact-details a {
    color: var(--primary-red);
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details p {
    color: #666;
    line-height: 1.6;
}

/* Quote Form */
.quote-form {
    background: var(--primary-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.quote-form h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-navy);
    margin-
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    background: var(--primary-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

.form-group label {
    position: absolute;
    left: 15px;
    top: 15px;
    color: #999;
    font-size: 1rem;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--primary-red);
    background: var(--primary-white);
    padding: 0 5px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    margin-top: 15px;
}

/* === Footer === */
.footer {
    background: var(--primary-navy);
    color: var(--primary-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 240px;
    width: auto;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--primary-red);
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.footer-contact a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* === Scroll to Top Button === */
.scroll-top {
    position: fixed;
    bottom: 140px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--primary-white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212, 32, 40, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-navy);
    transform: translateY(-5px);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-highlights {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 25px;
    }
    
    .quote-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-navy);
        flex-direction: column;
        justify-content: flex-start;
        padding: 50px 20px;
        transition: left 0.4s ease;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-services {
        font-size: 1.4rem;
        margin-top: 25px;
    }
    
    .hero-stats {
        gap: 40px;
    }
    
    .value-grid,
    .equipment-grid,
    .team-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-highlights {
        grid-template-columns: 1fr;
        padding: 25px 20px;
    }
    
    .equipment-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-subtitle .dot-accent {
        margin: 0 10px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .value-card,
    .equipment-card,
    .testimonial-card,
    .quote-form,
    .service-card {
        padding: 25px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .highlight-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .logo-main {
        max-width: 200px;
        max-height: 50px;
    }
    
    .header.scrolled .logo-main {
        max-height: 38px;
    }
    
    .footer-logo {
        max-width: 180px;
    }
}

/* === AOS Animation Overrides === */
[data-aos="fade-up"] {
    transform: translateY(50px);
    opacity: 0;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="flip-left"].aos-animate {
    animation: flipInLeft 0.6s ease-out;
}

@keyframes flipInLeft {
    from {
        transform: perspective(400px) rotateY(-90deg);
        opacity: 0;
    }
    to {
        transform: perspective(400px) rotateY(0);
        opacity: 1;
    }
}

/* === Print Styles === */
@media print {
    .header,
    .scroll-top,
    .scroll-indicator,
    #particles-js,
    .floating-logo {
        display: none;
    }
}

/* === Floating Logo === */
.floating-logo {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    transition: var(--transition-smooth);
}

.floating-logo img {
    width: 240px;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
    transition: var(--transition-smooth);
}

.floating-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 15px rgba(0, 0, 0, 0.3));
}

@media (max-width: 768px) {
    .floating-logo {
        bottom: 15px;
        right: 15px;
    }

    .floating-logo img {
        width: 160px;
    }
}