@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

:root {
    --charcoal-dark: #1a1a1a;
    --charcoal-medium: #2d3436;
    --charcoal-light: #3d4447;
    --cyan-electric: #00d4ff;
    --cyan-glow: rgba(0, 212, 255, 0.3);
    --gold-accent: #f4b400;
    --gold-light: #ffd54f;
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-light: #e9ecef;
    --text-dark: #212529;
    --text-light: #f8f9fa;
    --text-muted: #adb5bd;
    --success: #28a745;
    --error: #dc3545;
    --warning: #ffc107;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--off-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

strong, b {
    font-weight: 700;
}

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

.section {
    padding: 80px 0;
    position: relative;
}

.section-dark {
    background-color: var(--charcoal-dark);
    color: var(--text-light);
}

.section-dark p {
    color: var(--text-light);
}

.section-accent {
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
    color: var(--text-light);
}

.section-accent p {
    color: var(--text-light);
}

.section-gold {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-light) 100%);
    color: var(--charcoal-dark);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-height: 52px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan-electric) 0%, var(--cyan-glow) 100%);
    color: var(--charcoal-dark);
    box-shadow: 0 4px 15px var(--cyan-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px var(--cyan-glow);
    color: var(--charcoal-dark);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--charcoal-dark);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-accent) 0%, var(--gold-light) 100%);
    color: var(--charcoal-dark);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 180, 0, 0.4);
}

.btn-icon {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
}

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

.text-cyan {
    color: var(--cyan-electric);
}

.text-gold {
    color: var(--gold-accent);
}

.text-muted {
    color: var(--text-muted);
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--cyan-electric) 0%, var(--gold-accent) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal-dark);
    padding: 20px;
    flex-direction: column;
    gap: 15px;
}

.nav-menu.active {
    display: flex;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

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

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

.nav-link:hover {
    color: var(--cyan-electric);
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .nav-menu {
        display: flex;
        position: static;
        background: none;
        padding: 0;
        flex-direction: row;
        gap: 35px;
    }
    
    .mobile-toggle {
        display: none;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--charcoal-dark);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 52, 54, 0.85) 100%),
        url('../media/hero-industrial.webp') center/cover;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    opacity: 0.3;
}

.shape-circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.shape-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

.shape-pipe {
    position: absolute;
    width: 200px;
    height: 30px;
    background: linear-gradient(90deg, var(--charcoal-light) 0%, var(--cyan-electric) 50%, var(--charcoal-light) 100%);
    border-radius: 15px;
    transform: rotate(-30deg);
}

.shape-pipe-1 {
    top: 20%;
    right: 10%;
    opacity: 0.2;
}

.shape-pipe-2 {
    bottom: 30%;
    left: 5%;
    transform: rotate(15deg);
    opacity: 0.15;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--cyan-electric);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cyan-electric);
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--cyan-glow); }
    50% { box-shadow: 0 0 0 10px transparent; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--cyan-electric);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cyan-electric);
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .hero-stats {
        gap: 60px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cyan-electric);
    margin-bottom: 15px;
    position: relative;
}

.section-label::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--gold-accent);
    margin: 10px auto 0;
}

.section-title {
    color: var(--charcoal-dark);
    margin-bottom: 20px;
}

.section-dark .section-title,
.section-accent .section-title {
    color: var(--white);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.section-dark .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.card-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.card-glass:hover {
    transform: translateY(-5px);
    border-color: var(--cyan-electric);
    box-shadow: 0 10px 40px var(--cyan-glow);
}

.card-service {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    color: var(--charcoal-dark);
}

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

.card-service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

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

.card-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 26, 0.8) 100%);
}

.card-service-content {
    padding: 25px;
    color: var(--charcoal-medium);
}

.card-service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cyan-electric) 0%, var(--cyan-glow) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.card-service-title {
    font-size: 1.3rem;
    color: var(--charcoal-dark);
    margin-bottom: 12px;
}

.card-service-desc {
    font-size: 0.95rem;
    margin-bottom: 15px;
    color: var(--charcoal-medium) !important;
}

.card-service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin-bottom: 15px;
}

.card-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan-electric);
    font-weight: 600;
    transition: all 0.3s ease;
}

.card-service-link:hover {
    gap: 15px;
    color: var(--gold-accent);
}

.advantage-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--cyan-electric);
    position: relative;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--gold-accent);
    border-radius: 50%;
    opacity: 0.5;
}

.advantage-title {
    font-size: 1.25rem;
    color: var(--charcoal-dark);
    margin-bottom: 15px;
}

.advantage-desc {
    color: var(--charcoal-medium) !important;
    font-size: 0.95rem;
}

.testimonial-card {
    background: var(--charcoal-dark);
    border-radius: 12px;
    padding: 35px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 5rem;
    font-family: 'Playfair Display', serif;
    color: var(--cyan-electric);
    opacity: 0.2;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--cyan-electric);
}

.testimonial-name {
    font-weight: 600;
    color: var(--white);
    font-size: 1.1rem;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.cta-section {
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-medium) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-shape {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 70%);
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.contact-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--cyan-electric) 0%, var(--cyan-glow) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal-dark);
}

.contact-value a:hover {
    color: var(--cyan-electric);
}

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

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--charcoal-dark);
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    background: var(--white);
    color: var(--charcoal-dark);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--cyan-electric);
    box-shadow: 0 0 0 4px var(--cyan-glow);
}

.form-control::placeholder {
    color: var(--text-muted);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
    background: var(--charcoal-light);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer {
    background: var(--charcoal-dark);
    color: var(--text-light);
    padding: 60px 0 30px;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--cyan-electric);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--cyan-electric);
}

.page-hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--charcoal-dark);
    padding-top: 80px;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 52, 54, 0.85) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 0;
}

.page-hero-content h1 {
    color: var(--off-white);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--cyan-electric);
}

.breadcrumb span {
    color: var(--text-muted);
}

.team-card {
    text-align: center;
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid var(--cyan-electric);
}

.team-name {
    font-size: 1.3rem;
    color: var(--charcoal-dark);
    margin-bottom: 5px;
}

.team-role {
    color: var(--cyan-electric);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.team-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 0.85rem;
    color: var(--cyan-electric);
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 1.25rem;
    color: var(--charcoal-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--charcoal-dark);
    text-align: left;
}

.faq-question:hover {
    color: var(--cyan-electric);
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    background: var(--cyan-electric);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 25px 25px;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    max-width: 450px;
    background: var(--charcoal-dark);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: block;
}

@media (max-width: 768px) {
    .cookie-banner {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
    }
}

.cookie-banner h4 {
    color: var(--white);
    margin-bottom: 10px;
}

.cookie-banner p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.cookie-accept {
    background: var(--cyan-electric);
    color: var(--charcoal-dark);
    border: none;
    font-weight: 600;
}

.cookie-decline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-muted);
}

.cookie-link {
    color: var(--cyan-electric);
    text-decoration: underline;
}

.hidden {
    display: none !important;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
}

.feature-icon {
    width: 25px;
    height: 25px;
    background: var(--cyan-electric);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.pricing-table {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--gray-light);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-service {
    font-weight: 500;
    color: var(--charcoal-dark);
}

.pricing-price {
    font-weight: 700;
    color: var(--gold-accent);
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 15px 25px;
    background: var(--off-white);
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
