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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a202c;
    overflow-x: hidden;
    background: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: #dc2626;
}

h3 {
    font-size: 1.8rem;
    color: #2d3748;
}

h4 {
    font-size: 1.4rem;
    color: #4a5568;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #4a5568;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: #dc2626;
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.btn-secondary {
    background: white;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.btn-secondary:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.btn-outline:hover {
    background: #dc2626;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-cta {
    background: #dc2626;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-cta:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 12px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    color: #4a5568;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.flag-img {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
    display: inline-block;
}

#current-flag {
    width: 28px;
    height: 21px;
}

.lang-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.lang-btn i:first-child {
    font-size: 1rem;
}

.lang-btn i:last-child {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.lang-btn.active i:last-child {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.lang-dropdown.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.lang-option {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    gap: 0.75rem;
}

.lang-option .flag-img {
    width: 24px;
    height: 18px;
    margin-right: 8px;
}

/* Ensure only flag and text show */
.lang-option {
    display: flex !important;
    align-items: center !important;
}

.lang-option > * {
    display: inline-block;
}

/* Hide any pseudo elements */
.lang-option::before,
.lang-option::after {
    display: none !important;
    content: none !important;
}

.lang-option:hover {
    background: #fef2f2;
    color: #dc2626;
}

.lang-option.active {
    background: #dc2626;
    color: white;
    font-weight: 600;
}

.lang-option.active:hover {
    background: #b91c1c;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo:hover {
    transform: scale(1.05);
    color: #b91c1c;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
    animation: float 3s ease-in-out infinite;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #dc2626;
}

.nav-link.active {
    color: #dc2626;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #dc2626;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1587745416684-47953f16f02f?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-overlay {
    display: none;
}

.hero-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-content {
    max-width: 800px;
    padding: 3rem 3.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1a202c;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    color: #4a5568;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.9s both;
    cursor: pointer;
    transition: opacity 0.5s ease, transform 0.3s ease;
}

.scroll-indicator:hover {
    transform: translateY(5px);
}

.scroll-indicator span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.mouse {
    width: 30px;
    height: 50px;
    border: 3px solid white;
    border-radius: 20px;
    position: relative;
}

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

@keyframes scroll-wheel {
    0%, 100% {
        top: 10px;
        opacity: 1;
    }
    50% {
        top: 25px;
        opacity: 0.5;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-header h2 {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ef4444, #dc2626, #b91c1c);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 1.5rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(220, 38, 38, 0.08);
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.15);
}

.contact-item i {
    font-size: 1.5rem;
    color: #dc2626;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.contact-item p {
    margin: 0;
    color: #4a5568;
}

.contact-item a {
    color: #dc2626;
    text-decoration: none;
}

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

.about-image {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.image-placeholder {
    width: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 4rem;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.15);
    transition: all 0.4s ease;
    padding: 2rem;
}

.image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(220, 38, 38, 0.2);
}

.image-placeholder p {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #dc2626;
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-box {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.1);
    border: 2px solid #fecaca;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

.stat-box h3 {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-size: 0.9rem;
    color: #4a5568;
    margin: 0;
}

/* Services Section */
.services {
padding: 100px 0;
background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 2rem;
}

.service-card {
background: white;
padding: 2.5rem;
border-radius: 24px;
text-align: center;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid rgba(220, 38, 38, 0.1);
position: relative;
overflow: hidden;
}

.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #ef4444, #dc2626, #b91c1c);
transform: scaleX(0);
transition: transform 0.4s ease;
}

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

.service-card:hover {
transform: translateY(-12px);
box-shadow: 0 25px 50px rgba(220, 38, 38, 0.15);
border-color: rgba(220, 38, 38, 0.2);
}

.service-icon {
width: 90px;
height: 90px;
background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
color: white;
font-size: 2.2rem;
box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
transition: all 0.4s ease;
}

.service-card:hover .service-icon {
transform: scale(1.1) rotate(5deg);
box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.service-card h3 {
margin-bottom: 1rem;
color: #2d3748;
}

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

.service-card .btn-outline {
position: relative;
z-index: 1;
}

/* Equipment Section */
.equipment {
padding: 100px 0;
background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.equipment-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 1.5rem;
}

.equipment-category {
background: white;
padding: 2.5rem;
border-radius: 24px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid rgba(220, 38, 38, 0.1);
min-height: 280px;
display: flex;
flex-direction: column;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(220, 38, 38, 0.1);
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.equipment-category:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.12);
    border-color: rgba(220, 38, 38, 0.2);
}

.equipment-category h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: #2d3748;
    font-size: 1.3rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.equipment-category h3 i {
    margin-right: 0.5rem;
    color: #dc2626;
    font-size: 1.5rem;
}

.equipment-category ul {
    list-style: none;
    flex-grow: 1;
}

.equipment-category li {
    padding: 0.5rem 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-size: 0.95rem;
}

.equipment-category li:last-child {
    border-bottom: none;
}

.equipment-category li::before {
    content: '✓';
    color: #48bb78;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.pricing-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.pricing-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border-left: 4px solid #dc2626;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.pricing-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.1);
}

.pricing-item i {
    font-size: 2rem;
    color: #dc2626;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.pricing-item h4 {
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.pricing-item p {
    margin: 0;
    color: #4a5568;
}

/* Ready to Order Section - Can be used on any page */
.ready-to-order {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.ready-to-order::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: rotate 10s linear infinite;
}

.ready-to-order-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ready-to-order h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ready-to-order p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.ready-to-order .btn-primary {
    background: white;
    color: #dc2626;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.ready-to-order .btn-primary:hover {
    background: #f7fafc;
    color: #b91c1c;
    transform: translateY(-3px);
}

.pricing-cta {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-cta::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: rotate 10s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pricing-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.pricing-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.pricing-cta .btn-primary {
    background: white;
    color: #dc2626;
}

.pricing-cta .btn-primary:hover {
    background: #f7fafc;
    color: #b91c1c;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

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

.gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(220, 38, 38, 0.15);
}

.gallery-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 3rem;
}

.gallery-placeholder p {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #dc2626;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, #f7fafc 0%, #ffffff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    background: white;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1), 0 4px 15px rgba(220, 38, 38, 0.1);
    transform: translateY(-2px);
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.contact-detail:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.contact-detail i {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.3rem !important;
    margin-right: 1.5rem !important;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.contact-detail h4 {
    margin-bottom: 0.5rem;
    color: white !important;
}

.contact-detail p {
    margin: 0;
    color: white !important;
}

.contact-detail a {
    color: white !important;
    text-decoration: none;
}

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

.availability {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.5rem;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
    line-height: 1;
}

.map-container {
    background: #f7fafc;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.1);
}

.map-placeholder p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: #dc2626;
}

.map-placeholder small {
    font-size: 0.9rem;
    color: #4a5568;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #dc2626;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: #a0aec0;
}

.footer-contact a {
    color: #dc2626;
    text-decoration: none;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #dc2626;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #a0aec0;
    margin: 0;
    margin-bottom: 0.5rem;
}

.footer-credit {
    font-size: 0.9rem;
    color: #a0aec0;
}

.footer-credit a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-credit a:hover {
    color: #ef4444;
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(-40%);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.modal-close:hover {
    color: #dc2626;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

#modal-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-caption {
    color: white;
    text-align: center;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Cookie Consent Modal */
.cookie-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid #f7fafc;
}

.cookie-modal-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cookie-modal-title i {
    font-size: 2rem;
    color: #dc2626;
}

.cookie-modal-title h3 {
    margin: 0;
    color: #1a202c;
    font-size: 1.5rem;
}

.cookie-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4a5568;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close:hover {
    background: #f7fafc;
    color: #dc2626;
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-description {
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-option {
    background: #f7fafc;
    padding: 1.25rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.cookie-option:hover {
    border-color: #dc2626;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.1);
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.cookie-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.cookie-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.cookie-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #dc2626;
    border-color: #dc2626;
}

.cookie-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.cookie-checkbox input[type="checkbox"]:disabled + .checkmark {
    background: #e2e8f0;
    border-color: #cbd5e0;
    cursor: not-allowed;
}

.cookie-label {
    font-weight: 600;
    color: #2d3748;
    font-size: 1rem;
}

.cookie-required {
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.cookie-option-desc {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    padding-left: 2.5rem;
}

.cookie-modal-footer {
    padding: 1.5rem 2rem;
    border-top: 2px solid #f7fafc;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 1;
    justify-content: center;
}

.btn-cookie-save {
    background: white;
    color: #dc2626;
    border: 2px solid #dc2626;
}

.btn-cookie-save:hover {
    background: #fef2f2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.btn-cookie-accept-all {
    background: #dc2626;
    color: white;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.btn-cookie-accept-all:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

/* Floating Cookie Settings Button */
.cookie-settings-btn {
    position: fixed !important;
    bottom: 20px !important;
    left: 80px !important;
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    color: white !important;
    border: none !important;
    border-radius: 50% !important;
    font-size: 1.75rem !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4) !important;
    z-index: 99999 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    animation: bounceIn 0.6s ease !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cookie-settings-btn.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.cookie-settings-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 25px rgba(220, 38, 38, 0.5);
}

.cookie-settings-btn:active {
    transform: scale(0.95);
}

/* Accessibility Button */
.accessibility-btn {
    position: fixed !important;
    bottom: 90px !important;
    left: 0 !important;
    width: 70px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: white !important;
    border: none !important;
    border-radius: 0 15px 15px 0 !important;
    font-size: 1.75rem !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4) !important;
    z-index: 99999 !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-left: 10px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.accessibility-btn:hover {
    width: 80px;
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.accessibility-btn:active {
    transform: scale(0.95);
}

/* Accessibility Features */
body.high-contrast {
    filter: contrast(1.2) brightness(1.1) !important;
}

body.high-contrast i,
body.high-contrast .fas,
body.high-contrast .far,
body.high-contrast .fab {
    display: inline-block !important;
    visibility: visible !important;
}

body.high-contrast .accessibility-btn,
body.high-contrast .cookie-settings-btn,
body.high-contrast .accessibility-menu {
    filter: contrast(1) !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
    z-index: 99999 !important;
}

body.high-contrast .accessibility-btn {
    bottom: 90px !important;
    left: 0 !important;
}

body.high-contrast .cookie-settings-btn {
    bottom: 20px !important;
    left: 80px !important;
}

body.large-text {
    font-size: 120% !important;
}

body.large-text .btn,
body.large-text .nav-link {
    padding: 1rem 1.5rem !important;
}

body.dyslexia-friendly {
    font-family: 'Arial', 'Helvetica', sans-serif !important;
}

body.dyslexia-friendly * {
    font-family: 'Arial', 'Helvetica', sans-serif !important;
    letter-spacing: 0.08em !important;
    word-spacing: 0.12em !important;
    line-height: 1.6 !important;
}

body.dyslexia-friendly i,
body.dyslexia-friendly .fas,
body.dyslexia-friendly .far,
body.dyslexia-friendly .fab {
    font-family: 'Font Awesome 6 Free' !important;
    letter-spacing: normal !important;
    word-spacing: normal !important;
}

body.focus-mode *:focus {
    outline: 4px solid #2563eb !important;
    outline-offset: 4px !important;
}

body.grayscale {
    filter: grayscale(100%) !important;
}

body.grayscale .accessibility-btn,
body.grayscale .cookie-settings-btn {
    filter: none !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

body.link-highlight a {
    text-decoration: underline !important;
    font-weight: bold !important;
}

body.cursor-large,
body.cursor-large * {
    cursor: pointer !important;
}

/* Ensure buttons always visible in all modes */
body.large-text .accessibility-btn,
body.large-text .cookie-settings-btn,
body.dyslexia-friendly .accessibility-btn,
body.dyslexia-friendly .cookie-settings-btn,
body.focus-mode .accessibility-btn,
body.focus-mode .cookie-settings-btn,
body.link-highlight .accessibility-btn,
body.link-highlight .cookie-settings-btn,
body.cursor-large .accessibility-btn,
body.cursor-large .cookie-settings-btn {
    filter: none !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Accessibility Menu */
.accessibility-menu {
    position: fixed;
    left: -350px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    background: white;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 9997;
    transition: left 0.4s ease;
    padding: 2rem;
}

.accessibility-menu.show {
    left: 0;
}

.accessibility-menu h3 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.accessibility-menu h3 i {
    color: #2563eb;
}

.accessibility-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 0.75rem;
    background: #f7fafc;
    border-radius: 10px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.accessibility-option:hover {
    border-color: #2563eb;
    background: #eff6ff;
}

.accessibility-option label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    flex: 1;
}

.accessibility-option i {
    color: #2563eb;
    font-size: 1.2rem;
}

.accessibility-option span {
    color: #2d3748;
    font-weight: 500;
}

.accessibility-toggle {
    position: relative;
    width: 50px;
    height: 26px;
    background: #cbd5e0;
    border-radius: 13px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.accessibility-toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.accessibility-option input[type="checkbox"] {
    display: none;
}

.accessibility-option input[type="checkbox"]:checked + .accessibility-toggle {
    background: #2563eb;
}

.accessibility-option input[type="checkbox"]:checked + .accessibility-toggle::after {
    transform: translateX(24px);
}

.accessibility-reset {
    width: 100%;
    padding: 0.875rem;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.accessibility-reset:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
        flex: none;
        justify-content: flex-start;
    }
    
    .nav-actions {
        order: 3;
        gap: 0.5rem;
    }
    
    .btn-cta {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 0.85rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content,
    .contact-content,
    .pricing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .about,
    .services,
    .equipment,
    .pricing,
    .gallery,
    .contact {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .equipment-category,
    .contact-form {
        padding: 1.5rem;
    }

    .contact-item,
    .contact-detail,
    .pricing-item {
        padding: 1rem;
    }
    
    .cookie-modal-content {
        margin: 1rem;
        max-height: 85vh;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 1rem;
    }
    
    .cookie-modal-footer {
        flex-direction: column;
    }
    
    .btn-cookie {
        width: 100%;
    }
    
    .cookie-settings-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        left: 15px;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(239, 68, 68, 0.3) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.9;
    color: white;
}

/* About Page Styles */
.about-detailed {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.values-list {
    list-style: none;
    margin-top: 1rem;
}

.values-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.values-list i {
    color: #dc2626;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.contact-card, .stats-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.stats-card {
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #4a5568;
    font-size: 0.9rem;
}

.certifications {
    padding: 80px 0;
    background: #f7fafc;
}

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

.cert-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.cert-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.12);
    border-color: rgba(220, 38, 38, 0.2);
}

.cert-item i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

/* Services Page Styles */
.services-detailed {
    padding: 80px 0;
    background: white;
}

.service-card-detailed {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    color: #48bb78;
    font-weight: bold;
    margin-right: 0.5rem;
}

.equipment-detailed {
    padding: 80px 0;
    background: #f7fafc;
}

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

.equipment-category-detailed {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.equipment-category-detailed ul {
    list-style: none;
    margin-top: 1rem;
}

.equipment-category-detailed li {
    padding: 0.5rem 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.equipment-category-detailed li:last-child {
    border-bottom: none;
}

.equipment-category-detailed li::before {
    content: '✓';
    color: #48bb78;
    font-weight: bold;
    margin-right: 0.5rem;
}

.process-section {
    padding: 80px 0;
    background: white;
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

/* Gallery Page Styles */
.gallery-detailed {
    padding: 80px 0;
    background: white;
}

.gallery-categories {
    padding: 40px 0;
    background: #f7fafc;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #dc2626;
    background: transparent;
    color: #dc2626;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #dc2626;
    color: white;
}

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

.gallery-item-detailed {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item-detailed:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.15);
}

.gallery-placeholder-detailed {
    height: 400px;
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 3rem;
    position: relative;
}

.gallery-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.gallery-placeholder-detailed p {
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
    color: #dc2626;
}

.gallery-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.video-section {
    padding: 80px 0;
    background: #f7fafc;
}

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

.video-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.video-placeholder {
    height: 250px;
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 4rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, #fecaca, #fca5a5);
}

.video-placeholder p {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #dc2626;
}

/* Pricing Page Styles */
.pricing-detailed {
    padding: 80px 0;
    background: white;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.15);
}

.pricing-card.featured {
    border-color: #dc2626;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc2626;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    margin-bottom: 1rem;
    color: #2d3748;
}

.price-range {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #4a5568;
}

.pricing-features i {
    color: #48bb78;
    margin-right: 0.5rem;
}

.pricing-note {
    color: #718096;
    font-size: 0.9rem;
}

.additional-services {
    padding: 80px 0;
    background: #f7fafc;
}

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

.additional-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.additional-item i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.price-info {
    font-size: 1.2rem;
    font-weight: 600;
    color: #dc2626;
    margin-top: 1rem;
}

.price-calculator {
    padding: 80px 0;
    background: white;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.calculator-form {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 16px;
}

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

.calculator-result {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 2rem;
    border-radius: 16px;
}

.calculator-result h3 {
    color: white;
    margin-bottom: 1.5rem;
}

.result-breakdown {
    margin-bottom: 2rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.result-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.result-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.payment-methods {
    padding: 80px 0;
    background: #f7fafc;
}

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

.payment-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.payment-item i {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.pricing-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    text-align: center;
}

.pricing-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.pricing-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

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

/* Contact Page Styles */
.contact-detailed {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section h2 {
    margin-bottom: 2rem;
}

.contact-form-detailed {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.checkbox-group {
    margin-bottom: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #4a5568;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
}

.contact-info-detailed h2 {
    margin-bottom: 2rem;
}

.contact-detail-detailed {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.contact-detail-detailed:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
}

.contact-icon {
    width: 60px !important;
    height: 60px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 1.5rem !important;
    color: white !important;
    font-size: 1.5rem !important;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.contact-content h3 {
    margin-bottom: 0.5rem;
    color: white !important;
}

.contact-content p {
    margin: 0;
    color: white !important;
    font-weight: 500;
}

.contact-content a {
    color: white !important;
    text-decoration: none;
    font-weight: 600;
}

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

.availability, .response-time, .location-info {
    display: block;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.emergency-contact {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 2rem;
}

.emergency-contact h3 {
    color: white;
    margin-bottom: 1rem;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #dc2626;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.map-section {
    padding: 80px 0;
    background: #f7fafc;
}

.map-container-detailed {
    margin-top: 2rem;
}

.map-placeholder-detailed {
    height: 400px;
    background: linear-gradient(135deg, #fef2f2, #fecaca);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #dc2626;
    font-size: 3rem;
    text-align: center;
    padding: 2rem;
}

.map-placeholder-detailed h3 {
    margin: 1rem 0;
    font-size: 1.5rem;
    color: #dc2626;
}

.map-placeholder-detailed p {
    margin-bottom: 2rem;
    color: #4a5568;
}

.map-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.map-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4a5568;
    font-size: 0.9rem;
}

.map-detail i {
    color: #dc2626;
}

.faq-section {
    padding: 80px 0;
    background: white;
}

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

.faq-item {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid #dc2626;
}

.faq-item h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #4a5568;
    margin: 0;
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-grid,
    .contact-grid,
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .category-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .filter-btn {
        white-space: nowrap;
    }
    
    .map-info {
        grid-template-columns: 1fr;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 70px;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #3182ce;
    outline-offset: 2px;
}

/* Loading animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
