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

:root {
    --primary-orange: #FF6B35;
    --dark-charcoal: #1A1A1A;
    --medium-gray: #2D2D2D;
    --light-gray: #F5F5F5;
    --metallic-accent: #C0C0C0;
    --success-green: #4CAF50;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--light-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

strong, p {
    color: inherit;
}


.site-header {
    background: var(--dark-charcoal);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange), #E55A2B);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.logo-text {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--primary-orange);
}

.main-navigation {
    display: flex;
    gap: 35px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: var(--transition-smooth);
}

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

.nav-link:hover {
    color: var(--primary-orange);
}

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

.hamburger-line {
    width: 28px;
    height: 3px;
    background: var(--text-light);
    margin: 6px 0;
    border-radius: 2px;
    transition: var(--transition-smooth);
    display: flex;
}


.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark-charcoal) 0%, var(--medium-gray) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 107, 53, 0.03) 10px,
        rgba(255, 107, 53, 0.03) 20px
    );
    transform: rotate(15deg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 25px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--text-light);
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid var(--primary-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: var(--primary-orange);
}

.hero-title {
    font-size: clamp(42px, 6vw, 72px);
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary-orange);
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 550px;
}

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

.btn-primary {
    background: var(--primary-orange);
    color: var(--text-light);
    padding: 16px 35px;
    border: none;
    border-radius: 6px;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-primary:hover {
    background: #E55A2B;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    padding: 16px 35px;
    border: 2px solid var(--metallic-accent);
    border-radius: 6px;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-secondary:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.05);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--primary-orange);
    border-radius: 20px;
    z-index: 2;
    pointer-events: none;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    font-family: 'Chakra Petch', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-orange);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}


.section {
    padding: 100px 25px;
}

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

.section-medium {
    background: var(--medium-gray);
    color: var(--text-light);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

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

.section-light .section-description {
    color: #666;
}


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

.about-image-frame {
    position: relative;
}

.about-image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid var(--primary-orange);
    border-radius: 15px;
    z-index: -1;
}

.about-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
}

.about-content h2 {
    font-size: 42px;
    margin-bottom: 25px;
}

.about-content h2 span {
    color: var(--primary-orange);
}

.about-content p {
    margin-bottom: 20px;
    font-size: 17px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 35px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-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: 24px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
}


.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--dark-charcoal);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.service-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.service-content {
    padding: 30px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), #E55A2B);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.service-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

.service-price {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-orange);
    padding: 10px 20px;
    border-radius: 8px;
    font-family: 'Chakra Petch', sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.service-link:hover {
    color: var(--primary-orange);
}

.service-link span {
    transition: var(--transition-smooth);
}

.service-link:hover span {
    transform: translateX(5px);
}


.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.advantage-card:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: var(--primary-orange);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), #E55A2B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.advantage-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-medium .advantage-card h3 {
    color: var(--text-light);
}

.advantage-card p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
}

.section-medium .advantage-card p {
    color: rgba(255, 255, 255, 0.6);
}


