

:root {
    
    --bg-dark: #0a0a0c;
    --bg-card: #121216;
    --bg-card-hover: #1a1a20;
    --primary: #9b1c20; 
    --primary-hover: #c4272c; 
    --primary-glow: rgba(155, 28, 32, 0.4);
    --primary-glow-strong: rgba(196, 39, 44, 0.6);
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1a6;
    --text-muted: #6e6e73;
    --accent-gold: #c5a880; 
    --border-color: #22222a;
    --success: #2e7d32;
    
    
    --font-sans: 'Outfit', sans-serif;
    --font-heading: 'Orbitron', sans-serif;
    --max-width: 1200px;
    --border-radius: 12px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: #fff;
    box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--primary-glow-strong);
    background: linear-gradient(135deg, var(--primary-hover), #e63238);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.text-center { text-align: center; }
.text-gradient {
    background: linear-gradient(135deg, #fff 30%, var(--primary-hover) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.accent-text {
    color: var(--primary-hover);
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(155, 28, 32, 0.15);
    color: var(--primary-hover);
    border: 1px solid rgba(155, 28, 32, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: var(--transition);
}

.main-header.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 12, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    height: 70px;
    width: auto;
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-hover);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-nav-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.page-header {
    padding: 160px 0 60px 0;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-dark));
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.page-header-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(155, 28, 32, 0.15), transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 2.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.breadcrumb i {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary-hover);
}

.breadcrumb span {
    color: var(--text-primary);
    font-weight: 500;
}

.hero-section {
    position: relative;
    padding: 180px 0 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(155,28,32,0.15) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-hover);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 50%;
    padding: 20px;
    background: radial-gradient(circle, rgba(155,28,32,0.1) 0%, rgba(20,20,25,0.4) 100%);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.03);
    
}

.hero-logo-img {
    max-width: 320px;
    filter: drop-shadow(0 0 15px var(--primary-glow-strong));
    animation: logoGlowPulse 4s infinite ease-in-out;
}

@keyframes logoGlowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px var(--primary-glow));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 25px var(--primary-glow-strong));
        transform: scale(1.02);
    }
}

.floating-card {
    position: absolute;
    background: rgba(18, 18, 22, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-hover), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.floating-card h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.floating-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.card-1 {
    top: 5%;
    left: -15%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 5%;
    right: -8%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--primary-hover);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    margin: 10px 0 20px 0;
    text-transform: uppercase;
}

.section-desc {
    color: var(--text-secondary);
}

.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(18, 18, 22, 0.4) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-hover);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: var(--transition);
}

.service-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--primary-glow);
    border-color: rgba(196, 39, 44, 0.3);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius);
    background: rgba(155, 28, 32, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
    border: 1px solid rgba(155, 28, 32, 0.2);
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--primary-hover);
}

.service-card:hover .card-icon {
    background: var(--primary);
    transform: scale(1.1);
}

.service-card:hover .card-icon i {
    color: #fff;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.card-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-list li i {
    color: var(--primary-hover);
}

