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

/* Reset and Base Styles - global reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-orange: #F97316;
    --success-green: #10B981;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.1);
    --shadow-lg: 0 10px 25px -5px rgba(249, 115, 22, 0.2);
    --shadow-xl: 0 20px 40px -10px rgba(249, 115, 22, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Main body styles */
body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

.cookie-content a {
    color: var(--primary-orange);
    text-decoration: underline;
}

.cookie-btn {
    background: var(--primary-orange);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-btn:hover {
    background: #EA580C;
    transform: scale(1.05);
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(249, 115, 22, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
}

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

.logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-orange);
    text-decoration: none;
    letter-spacing: -0.5px;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

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

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

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

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background: var(--primary-orange);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background: var(--primary-orange);
}

/* Hero Section - Full Screen Slider */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-fullscreen {
    height: 100vh;
    min-height: 700px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slides-container {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    height: 100%;
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.85) 0%, rgba(30, 64, 175, 0.75) 100%);
    z-index: 2;
}

.hero-slide-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-slide-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 30px;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide-badge {
    display: inline-block;
    background: var(--success-green);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 25px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

.hero-slide-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: 'Montserrat', sans-serif;
}

.hero-slide-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-slide-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 30px;
}

.hero-slide-features {
    list-style: none;
    margin-bottom: 30px;
}

.hero-slide-features li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.hero-slide-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 18px;
}

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

.btn {
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    display: inline-block;
    border: 2px solid transparent;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    animation: pulse-button 2s infinite;
}

@keyframes pulse-button {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4); }
}

.btn-primary:hover {
    background: #EA580C;
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.05);
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
}

.slider-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1);
}

.hero-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary-orange);
    width: 30px;
    border-radius: 6px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* Services Section - Product Cards with Glassmorphism */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid var(--primary-orange);
    box-shadow: 0 8px 32px rgba(249, 115, 22, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: scale(1.06) translateY(-5px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
    border-color: #EA580C;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.2);
}

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

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

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--success-green);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 12px;
    animation: bounce-badge 2s infinite;
}

@keyframes bounce-badge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.service-rating .stars {
    color: #FBBF24;
    font-size: 18px;
    letter-spacing: 2px;
    animation: star-glow 2s ease-in-out infinite;
}

@keyframes star-glow {
    0%, 100% { 
        filter: drop-shadow(0 0 2px rgba(251, 191, 36, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.8));
    }
}

.service-rating .rating-text {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
}

.service-card .btn {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    margin-top: 10px;
}

/* Solutions Section - Accordion */
.solutions {
    background: var(--bg-white);
}

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

.accordion-item {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.1);
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.2);
}

.accordion-item.active {
    border-color: #EA580C;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.accordion-header {
    padding: 30px 40px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(249, 115, 22, 0.05);
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(249, 115, 22, 0.1);
}

.accordion-item.active .accordion-header {
    background: rgba(249, 115, 22, 0.15);
}

.accordion-header h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.accordion-icon {
    font-size: 32px;
    color: var(--primary-orange);
    font-weight: 300;
    transition: var(--transition);
    line-height: 1;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
    color: #EA580C;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-body {
    padding: 0 40px 30px;
}

.accordion-body p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.accordion-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.accordion-body li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.accordion-body li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
    font-size: 18px;
}

.accordion-body .btn {
    margin-top: 10px;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid var(--primary-orange);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-orange);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Process Section */
.process {
    background: var(--bg-white);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-start;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-icon {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--primary-orange);
    transition: var(--transition);
}

.process-step:hover .process-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.process-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-content {
    flex: 1;
    padding-top: 20px;
}

.process-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.process-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Why Choose Section */
.why-choose {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    padding: 100px 0;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.why-choose-text p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.why-choose-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--primary-orange);
    flex: 1;
    min-width: 150px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
}

.why-choose-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--primary-orange);
}

.why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.why-choose-image:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact {
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

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

.contact-item {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--primary-orange);
}

.contact-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-item a:hover {
    color: #EA580C;
    text-decoration: underline;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-orange);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--bg-white);
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-links {
    list-style: none;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Policy Pages */
.policy-page {
    padding: 120px 0 80px;
    background: var(--bg-light);
    min-height: 100vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    padding: 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-orange);
}

.policy-content h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.policy-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.policy-content h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.policy-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-content ul,
.policy-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

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

.policy-content a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Thanks Page */
.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    padding: 40px 20px;
}

.thanks-content {
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
    padding: 80px 60px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary-orange);
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.thanks-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.thanks-content a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 999;
    }

    .nav.active {
        transform: translateX(0);
    }

    .burger-menu {
        display: flex;
    }

    .hero {
        height: auto;
        min-height: 600px;
    }
    
    .hero-slide-content {
        max-width: 100%;
    }

    .hero-slide-title {
        font-size: 2.2rem;
    }

    .hero-slide-description {
        font-size: 1rem;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
    }

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

    .process-step {
        flex-direction: column !important;
    }

    .process-icon {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .hero-slide-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

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

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

    .btn {
        width: 100%;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-btn {
        width: 100%;
    }

    .policy-content {
        padding: 40px 25px;
    }

    .contact-form-wrapper {
        padding: 35px 25px;
    }

    .hero-slide-content {
        padding: 40px 30px;
    }
    
    .hero-slide-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-slide-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .why-choose-stats {
        flex-direction: column;
        width: 100%;
    }

    .stat-item {
        width: 100%;
    }
}

/* End of stylesheet */