.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--dark-charcoal);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-quote {
    font-size: 60px;
    color: var(--primary-orange);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

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

.author-avatar {
    width: 55px;
    height: 55px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 20px;
}

.author-info h4 {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 3px;
}

.author-info p {
    font-size: 14px;
    color: var(--primary-orange);
}


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

.team-card {
    background: var(--dark-charcoal);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.team-image-wrapper {
    height: 300px;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.team-info {
    padding: 30px;
}

.team-info h3 {
    font-size: 22px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.team-info p {
    color: var(--primary-orange);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}


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

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}

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

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

.faq-question:hover {
    color: var(--primary-orange);
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-orange);
    transition: var(--transition-smooth);
}

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

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

.faq-answer-content {
    padding: 0 30px 25px;
    color: rgba(0, 0, 0, 0.7);
    line-height: 1.7;
}

.section-dark .faq-answer-content {
    color: rgba(255, 255, 255, 0.7);
}


.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-card {
    background: var(--dark-charcoal);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

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

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

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

.contact-text h4 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-text p {
    color: var(--text-light);
    font-size: 18px;
    margin: 0;
}

.contact-text a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-text a:hover {
    color: var(--primary-orange);
}


.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 16px;
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

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

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

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--primary-orange);
    color: var(--text-light);
    border: none;
    border-radius: 10px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.submit-btn:hover {
    background: #E55A2B;
    transform: translateY(-2px);
}


.map-section {
    padding: 80px 25px;
    background: var(--dark-charcoal);
}

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

.map-frame {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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


.cta-section {
    background: linear-gradient(135deg, var(--primary-orange), #E55A2B);
    padding: 80px 25px;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-btn {
    background: var(--dark-charcoal);
    color: var(--text-light);
    padding: 18px 45px;
    border: none;
    border-radius: 8px;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
}

.cta-btn:hover {
    background: var(--medium-gray);
    transform: translateY(-2px);
}


.site-footer {
    background: var(--dark-charcoal);
    padding: 80px 25px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.footer-column h4 {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.footer-column a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.footer-column a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--primary-orange);
}


.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 420px;
    background: var(--dark-charcoal);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

.cookie-content h4 {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.cookie-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    font-family: 'Inter', sans-serif;
}

.cookie-btn-accept {
    background: var(--primary-orange);
    color: var(--text-light);
}

.cookie-btn-accept:hover {
    background: #E55A2B;
}

.cookie-btn-decline {
    background: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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


.page-header {
    background: linear-gradient(135deg, var(--dark-charcoal) 0%, var(--medium-gray) 100%);
    padding: 180px 25px 80px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 107, 53, 0.02) 10px,
        rgba(255, 107, 53, 0.02) 20px
    );
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(38px, 5vw, 58px);
    color: var(--text-light);
    margin-bottom: 20px;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.breadcrumb a {
    color: var(--primary-orange);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}


.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-main h2 {
    font-size: 32px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-detail-main p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 17px;
}

.service-process {
    margin-top: 50px;
}

.service-process h3 {
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Chakra Petch', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-light);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.service-sidebar {
    position: sticky;
    top: 120px;
}

.service-price-card {
    background: var(--dark-charcoal);
    border-radius: 15px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-price-card h3 {
    font-size: 24px;
    color: var(--text-light);
    margin-bottom: 25px;
    text-align: center;
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span:first-child {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.price-item span:last-child {
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 18px;
}

.service-cta {
    margin-top: 30px;
}


.article-container {
    max-width: 900px;
    margin: 0 auto;
}

.article-header {
    margin-bottom: 40px;
}

.article-header h1 {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--text-light);
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    gap: 25px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.article-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.article-content h2 {
    font-size: 28px;
    color: var(--text-light);
    margin: 40px 0 20px;
}

.article-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.article-content li {
    color: rgba(255, 255, 255, 0.7);
    padding: 10px 0 10px 30px;
    position: relative;
}

.article-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
}


.thank-you-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-charcoal);
    text-align: center;
    padding: 80px 25px;
}

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

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: white;
    margin: 0 auto 30px;
}

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

.thank-you-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}


.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--text-light);
    margin: 40px 0 20px;
}

.legal-content p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content ul {
    list-style: disc;
    padding-left: 25px;
    color: rgba(255, 255, 255, 0.7);
}

.legal-content li {
    margin-bottom: 10px;
}


@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-image-wrapper {
        order: -1;
    }

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

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

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

    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .main-navigation {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--dark-charcoal);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: var(--transition-smooth);
        z-index: 999;
    }

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

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

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

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 25px;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .page-header {
        padding: 150px 25px 60px;
    }

    .contact-info-card,
    .contact-form-wrapper {
        padding: 30px;
    }

    .cookie-consent-banner {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 18px;
    }

    .hero-title {
        font-size: 32px;
    }

    .stat-number {
        font-size: 32px;
    }

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

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

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