:root {
    --primary-charcoal: #1a1a1a;
    --secondary-charcoal: #2d2d2d;
    --accent-orange: #ff6b35;
    --accent-orange-bright: #ff8c42;
    --accent-orange-glow: #ff5722;
    --metallic-light: #4a4a4a;
    --metallic-dark: #0d0d0d;
    --glass-bg: rgba(45, 45, 45, 0.75);
    --glass-border: rgba(255, 107, 53, 0.3);
    --text-light: #f5f5f5;
    --text-muted: #b0b0b0;
    --danger-red: #e63946;
    --success-green: #2a9d8f;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

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

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

strong, p, span, li, td, th {
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.btn-primary-custom {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-bright) 100%);
    border: none;
    color: #fff;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
    color: #fff;
}

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

.btn-primary-custom:hover::after {
    width: 300px;
    height: 300px;
}

.btn-secondary-custom {
    background: transparent;
    border: 2px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background: var(--accent-orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.navbar-custom {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.navbar-custom .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-custom .navbar-brand .brand-icon {
    color: var(--accent-orange);
    font-size: 1.8rem;
}

.navbar-custom .nav-link {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    position: relative;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--accent-orange);
}

.navbar-toggler {
    border: 2px solid var(--accent-orange);
    padding: 8px 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 107, 53, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--metallic-dark) 0%, var(--primary-charcoal) 50%, var(--secondary-charcoal) 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 140, 66, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

.hero-section h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-orange-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-section .hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-section .hero-tagline {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid var(--accent-orange);
    color: var(--accent-orange);
    padding: 8px 20px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-radius: 30px;
}

.page-hero {
    min-height: 45vh;
    background: linear-gradient(135deg, var(--metallic-dark) 0%, var(--primary-charcoal) 100%);
    position: relative;
    display: flex;
    align-items: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(255, 107, 53, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-hero h1 {
    font-size: 3rem;
    position: relative;
    z-index: 1;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-orange);
}

.service-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card .service-icon {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-card .price-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-bright) 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

.service-card .service-link {
    display: inline-block;
    color: var(--accent-orange);
    font-weight: 600;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.service-card .service-link:hover {
    color: var(--accent-orange-bright);
}

.about-section {
    background: var(--secondary-charcoal);
}

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

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

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

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.about-section p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-item .benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-bright) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-light);
}

.benefit-item p {
    color: var(--text-muted);
    margin: 0;
}

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

.testimonial-section::before {
    content: '"';
    position: absolute;
    top: 50px;
    left: 5%;
    font-size: 20rem;
    font-family: Georgia, serif;
    color: rgba(255, 107, 53, 0.05);
    line-height: 1;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
}

.testimonial-card .testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.testimonial-card .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-orange);
}

.testimonial-card .author-info h5 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3px;
}

.testimonial-card .author-info span {
    color: var(--accent-orange);
    font-size: 0.9rem;
}

.testimonial-card .star-rating {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.team-section {
    background: var(--secondary-charcoal);
}

.team-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-card .team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid var(--accent-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

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

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

.team-card h4 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.team-card .team-role {
    color: var(--accent-orange);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

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

.contact-section {
    background: var(--primary-charcoal);
}

.contact-info-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-5px);
}

.contact-info-card .contact-icon {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 15px;
}

.contact-info-card h4 {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text-muted);
    margin: 0;
}

.contact-info-card a {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--accent-orange);
}

.contact-form-custom {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 40px;
}

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

.contact-form-custom label {
    display: block;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.contact-form-custom input,
.contact-form-custom textarea,
.contact-form-custom select {
    width: 100%;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form-custom input:focus,
.contact-form-custom textarea:focus,
.contact-form-custom select:focus {
    outline: none;
    border-color: var(--accent-orange);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.2);
}

.contact-form-custom input::placeholder,
.contact-form-custom textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

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

.footer-custom {
    background: var(--metallic-dark);
    padding: 60px 0 30px;
    border-top: 3px solid var(--accent-orange);
}

.footer-custom .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-custom .footer-logo span {
    color: var(--accent-orange);
}

.footer-custom .footer-about {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-custom h5 {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-custom .footer-links a {
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-custom .footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 8px;
}

.footer-custom .footer-contact-info {
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-custom .footer-contact-info span {
    color: var(--accent-orange);
}

.footer-custom .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    margin-top: 40px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 420px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 25px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-consent-banner h5 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

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

.cookie-consent-banner .cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-consent-banner .btn-accept {
    flex: 1;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-bright) 100%);
    border: none;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-consent-banner .btn-accept:hover {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

.cookie-consent-banner .btn-decline {
    flex: 1;
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-consent-banner .btn-decline:hover {
    border-color: var(--text-light);
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.gallery-item .gallery-overlay h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-item .faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-item .faq-question h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
    font-family: var(--font-heading);
}

.faq-item .faq-icon {
    color: var(--accent-orange);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item .faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--metallic-dark) 0%, var(--primary-charcoal) 100%);
    position: relative;
}

.thank-you-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.thank-you-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.thank-you-content .success-icon {
    font-size: 5rem;
    color: var(--accent-orange);
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

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

.thank-you-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.thank-you-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.legal-content {
    background: var(--secondary-charcoal);
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    padding-left: 20px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step .step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-bright) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.process-step h4 {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.process-step p {
    color: var(--text-muted);
    max-width: 280px;
    margin: 0 auto;
}

.process-connector {
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), transparent);
}

.process-step:last-child .process-connector {
    display: none;
}

.detail-hero {
    min-height: 50vh;
    background: linear-gradient(135deg, var(--metallic-dark) 0%, var(--primary-charcoal) 100%);
    position: relative;
    display: flex;
    align-items: center;
}

.detail-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
}

.detail-content {
    background: var(--secondary-charcoal);
}

.detail-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--text-light);
}

.detail-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.detail-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.detail-content ul li {
    color: var(--text-muted);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

.detail-content ul li::before {
    content: '✓';
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.price-box {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 2px solid var(--accent-orange);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.price-box .price-amount {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 10px;
}

.price-box .price-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-connector {
        display: none;
    }
    
    .cookie-consent-banner {
        left: 15px;
        right: 15px;
        max-width: none;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-custom {
        padding: 25px;
    }
    
    .footer-custom {
        padding: 40px 0 20px;
    }
    
    .navbar-custom .nav-link {
        padding: 12px 15px;
    }
}

.hidden {
    display: none !important;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