.service-details-container {
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

.detail-row:nth-child(even) .detail-content {
    order: 2;
}

.detail-row:nth-child(even) .detail-visual {
    order: 1;
}

.detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.detail-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.detail-feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.detail-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.detail-feature-list li i {
    color: var(--primary-hover);
    font-size: 1.2rem;
    margin-top: 4px;
}

.detail-feature-list h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.detail-feature-list p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.detail-visual {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: var(--transition);
}

.detail-visual:hover {
    border-color: rgba(196, 39, 44, 0.25);
    box-shadow: 0 15px 40px var(--primary-glow);
}

.detail-visual i {
    font-size: 6rem;
    color: var(--primary-hover);
    filter: drop-shadow(0 0 15px var(--primary-glow));
    animation: float 6s ease-in-out infinite;
    transition: var(--transition);
}

.detail-visual:hover i {
    filter: drop-shadow(0 0 25px var(--primary-glow-strong));
    color: #fff;
}

.about-section {
    padding: 100px 0;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.about-card {
    position: relative;
    background: radial-gradient(circle, rgba(155,28,32,0.05) 0%, rgba(20,20,25,0.4) 100%);
    border-radius: var(--border-radius);
    padding: 50px;
    border: 1px solid var(--border-color);
}

.about-logo-wrapper {
    background: var(--bg-dark);
    padding: 30px;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.about-logo-img {
    max-width: 220px;
    filter: drop-shadow(0 0 10px var(--primary-glow));
}

.years-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 25px var(--primary-glow);
    display: flex;
    flex-direction: column;
    font-family: var(--font-heading);
}

.years-badge .number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.years-badge .label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 35px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-item i {
    font-size: 1.8rem;
    color: var(--primary-hover);
    margin-top: 3px;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.process-section {
    padding: 100px 0;
    background-color: rgba(18, 18, 22, 0.4);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step-card {
    position: relative;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 39, 44, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(155, 28, 32, 0.1);
    position: absolute;
    top: 15px;
    right: 20px;
    line-height: 1;
    transition: var(--transition);
}

.step-card:hover .step-num {
    color: var(--primary-glow);
    transform: scale(1.1);
}

.step-card h4 {
    margin-top: 15px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.contact-section {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 40px 0;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border-radius: var(--border-radius);
    background: rgba(255,255,255,0.02);
    border: 1px solid transparent;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(5px);
    border-color: rgba(196, 39, 44, 0.25);
    background: rgba(155, 28, 32, 0.04);
}

.info-item i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(155, 28, 32, 0.1);
    color: var(--primary-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-item h4 {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.info-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-form-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background-color: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 12px 16px;
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-hover);
    box-shadow: 0 0 10px rgba(155, 28, 32, 0.25);
}

.form-status-msg {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-status-msg.success {
    color: #4caf50;
}

.form-status-msg.error {
    color: var(--primary-hover);
}

.main-footer {
    background-color: #050507;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-area {
    margin-bottom: 20px;
}

.footer-logo {
    height: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 25px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.social-links a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary-hover);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-hours h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after,
.footer-hours h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-hover);
}

.footer-links ul,
.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: 5px;
}

.footer-hours li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    justify-content: space-between;
}

.footer-hours li span {
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: -60px; 
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--primary-glow);
    z-index: 99;
    transition: var(--transition);
}

.back-to-top.show {
    right: 30px;
}

.back-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 60px;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-lead {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-visual {
        order: 2;
    }
    
    .detail-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .detail-row:nth-child(even) .detail-content {
        order: 1;
    }

    .detail-row:nth-child(even) .detail-visual {
        order: 2;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-logo {
        height: 52px;
    }
    
    .logo-text {
        font-size: 1.05rem;
    }
    
    .floating-card {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .container {
        width: 92%;
    }
    
    .about-card {
        padding: 25px;
    }
    
    .years-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin: 20px auto 0 auto;
        max-width: 160px;
    }
    
    .hero-logo-img {
        max-width: 220px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .detail-visual i {
        font-size: 4rem;
    }
    
    .contact-form-card {
        padding: 25px 15px;
    }

    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-dark);
        border-top: 1px solid var(--border-color);
        padding: 50px 30px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .nav-menu ul li {
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.2rem;
        display: block;
        width: 100%;
    }
    
    .nav-btn {
        width: 100%;
        margin-top: 20px;
        border-radius: 8px;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    
    .service-details-container {
        gap: 60px;
        padding: 60px 0;
    }
    
    
    .info-item {
        flex-wrap: wrap;
    }
    
    .info-item p {
        font-size: 0.95rem;
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .logo-text .accent-text {
        display: none;
    }
    
    .logo-text {
        font-size: 0.95rem;
    }
    
    .nav-logo {
        height: 44px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-lead {
        font-size: 0.95rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-logo-img {
        max-width: 160px;
    }
    
    .footer-hours li {
        flex-direction: column;
        gap: 3px;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0c;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.bolt-glow {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(155, 28, 32, 0.1);
    border: 2px solid rgba(155, 28, 32, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 20px rgba(155, 28, 32, 0.2);
    animation: pulseRing 1.5s infinite ease-in-out;
}

.bolt-glow i {
    font-size: 2.2rem;
    color: #c4272c;
    filter: drop-shadow(0 0 10px rgba(196, 39, 44, 0.8));
    animation: boltFlicker 2s infinite alternate;
}

.loader-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #f5f5f7;
    text-shadow: 0 0 10px rgba(196, 39, 44, 0.3);
}

.loader-line {
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.loader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #c4272c, transparent);
    animation: loadingProgress 1.2s infinite ease-in-out;
}

@keyframes pulseRing {
    0% {
        box-shadow: 0 0 0 0 rgba(155, 28, 32, 0.4);
        transform: scale(0.98);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(155, 28, 32, 0);
        transform: scale(1.02);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(155, 28, 32, 0);
        transform: scale(0.98);
    }
}

@keyframes boltFlicker {
    0%, 100% { opacity: 1; }
    45% { opacity: 1; }
    50% { opacity: 0.7; }
    55% { opacity: 1; }
}

@keyframes loadingProgress {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.spark {
    position: absolute;
    bottom: -20px;
    background: #c4272c;
    border-radius: 50%;
    box-shadow: 0 0 10px #c4272c, 0 0 20px #c4272c, 0 0 35px #c4272c;
    animation: riseUp 7.5s infinite linear;
    opacity: 0;
}

.spark-1 { left: 8%; width: 5px; height: 5px; animation-duration: 8s; animation-delay: 0s; }
.spark-2 { left: 22%; width: 4px; height: 4px; animation-duration: 6.5s; animation-delay: 2.2s; }
.spark-3 { left: 38%; width: 7px; height: 7px; animation-duration: 10s; animation-delay: 0.8s; }
.spark-4 { left: 52%; width: 4px; height: 4px; animation-duration: 7.5s; animation-delay: 3.5s; }
.spark-5 { left: 68%; width: 6px; height: 6px; animation-duration: 9s; animation-delay: 1.5s; }
.spark-6 { left: 82%; width: 4px; height: 4px; animation-duration: 6s; animation-delay: 4.8s; }
.spark-7 { left: 14%; width: 8px; height: 8px; animation-duration: 11s; animation-delay: 5.2s; }
.spark-8 { left: 45%; width: 5px; height: 5px; animation-duration: 8.5s; animation-delay: 6s; }
.spark-9 { left: 74%; width: 4px; height: 4px; animation-duration: 7.5s; animation-delay: 1.2s; }
.spark-10 { left: 92%; width: 6px; height: 6px; animation-duration: 9s; animation-delay: 3.8s; }

@keyframes riseUp {
    0% {
        bottom: -20px;
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.95;
    }
    90% {
        opacity: 0.95;
    }
    100% {
        bottom: 115%;
        transform: translateX(80px);
        opacity: 0;
    }
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-primary) 20%, var(--primary-hover) 50%, var(--text-primary) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shineText 6s linear infinite;
}

@keyframes shineText {
    0% { background-position: 0% center; }
    50% { background-position: 200% center; }
    100% { background-position: 0% center; }
}

.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.18) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    transition: none;
    animation: btnShine 4.5s infinite ease-in-out;
}

@keyframes btnShine {
    0% { left: -75%; }
    18% { left: 125%; }
    100% { left: 125%; }
}

.main-header.scrolled {
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(196, 39, 44, 0.25);
    box-shadow: 0 10px 30px rgba(196, 39, 44, 0.08);
}

.service-details-container {
    position: relative;
}

.electricity-line {
    position: absolute;
    left: 50%;
    top: 60px;
    bottom: 60px;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
    z-index: 0;
    overflow: hidden;
}

.electricity-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to bottom,
        rgba(196, 39, 44, 0) 0%,
        rgba(196, 39, 44, 0.9) 40%,
        #c4272c 50%,
        rgba(196, 39, 44, 0.9) 60%,
        rgba(196, 39, 44, 0) 100%
    );
    box-shadow: 0 0 12px #c4272c, 0 0 24px rgba(196, 39, 44, 0.4);
    animation: electricFlow 3s linear infinite;
}

.tr-flag-wrap {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    margin-left: 20px;
    z-index: 10;
    filter: drop-shadow(0 3px 8px rgba(0,0,0,0.3));
    cursor: default;
    transform: translateY(2px);
}

.flag-pole {
    width: 3px;
    height: 48px;
    background: linear-gradient(to right, #b8873a, #e8c97a, #b8873a);
    border-radius: 1.5px 1.5px 3px 3px;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.flag-pole::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #ffe066, #c8952a);
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(255, 220, 80, 0.8);
}

.flag-wave-sliced {
    display: flex;
    width: 48px;
    height: 32px;
    margin-top: 2px;
    overflow: hidden;
    background-color: #E30A17;
    transform-style: preserve-3d;
    perspective: 1000px;
    animation: macroWaving 3s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

.f-slice {
    height: 100%;
    width: 3.5%;
    margin-left: -0.2%;
    background-color: #E30A17;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'><rect width='1200' height='800' fill='%23E30A17'/><circle cx='400' cy='400' r='200' fill='white'/><circle cx='450' cy='400' r='160' fill='%23E30A17'/><polygon points='580.00,400.00 649.08,377.55 649.08,304.89 691.80,363.67 760.88,341.22 718.16,400.00 760.88,458.78 691.80,436.33 649.08,495.11 649.08,422.45' fill='white'/></svg>");
    background-size: 3000% 100%;
    background-repeat: no-repeat;
    flex-shrink: 0;
    animation: microWaving 1.5s ease-in-out infinite;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform, filter;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.slice-1 { background-position: 0.00% 0; --amp: 0.10px; --factor: 0.03; animation-delay: 0.00s; }
.slice-2 { background-position: 3.45% 0; --amp: 0.25px; --factor: 0.07; animation-delay: -0.05s; }
.slice-3 { background-position: 6.90% 0; --amp: 0.40px; --factor: 0.10; animation-delay: -0.10s; }
.slice-4 { background-position: 10.34% 0; --amp: 0.55px; --factor: 0.13; animation-delay: -0.14s; }
.slice-5 { background-position: 13.79% 0; --amp: 0.70px; --factor: 0.17; animation-delay: -0.19s; }
.slice-6 { background-position: 17.24% 0; --amp: 0.85px; --factor: 0.20; animation-delay: -0.23s; }
.slice-7 { background-position: 20.69% 0; --amp: 1.00px; --factor: 0.23; animation-delay: -0.28s; }
.slice-8 { background-position: 24.14% 0; --amp: 1.15px; --factor: 0.27; animation-delay: -0.32s; }
.slice-9 { background-position: 27.59% 0; --amp: 1.30px; --factor: 0.30; animation-delay: -0.37s; }
.slice-10 { background-position: 31.03% 0; --amp: 1.45px; --factor: 0.33; animation-delay: -0.41s; }
.slice-11 { background-position: 34.48% 0; --amp: 1.60px; --factor: 0.37; animation-delay: -0.46s; }
.slice-12 { background-position: 37.93% 0; --amp: 1.75px; --factor: 0.40; animation-delay: -0.50s; }
.slice-13 { background-position: 41.38% 0; --amp: 1.90px; --factor: 0.43; animation-delay: -0.55s; }
.slice-14 { background-position: 44.83% 0; --amp: 2.05px; --factor: 0.47; animation-delay: -0.59s; }
.slice-15 { background-position: 48.28% 0; --amp: 2.20px; --factor: 0.50; animation-delay: -0.64s; }
.slice-16 { background-position: 51.72% 0; --amp: 2.35px; --factor: 0.53; animation-delay: -0.68s; }
.slice-17 { background-position: 55.17% 0; --amp: 2.50px; --factor: 0.57; animation-delay: -0.73s; }
.slice-18 { background-position: 58.62% 0; --amp: 2.65px; --factor: 0.60; animation-delay: -0.77s; }
.slice-19 { background-position: 62.07% 0; --amp: 2.80px; --factor: 0.63; animation-delay: -0.82s; }
.slice-20 { background-position: 65.52% 0; --amp: 2.95px; --factor: 0.67; animation-delay: -0.86s; }
.slice-21 { background-position: 68.97% 0; --amp: 3.10px; --factor: 0.70; animation-delay: -0.91s; }
.slice-22 { background-position: 72.41% 0; --amp: 3.25px; --factor: 0.73; animation-delay: -0.95s; }
.slice-23 { background-position: 75.86% 0; --amp: 3.40px; --factor: 0.77; animation-delay: -1.00s; }
.slice-24 { background-position: 79.31% 0; --amp: 3.55px; --factor: 0.80; animation-delay: -1.04s; }
.slice-25 { background-position: 82.76% 0; --amp: 3.70px; --factor: 0.83; animation-delay: -1.09s; }
.slice-26 { background-position: 86.21% 0; --amp: 3.85px; --factor: 0.87; animation-delay: -1.13s; }
.slice-27 { background-position: 89.66% 0; --amp: 4.00px; --factor: 0.90; animation-delay: -1.18s; }
.slice-28 { background-position: 93.10% 0; --amp: 4.15px; --factor: 0.93; animation-delay: -1.22s; }
.slice-29 { background-position: 96.55% 0; --amp: 4.30px; --factor: 0.97; animation-delay: -1.27s; }
.slice-30 { background-position: 100.00% 0; --amp: 4.45px; --factor: 1.00; animation-delay: -1.31s; }

@keyframes macroWaving {
    0%, 100% {
        transform: perspective(400px) rotateY(-8deg) rotateX(3deg) skewY(-1deg);
    }
    50% {
        transform: perspective(400px) rotateY(10deg) rotateX(-3deg) skewY(1deg);
    }
}

@keyframes microWaving {
    0%, 100% {
        transform: translateY(calc(-1 * var(--amp))) translateZ(calc(-1.2 * var(--amp))) rotateY(calc(-5deg * var(--factor))) skewY(calc(-1.5deg * var(--factor)));
        filter: brightness(0.82) contrast(1.10);
    }
    50% {
        transform: translateY(var(--amp)) translateZ(calc(1.2 * var(--amp))) rotateY(calc(5deg * var(--factor))) skewY(calc(1.5deg * var(--factor)));
        filter: brightness(1.18) contrast(0.90);
    }
}

@media (max-width: 768px) {
    .tr-flag-wrap {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
        margin-top: 0;
        z-index: 1001;
    }
    .flag-pole {
        height: 34px;
        width: 2px;
    }
    .flag-wave-sliced {
        width: 34px;
        height: 23px;
    }
}

@media (max-width: 480px) {
    .tr-flag-wrap {
        right: 60px;
    }
    .flag-pole {
        height: 28px;
        width: 1.8px;
    }
    .flag-wave-sliced {
        width: 28px;
        height: 19px;
    }
}

@media (min-width: 1440px) {
    .tr-flag-wrap {
        margin-left: 30px;
        transform: translateY(3px);
    }
    .flag-pole {
        height: 54px;
        width: 3.5px;
    }
    .flag-wave-sliced {
        width: 54px;
        height: 36px;
    }
}
