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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: #ffffff;
}

h2 {
    font-size: 2.5rem;
    color: #ffffff;
}

h3 {
    font-size: 2rem;
    color: #ffffff;
}

h4 {
    font-size: 1.5rem;
    color: #ffffff;
}

p {
    margin-bottom: 1rem;
    color: #cccccc;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #a9db04, #fff30a);
    color: #1a1a1a;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(169, 219, 4, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #333333;
}

.btn-secondary:hover {
    background: #333333;
    border-color: #a9db04;
}

.btn-outline {
    background: transparent;
    color: #a9db04;
    border: 2px solid #a9db04;
}

.btn-outline:hover {
    background: #a9db04;
    color: #1a1a1a;
}

.btn-full {
    width: 100%;
}

/* Header and Navigation */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #cccccc;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #a9db04;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #a9db04;
    transition: width 0.3s ease;
}

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

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #a9db04);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

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

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: #222222;
}

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

.about-text h3 {
    color: #a9db04;
    margin-bottom: 1.5rem;
}

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

.about-icon {
    width: 200px;
    height: 200px;
    opacity: 0.8;
}

/* Advantages Section */
.advantages {
    background: #1a1a1a;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333333;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(169, 219, 4, 0.1);
    border-color: #a9db04;
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.advantage-card h3 {
    color: #a9db04;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    background: #222222;
}

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

.service-card {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333333;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(169, 219, 4, 0.1);
    border-color: #a9db04;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 1rem 0;
}

.star {
    width: 16px;
    height: 16px;
}

.service-rating span {
    color: #a9db04;
    font-weight: 600;
    margin-left: 10px;
}

.service-price {
    color: #fff30a;
    font-size: 1.2rem;
    font-weight: 700;
}

.services-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Services Page Styles */
.services-catalog {
    background: #1a1a1a;
    padding: 80px 0;
}

.service-detail-card {
    background: #2d2d2d;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    border-color: #a9db04;
    box-shadow: 0 10px 30px rgba(169, 219, 4, 0.1);
}

.service-detail-card.featured {
    border-color: #a9db04;
    background: linear-gradient(135deg, #2d2d2d, #3d3d3d);
    position: relative;
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
    word-break: break-word;
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.service-badge {
    background: #a9db04;
    color: #1a1a1a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.service-price {
    margin-top: 1rem;
}

.original-price {
    text-decoration: line-through;
    color: #666666;
    margin-right: 10px;
}

.discounted-price {
    color: #fff30a;
    font-size: 1.2rem;
    font-weight: 700;
}

.service-description h4 {
    color: #a9db04;
    margin: 1.5rem 0 1rem;
}

.service-description ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-description li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    position: relative;
}

.service-description li::before {
    content: '✓';
    color: #a9db04;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.service-duration {
    color: #a9db04;
    font-weight: 600;
}

/* Service Areas */
.service-areas {
    background: #222222;
    padding: 60px 0;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.city-group h4 {
    color: #a9db04;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #333333;
}

.city-group ul {
    margin-left: 1rem;
}

.city-group li {
    color: #cccccc;
    margin-bottom: 0.5rem;
    position: relative;
}

.city-group li::before {
    content: '•';
    color: #a9db04;
    position: absolute;
    left: -1rem;
}

/* Achievements Section */
.achievements {
    background: #1a1a1a;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.achievement-card {
    text-align: center;
    padding: 2rem;
    background: #2d2d2d;
    border-radius: 15px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    border-color: #a9db04;
    transform: translateY(-5px);
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    color: #a9db04;
    margin-bottom: 0.5rem;
}

.achievement-text {
    color: #cccccc;
    font-weight: 500;
}

/* Reviews Section */
.reviews {
    background: #222222;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: #a9db04;
    transform: translateY(-5px);
}

.review-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.review-author {
    color: #a9db04;
    font-weight: 600;
}

/* Contact Section */
.contact {
    background: #1a1a1a;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #a9db04;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #ffffff;
    margin-bottom: 0;
}

/* Contact Page Styles */
.contact-page {
    background: #1a1a1a;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-section h2 {
    color: #a9db04;
    margin-bottom: 1rem;
}

.contact-items {
    margin: 3rem 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #2d2d2d;
    border-radius: 10px;
    border: 1px solid #333333;
}

.contact-details h3 {
    color: #a9db04;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-details span {
    color: #cccccc;
    font-size: 0.9rem;
}

.business-hours {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
}

.business-hours h3 {
    color: #a9db04;
    margin-bottom: 1rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333333;
}

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

.contact-form-section h2 {
    color: #a9db04;
    margin-bottom: 1rem;
}

/* Forms */
.contact-form,
.contact-form-page {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group label {
    color: #a9db04;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    background: #333333;
    border: 2px solid #444444;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #a9db04;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    gap: 0.5rem;
    cursor: pointer;
    color: #cccccc;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #333333;
    border: 2px solid #444444;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #a9db04;
    border-color: #a9db04;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #1a1a1a;
    font-weight: bold;
    font-size: 12px;
}

.checkbox-label a {
    color: #a9db04;
    text-decoration: underline;
}

/* FAQ Section */
.faq-section {
    background: #222222;
    padding: 60px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid #333333;
}

.faq-item h3 {
    color: #a9db04;
    margin-bottom: 1rem;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #cccccc;
}

/* Thank You Page */
.thank-you {
    background: #1a1a1a;
    padding: 120px 0 60px;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.thank-you h1 {
    color: #a9db04;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.thank-you-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    background: #2d2d2d;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333333;
}

.info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.info-item h3 {
    color: #a9db04;
    margin-bottom: 0.5rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.next-steps {
    background: #222222;
    padding: 60px 0;
}

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

.step-item {
    text-align: center;
    padding: 2rem;
    background: #2d2d2d;
    border-radius: 15px;
    border: 1px solid #333333;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #a9db04;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.emergency-contact {
    background: #1a1a1a;
    padding: 60px 0;
}

.emergency-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.emergency-content h2 {
    color: #a9db04;
    margin-bottom: 1rem;
}

.emergency-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.emergency-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    background: #2d2d2d;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333333;
}

.emergency-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.emergency-item h3 {
    color: #a9db04;
    margin-bottom: 0.5rem;
}

.emergency-item p {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.emergency-item span {
    color: #cccccc;
    font-size: 0.9rem;
}

/* About Page Styles */
.company-info {
    background: #1a1a1a;
    padding: 60px 0;
}

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

.company-text h2 {
    color: #a9db04;
    margin-bottom: 2rem;
}

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

.company-icon {
    width: 250px;
    height: 250px;
    opacity: 0.8;
}

.mission-vision {
    background: #222222;
    padding: 60px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mission-card {
    background: #2d2d2d;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.mission-card:hover {
    border-color: #a9db04;
    transform: translateY(-5px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.mission-card h3 {
    color: #a9db04;
    margin-bottom: 1.5rem;
}

.team {
    background: #1a1a1a;
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: #a9db04;
    transform: translateY(-5px);
}

.team-image {
    margin-bottom: 1.5rem;
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border-radius: 50%;
    border: 3px solid #a9db04;
    padding: 10px;
    background: #333333;
}

.team-card h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.team-position {
    color: #a9db04;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card p {
    color: #cccccc;
    font-size: 0.9rem;
}

.values {
    background: #222222;
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #a9db04;
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    color: #a9db04;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-content {
    background: #1a1a1a;
    padding: 80px 0;
}

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #a9db04;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #333333;
}

.legal-section h3 {
    color: #ffffff;
    margin: 2rem 0 1rem;
}

.legal-section h4 {
    color: #a9db04;
    margin: 1.5rem 0 0.5rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.contact-info-legal {
    background: #2d2d2d;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #a9db04;
    margin: 1rem 0;
}

.contact-info-legal p {
    margin-bottom: 0.5rem;
}

.contact-info-legal strong {
    color: #a9db04;
}

.cookie-table {
    margin: 1.5rem 0;
}

.cookie-item {
    background: #2d2d2d;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #333333;
    margin-bottom: 1rem;
}

.cookie-item h4 {
    color: #a9db04;
    margin-bottom: 1rem;
}

.cookie-item p {
    margin-bottom: 0.5rem;
}

.cookie-controls {
    text-align: center;
    margin: 2rem 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #cccccc;
}

/* Footer */
.footer {
    background: #0f0f0f;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: #a9db04;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: #cccccc;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #a9db04;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #cccccc;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #a9db04;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #666666;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid #333333;
}

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

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

.cookie-content p {
    color: #cccccc;
    margin: 0;
    flex: 1;
}

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

.cookie-buttons .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    border: 1px solid #333333;
}

.cookie-modal-content h3 {
    color: #a9db04;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #333333;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    color: #ffffff;
}

.cookie-category input[type="checkbox"] {
    margin-top: 2px;
}

.cookie-category span {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Typography */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Layout Adjustments */
    .container {
        padding: 0 15px;
    }

    section {
        padding: 60px 0;
    }

    /* Grid Layouts */
    .about-content,
    .company-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    /* Cards and Components */
    .advantages-grid,
    .services-grid,
    .achievements-grid,
    .reviews-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

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

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    /* Cookie Banner */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    /* Thank You Actions */
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

    .thank-you-actions .btn {
        min-width: 200px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

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

    .hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-detail-card,
    .advantage-card,
    .achievement-card,
    .review-card,
    .team-card,
    .value-card {
        padding: 1.5rem;
    }

    .cookie-modal-content {
        padding: 1.5rem;
    }

    .cookie-modal-buttons {
        flex-direction: column;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
    body {
        word-break: break-word;
    }
}

/* Animation and Transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
select:focus,
a:focus {
    outline: 2px solid #a9db04;
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .page-header {
        background: none;
        color: #000;
    }
}
