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

:root {
    --charcoal-dark: #1a1a1a;
    --charcoal-mid: #2d2d2d;
    --charcoal-light: #3d3d3d;
    --electric-cyan: #00f0ff;
    --burnt-orange: #ff6b35;
    --burnt-orange-dark: #e55a2b;
    --off-white: #f8f9fa;
    --pure-white: #ffffff;
    --text-gray: #b0b0b0;
    --text-dark: #1a1a1a;
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --shadow-sharp: 4px 4px 0px rgba(0, 240, 255, 0.3);
    --shadow-orange: 4px 4px 0px rgba(255, 107, 53, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

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

strong, p, h1, h2, h3, h4, h5, h6 {
    color: inherit;
}


.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.75rem 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--electric-cyan), var(--burnt-orange));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: var(--charcoal-dark);
}

.logo-text {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: var(--pure-white);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--off-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

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

.nav-links a:hover::after {
    width: 100%;
}

.header-cta {
    background: var(--burnt-orange);
    color: var(--pure-white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-orange);
}

.header-cta:hover {
    background: var(--burnt-orange-dark);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(255, 107, 53, 0.5);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--off-white);
    margin: 5px 0;
    transition: all 0.3s ease;
}


.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal-mid) 100%);
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300f0ff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
}

.hero-text h1 .accent {
    color: var(--electric-cyan);
    display: block;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

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

.stat-number {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: var(--burnt-orange);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--electric-cyan);
    color: var(--charcoal-dark);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sharp);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background: var(--pure-white);
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0px rgba(0, 240, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--off-white);
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid var(--glass-border);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--burnt-orange);
    color: var(--burnt-orange);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--electric-cyan);
    border-radius: 12px;
    z-index: -1;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 60%;
    height: 40%;
    background: var(--burnt-orange);
    border-radius: 8px;
    z-index: -2;
}


.section-padding {
    padding: 6rem 0;
}

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

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

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.75rem;
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.section-header .accent-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--electric-cyan), var(--burnt-orange));
    margin: 1.5rem auto 0;
    border-radius: 2px;
}


.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--electric-cyan), var(--burnt-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--electric-cyan);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.15);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--charcoal-light), var(--charcoal-mid));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.service-card h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.5rem;
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-price {
    font-family: 'Russo One', sans-serif;
    font-size: 1.75rem;
    color: var(--burnt-orange);
    margin-bottom: 1rem;
}

.service-price span {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 400;
}

.service-link {
    color: var(--electric-cyan);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}


.about-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--burnt-orange);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.about-badge .number {
    font-family: 'Russo One', sans-serif;
    font-size: 3rem;
    color: var(--pure-white);
    display: block;
}

.about-badge .text {
    font-size: 0.9rem;
    color: var(--pure-white);
}

.about-content h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature .icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 240, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-cyan);
}

.about-feature span {
    color: var(--off-white);
    font-weight: 500;
}


.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--burnt-orange);
}

.team-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.35rem;
    color: var(--pure-white);
    margin-bottom: 0.25rem;
}

.team-info .position {
    color: var(--burnt-orange);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}


.reviews-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: 'Russo One', sans-serif;
    font-size: 5rem;
    color: var(--electric-cyan);
    opacity: 0.2;
    line-height: 1;
}

.review-stars {
    color: var(--burnt-orange);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    color: var(--off-white);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.review-author-info h4 {
    color: var(--pure-white);
    font-weight: 600;
}

.review-author-info span {
    color: var(--text-gray);
    font-size: 0.85rem;
}


.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--electric-cyan);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--off-white);
}

.contact-item a {
    color: var(--off-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--burnt-orange);
}


.contact-form {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2.5rem;
}

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

.form-group label {
    display: block;
    color: var(--off-white);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--charcoal-dark);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--off-white);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-cyan);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

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

.form-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--burnt-orange);
    color: var(--pure-white);
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-orange);
}

.form-submit:hover {
    background: var(--burnt-orange-dark);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0px rgba(255, 107, 53, 0.5);
}


.map-section {
    padding: 4rem 0;
}

.map-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}


.site-footer {
    background: var(--charcoal-mid);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-gray);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-column h4 {
    font-family: 'Russo One', sans-serif;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--burnt-orange);
    text-decoration: none;
}


.cookie-consent-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    max-width: 420px;
    background: var(--charcoal-mid);
    border: 1px solid var(--electric-cyan);
    border-radius: 12px;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-content h4 {
    font-family: 'Russo One', sans-serif;
    color: var(--pure-white);
    margin-bottom: 0.75rem;
}

.cookie-content p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.cookie-links {
    margin-bottom: 1rem;
}

.cookie-links a {
    color: var(--electric-cyan);
    font-size: 0.85rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn-accept {
    background: var(--electric-cyan);
    color: var(--charcoal-dark);
}

.cookie-btn-accept:hover {
    background: var(--pure-white);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--off-white);
    border: 1px solid var(--glass-border);
}

.cookie-btn-decline:hover {
    border-color: var(--burnt-orange);
    color: var(--burnt-orange);
}

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

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.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-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.95));
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    color: var(--pure-white);
    font-weight: 600;
}

.gallery-overlay p {
    color: var(--text-gray);
    font-size: 0.85rem;
}


.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

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

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--burnt-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

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

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

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.7;
}


.breadcrumb {
    padding: 8rem 0 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

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

.breadcrumb span {
    color: var(--text-gray);
    margin: 0 0.5rem;
}


.page-header {
    padding: 6rem 0;
    text-align: center;
    background: var(--charcoal-mid);
}

.page-header h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 3rem;
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.15rem;
}


.inner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.inner-content h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
}

.inner-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.inner-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.inner-content li {
    color: var(--text-gray);
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.inner-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--electric-cyan);
    font-weight: bold;
}


.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 1.5rem;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: var(--electric-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
}

.thank-you-content h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 2.5rem;
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: var(--text-gray);
    font-size: 1.15rem;
    margin-bottom: 2rem;
}


@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-section {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr; 
    }
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--charcoal-dark);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        border-bottom: 1px solid var(--glass-border);
    }

    .main-nav.active {
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

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

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

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

    .cookie-consent-banner {
        left: 1rem;
        right: 1rem;
        max-width: none;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

@media (max-width: 480px) {
    .header-container {
        padding: 0 1rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero-section {
        padding: 6rem 0 3rem;
    }

    .hero-text h1 {
        font-size: 1.85rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

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

    .section-padding {
        padding: 4rem 0;
    }
}
