/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    box-sizing: border-box;
}

* {
    box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Header */
header {
    position: fixed;
    top: -100px;
    left: 0;
    z-index: 1000;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 120px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    animation: slideDownHeader 1s ease-out 0s forwards;
}

@keyframes slideDownHeader {
    to {
        top: 0;
    }
}

.header-transparent {
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-container {
    font-size: 28px;
    font-weight: 800;
    color: #1a202c;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container a {
    display: block;
    line-height: 1;
}

.logo-container img {
    width: 80px;
    height: 80px;
}

.navigation-container {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    padding: 16px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.navigation-container nav ul {
    display: flex;
    gap: 32px;
}

.navigation-container nav ul li {
    list-style: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 25px;
    position: relative;
}

.navigation-container nav ul li:hover {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    transform: translateY(-2px);
}

.navigation-container nav ul li.active {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.navigation-container nav ul li a {
    text-decoration: none;
    color: inherit;
    display: block;
    padding: 12px 20px;
}

.navigation-container.mobile-menu-open {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navigation-container.mobile-menu-open nav ul {
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .navigation-container {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* Ensure desktop navigation works correctly */
@media (min-width: 769px) {
    .navigation-container {
        display: flex !important;
        position: static;
        height: auto;
        width: auto;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.2));
    z-index: 1;
}

.hero-section picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-section picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-contact-info {
    position: absolute;
    top: 150px;
    left: 120px;
    color: white;
    z-index: 2;
    animation: slideInFromLeft 1s ease-out 0.2s both;
}

.hero-contact-info.mobile-contact-info {
    display: none;
}

.hero-contact-info .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-contact-info .contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.hero-contact-info .contact-item .icon {
    font-size: 18px;
}

.hero-contact-info .contact-item .text {
    font-size: 16px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    color: inherit;
}

.main-content {
    position: absolute;
    bottom: 120px;
    left: 120px;
    color: white;
    max-width: 650px;
    z-index: 2;
    animation: slideInFromLeft 1s ease-out;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.main-content h2 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.main-content a {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.main-content a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.main-content a:hover::before {
    left: 100%;
}

.main-content a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.heading {
    position: absolute;
    top: 50%;
    right: 120px;
    transform: translateY(-50%);
    text-align: right;
    color: white;
    z-index: 2;
    animation: slideInFromRight 1s ease-out 0.3s both;
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px) translateY(-50%);
    }

    100% {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

.heading .subtitle {
    font-size: 20px;
    font-weight: 500;
    opacity: 0.9;
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.heading h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.tags-container {
    position: absolute;
    top: 140px;
    right: 120px;
    display: flex;
    gap: 20px;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.tag {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px 20px;
    border-radius: 20px;
    text-align: center;
    min-width: 140px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.tag:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tag .subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.tag .title {
    font-size: 22px;
    font-weight: 800;
    color: #1a202c;
    display: block;
    margin: 8px 0;
}

.tag .description {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

/* Advantages Section */
.advantages-container {
    padding: 120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    position: relative;
}

.advantages-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23cbd5e0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.advantages-container .text {
    position: relative;
    z-index: 1;
}

.advantages-container .text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 32px;
    color: #1a202c;
    background: linear-gradient(135deg, #1a202c, #4a5568);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.advantages-container .text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 40px;
}

.advantages-container .text a {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.advantages-container .text a:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.images-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    height: 550px;
    position: relative;
    z-index: 1;
}

.large-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    position: relative;
}

.large-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
    z-index: 1;
}

.large-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: scaleImages 1.5s ease-in-out infinite alternate;
}

.small-images-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.blank-window {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
    padding: 36px;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.blank-window::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.blank-window .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.blank-window .icon::after {
    content: '⚡';
    font-size: 24px;
}

.blank-window span:nth-child(2) {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.blank-window span:nth-child(3) {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.blank-window a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 4px;
    align-self: flex-start;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.blank-window a:hover {
    border-bottom-color: white;
}

.small-image-container {
    border-radius: 25px;
    overflow: hidden;
    flex: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.small-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: scaleImages 1.5s ease-in-out infinite alternate;
    height: 100%;
}

@keyframes scaleImages {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

/* Steps Section - Enhanced with Cards */
.steps-container {
    padding: 120px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(29, 78, 216, 0.05) 0%, transparent 50%);
}

.steps-container h2 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 80px;
    color: #1a202c;
    position: relative;
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.step-card {
    background: white;
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(29, 78, 216, 0.02));
    z-index: 0;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.step-card>* {
    position: relative;
    z-index: 1;
}

.step-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0 auto 32px;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8, #3b82f6);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.step-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a202c;
}

.step-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

/* Reviews Section - Enhanced */
.reviews-container {
    padding: 120px;
    background: linear-gradient(135deg, #1e293b, #334155);
    position: relative;
    overflow: hidden;
}

.reviews-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stars" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23stars)"/></svg>');
    background-repeat: repeat;
    animation: moveDots 30s linear infinite;
}

@keyframes moveDots {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200px 200px;
    }
}


.reviews-container h2 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 80px;
    color: white;
    position: relative;
    z-index: 1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(29, 78, 216, 0.03));
    z-index: 0;
}

.review-card>* {
    position: relative;
    z-index: 1;
}

.review-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.25);
}

.review-stars {
    color: #fbbf24;
    font-size: 1.4rem;
    margin-bottom: 24px;
    display: flex;
    gap: 4px;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.review-text::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 4rem;
    color: #e5e7eb;
    font-family: serif;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.review-info h4 {
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
    font-size: 1.1rem;
}

.review-info span {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
}

/* Contact Section */
.contact-container {
    padding: 120px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    position: relative;
}

.contact-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.contact-container h2 {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 80px;
    color: #1a202c;
    position: relative;
    z-index: 1;
}

.contact-form {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 30px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background: white;
}

.form-group textarea {
    height: 140px;
    resize: vertical;
}

.form-section-title {
    margin: 50px 0 30px 0;
    color: #374151;
    font-size: 1.3rem;
    font-weight: 700;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 10px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 20px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 80px 120px 40px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="70" cy="70" r="1.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: white;
}

.footer-section p {
    line-height: 1.8;
    color: #cbd5e0;
    margin-bottom: 24px;
    font-size: 1rem;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #3b82f6;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.social-link span {
    display: inline-block;
    width: 50%;
    height: 50%;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #475569;
    color: #94a3b8;
    position: relative;
    z-index: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #1a202c;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

/* 404 Error Page */
.error-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    position: relative;
    overflow: hidden;
}

.error-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(29, 78, 216, 0.05) 0%, transparent 50%);
}

.error-page>* {
    position: relative;
    z-index: 1;
}

.error-page h1 {
    font-size: 12rem;
    font-weight: 800;
    color: transparent;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    text-shadow: 0 0 50px rgba(59, 130, 246, 0.3);
    animation: pulse 2s infinite;
}

.error-page h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 30px;
    max-width: 600px;
}

.error-page p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
    max-width: 700px;
}

.error-page p:last-of-type {
    margin-bottom: 40px;
}


/* Mobile responsive */
@media (max-width: 768px) {
    .error-page {
        padding: 80px 32px;
    }

    .error-page h1 {
        font-size: 8rem;
    }

    .error-page h2 {
        font-size: 2rem;
    }

    .error-page p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .error-page {
        padding: 60px 20px;
    }

    .error-page h1 {
        font-size: 6rem;
    }

    .error-page h2 {
        font-size: 1.6rem;
    }
}

.error-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    margin-top: 20px;
}

.error-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    header {
        padding: 20px 60px;
    }

    .main-content,
    .heading {
        left: 60px;
        right: 60px;
    }

    .advantages-container,
    .steps-container,
    .reviews-container,
    .contact-container {
        padding: 80px 60px;
    }

    footer {
        padding: 60px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px 32px;
    }

    .navigation-container {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu-toggle span {
        display: inline-block;
        width: 48px;
        height: 48px;
    }



    .steps-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .navigation-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        z-index: 1000;
        padding: 20px;
        width: 100vw;
        align-items: center;
        justify-content: center;
        height: 100vh;
        border-radius: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #1a202c;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 10px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .close-btn:hover {
        background: rgba(59, 130, 246, 0.1);
        color: #3b82f6;
    }

    .close-btn span {
        display: inline-block;
        width: 48px;
        height: 48px;
    }

    .close-btn span svg g path {
        stroke: #000;
    }

    .navigation-container ul {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-card:not(:last-child)::after {
        display: none;
    }

    .contact-form {
        margin: 0 20px;
        padding: 40px 30px;
    }

    .steps-container h2,
    .reviews-container h2,
    .contact-container h2,
    .advantages-container .text h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .main-content h2 {
        font-size: 2rem;
    }

    .main-content p {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .advantages-container,
    .steps-container,
    .reviews-container,
    .contact-container {
        padding: 60px 20px;
    }
}

/* Scroll animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #20ba5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn span {
    display: inline-block;
    width: 60%;
    height: 60%;
    text-align: center;
}

.phone-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.phone-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    box-shadow: rgba(59, 130, 246, 0.4) 0px 10px 30px;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.phone-btn:hover {
    transform: scale(1.1);
    box-shadow: rgba(59, 130, 246, 0.4) 0px 10px 30px;
}

.phone-btn span {
    display: inline-block;
    width: 60%;
    height: 60%;
    text-align: center;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}



/** Otkup vozila **/

.hero-section-custom {
    position: relative;
    height: 60vh;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(29, 78, 216, 0.9)),
        url('./assets/images/hero/mercedes-sm.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-section-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ffffff, #f1f5f9);
    color: #1d4ed8;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Vehicle Types Section */
.vehicle-types-section {
    padding: 120px 120px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    position: relative;
}

.vehicle-types-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(29, 78, 216, 0.03) 0%, transparent 50%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a202c;
    background: linear-gradient(135deg, #1a202c, #4a5568);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.vehicle-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(29, 78, 216, 0.02));
    z-index: 0;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.vehicle-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.vehicle-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
}

.vehicle-content {
    padding: 35px;
    position: relative;
    z-index: 1;
}

.vehicle-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.vehicle-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.vehicle-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.vehicle-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.brand-tag {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
    color: #1d4ed8;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.vehicle-cta {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.vehicle-cta:hover {
    color: #1d4ed8;
    gap: 12px;
}

/* Process Section */
.process-section {
    padding: 120px 120px;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="processPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="80" cy="80" r="1.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23processPattern)"/></svg>');
}

.process-section .section-header {
    color: white;
    position: relative;
    z-index: 1;
}

.process-section .section-header h2 {
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-section .section-header p {
    color: #cbd5e0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.process-step p {
    color: #cbd5e0;
    line-height: 1.7;
}

/* Advantages Section */
.advantages-section {
    padding: 120px 120px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    position: relative;
}

.advantages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    position: relative;
    z-index: 1;
}

.advantage-item {
    background: white;
    padding: 40px 35px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(29, 78, 216, 0.02));
    z-index: 0;
}

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.advantage-item>* {
    position: relative;
    z-index: 1;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.advantage-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a202c;
}

.advantage-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 120px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn-primary {
    background: white;
    color: #1d4ed8;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-btn:hover {
    transform: translateY(-3px);
}

.cta-btn-primary:hover {
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}








/* Main Content */
.contact-page.main-content {
    padding: 120px 120px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    position: relative;
    bottom: auto;
    left: auto;
    max-width: none;
    color: inherit;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(29, 78, 216, 0.03) 0%, transparent 50%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Contact Info */
.contact-info h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: #1a202c;
    background: linear-gradient(135deg, #1a202c, #4a5568);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.contact-info p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 50px;
    text-shadow: none;
    opacity: 1;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(29, 78, 216, 0.02));
    z-index: 0;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.contact-card>* {
    position: relative;
    z-index: 1;
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.contact-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.contact-card p {
    font-size: 1.1rem;
    color: #4a5568;
    margin: 5px 0 0 0;
    opacity: 1;
}

.contact-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.01), rgba(29, 78, 216, 0.01));
    z-index: 0;
}

.contact-form-container>* {
    position: relative;
    z-index: 1;
    box-shadow: none;
    padding: 0;
}

.contact-form h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a202c;
    text-align: center;
    text-shadow: none;
    background: transparent;
    -webkit-text-fill-color: #1a202c;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #374151;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background: white;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 20px;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

/* Map Section */
.map-section {
    padding: 0;
    background: #f8fafc;
}

.map-container {
    height: 400px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a5568;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.map-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mapPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%234a5568" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23mapPattern)"/></svg>');
}

.map-placeholder {
    text-align: center;
    z-index: 1;
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* FAQ Section */
.faq-section {
    padding: 120px 120px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.faq-container h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 60px;
    color: #1a202c;
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.faq-question {
    padding: 25px 30px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(29, 78, 216, 0.05));
    font-weight: 600;
    color: #1a202c;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(29, 78, 216, 0.08));
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #4a5568;
    line-height: 1.7;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 200px;
}

/* Responsive Design */
@media (max-width: 1200px) {

    .main-content,
    .faq-section {
        padding: 80px 60px;
    }
}

@media (max-width: 768px) {



    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .main-content,
    .faq-section {
        padding: 60px 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form-container {
        padding: 35px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-info h2 {
        font-size: 2.2rem;
    }

    .faq-container h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .contact-form-container {
        padding: 32px 24px;
    }

    .main-content,
    .faq-section {
        padding: 60px 20px;
    }
}


.grecaptcha-badge {
    display: none !important;
}

/* Contact Form Loading States and Messages */
.submit-btn.loading {
    background-color: #6c757d !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

.form-message {
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}


/* Service Areas Section */
.service-areas-section {
    padding: 120px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    position: relative;
    overflow: hidden;
}

.service-areas-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.05) 0%, transparent 50%);
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.text-content h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 32px;
    color: #1a202c;
    background: linear-gradient(135deg, #1a202c, #4a5568);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    margin-top: 16px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.area-card {
    background: white;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.02), rgba(29, 78, 216, 0.02));
    z-index: 0;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.area-card>* {
    position: relative;
    z-index: 1;
}

.area-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.area-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a202c;
}

.area-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 120px;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="whyPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="80" cy="80" r="1.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23whyPattern)"/></svg>');
    animation: moveDots 30s linear infinite;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.feature-item p {
    color: #cbd5e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.text-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.text-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e0;
    margin-bottom: 24px;
}

/* Responsive Design for New Components */
@media (max-width: 1200px) {

    .service-areas-section,
    .why-choose-section {
        padding: 80px 60px;
    }

    .section-content,
    .why-choose-content {
        gap: 60px;
    }
}

@media (max-width: 768px) {

    .service-areas-section,
    .why-choose-section {
        padding: 60px 32px;
    }

    .section-content,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .text-content h2,
    .text-section h2 {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .areas-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {

    .service-areas-section,
    .why-choose-section {
        padding: 40px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .text-content h2,
    .text-section h2 {
        font-size: 1.8rem;
    }

    .area-card,
    .feature-item {
        padding: 25px;
    }
}

/* Success/Error Message Section */
.message-section {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.message-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.message-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.message-icon {
    font-size: 4rem;
    margin-bottom: 10px;
}

.message-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.message-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.message-close-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.message-close-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .message-container {
        padding: 30px 20px;
        margin: 20px;
    }

    .message-content h3 {
        font-size: 1.5rem;
    }

    .message-content p {
        font-size: 1rem;
    }

    .message-icon {
        font-size: 3rem;
    }
}

/* Contact Form Loading States and Messages (keep existing) */
.submit-btn.loading {
    background-color: #6c757d !important;
    cursor: not-allowed !important;
    opacity: 0.7;
}

.form-message {
    padding: 15px;
    margin: 15px 0;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media screen and (max-width: 1700px) {
    @keyframes slideInFromRight {
        0% {
            opacity: 0;
            transform: translateX(50px) translateY(-120%);
        }

        100% {
            opacity: 1;
            transform: translateX(0) translateY(-120%);
        }
    }
}

@media screen and (max-width: 1400px) {
    header {
        padding: 20px 48px;
    }

    .tags-container {
        right: 48px;
    }

    .hero-contact-info {
        left: 48px;
    }

    .main-content {
        left: 48px;
    }

    .main-content h2 {
        font-size: 3.5rem;
    }

    .main-content .contact-form h2 {
        font-size: 1.5rem;
    }

    .main-content .contact-info h2 {
        font-size: 2.5rem;
    }

    .main-content p {
        font-size: 1.1rem;
    }

    .advantages-container {
        grid-template-columns: 1fr;
        padding: 60px 32px;
        gap: 60px;
    }

    .images-container {
        grid-template-columns: 1fr;
        height: auto;
        gap: 20px;
    }

    .contact-card h3 {
        font-size: 1.2rem;
    }

    .main-content .contact-card p {
        font-size: 0.8rem;
    }

    .main-content .contact-card a {
        background: transparent;
        color: #4a5568;
        box-shadow: none;
        padding: 0;
    }
}

.main-content .contact-card p {
    font-size: 0.8rem;
}

.main-content .contact-card a {
    background: transparent;
    color: #4a5568;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
}

@media screen and (max-width: 1200px) {
    .contact-page.main-content {
        right: auto;
        padding: 80px 48px;
    }
}

@media screen and (max-width: 1050px) {
    @keyframes slideInFromRight {
        0% {
            opacity: 0;
            transform: translateX(50px) translateY(-80%);
        }

        100% {
            opacity: 1;
            transform: translateX(0) translateY(-80%);
        }
    }
}

@media screen and (max-width: 1000px) {

    .steps-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }
}

@media screen and (max-width: 780px) {
    .tag {
        padding: 8px 18px;
        min-width: 60px;
    }

    .tag .subtitle {
        font-size: 10px;
    }

    .tag .title {
        font-size: 18px;
    }

    .tag .description {
        font-size: 12px;
    }

    .main-content h2 {
        font-size: 2.5rem;
    }

    .main-content p {
        font-size: 1rem;
    }

    .main-content {
        bottom: 80px;
    }

    @keyframes slideInFromRight {
        0% {
            opacity: 0;
            transform: translateX(50px) translateY(-50%);
        }

        100% {
            opacity: 1;
            transform: translateX(0) translateY(-50%);
        }
    }
}

@media screen and (max-width: 620px) {
    .tags-container {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        right: 20px;
    }

    .tag {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .contact-page.main-content {
        padding: 48px 32px;
    }

    .main-content .contact-info h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .main-content p {
        margin-bottom: 32px;
    }

}

@media screen and (max-width: 600px) {
    header {
        padding: 10px 32px;
        background: rgba(255, 255, 255, 0.8);
    }

    .main-content {
        bottom: 40px;
    }

    .main-content h2 {
        font-size: 2rem;
    }

    .main-content p {
        font-size: 0.9rem;
    }

    @keyframes slideInFromRight {
        0% {
            opacity: 0;
            transform: translateX(50px) translateY(-30%);
        }

        100% {
            opacity: 1;
            transform: translateX(0) translateY(-30%);
        }
    }

    .heading {
        right: 40px;
        left: auto;
    }

    .vehicle-types-section,
    .process-section,
    .advantages-section,
    .cta-section {
        padding: 60px 24px;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .map-placeholder {
        width: 80%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 550px) {
    .heading h1 {
        font-size: 3.5rem;
    }

    @keyframes slideInFromRight {
        0% {
            opacity: 0;
            transform: translateX(50px) translateY(-20%);
        }

        100% {
            opacity: 1;
            transform: translateX(0) translateY(-20%);
        }
    }

    .main-content {
        bottom: 60px;
    }

    .mobile-menu-toggle span {
        width: 32px;
        height: 32px;
    }

    .section-header h2 {
        font-size: 2.5rem;
    }

    .hero-section {
        height: 1000px;
    }

    .blank-window {
        padding: 30px 30px 50px 30px;
    }

    .blank-window .icon {
        margin-bottom: 14px;
    }

    .blank-window span:nth-child(2) {
        margin-bottom: 14px;
        font-size: 18px;
    }

    .blank-window span:nth-child(3) {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .steps-container h2 {
        margin-bottom: 50px;
    }

    .hero-section-custom {
        height: 500px;
    }

    .logo-container img {
        width: 50px;
        height: 50px;
    }

    .contact-page.main-content {
        padding: 48px 24px;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-card-header {
        margin-bottom: 0;
        align-items: flex-start;
    }

    .contact-card h3 {
        font-size: 1rem;
    }

    .main-content .contact-card a {
        font-size: 0.8rem;
    }

    .main-content .contact-card p {
        margin-bottom: 0;
    }

    .contact-form-container>* {
        margin: 0;
    }
}

@media screen and (max-width: 550px) {
    .heading {
        right: 24px;
    }

    .main-content,
    .hero-contact-info {
        left: 24px;
    }
}

@media screen and (max-width: 550px) {
    .hero-contact-info .contact-item .text {
        font-size: 11px;
    }

    .hero-contact-info .contact-item .icon {
        font-size: 14px;
    }

    .tags-container {
        flex-direction: row;
        top: 10%;
    }

    .hero-contact-info.mobile-contact-info {
        display: block;
        position: absolute;
        top: 23%;
        left: auto;
        right: 24px;
    }

    .hero-contact-info.mobile-contact-info .contact-item .icon {
        font-size: 22px;
    }

    .hero-contact-info.mobile-contact-info .contact-item .text {
        font-size: 20px;
    }

    .hero-contact-info.mobile-contact-info .contact-item {
        padding: 14px 28px;
        gap: 12px;
    }

    .heading {
        top: 50%;
    }

    .tag {
        max-width: none;
        width: auto;
    }

    .hero-contact-info .contact-item {
        gap: 6px;
    }

    .heading .subtitle {
        font-size: 15px;
    }

    .heading h1 {
        font-size: 2.6rem;
        line-height: 3rem;
    }

    @keyframes slideInFromRight {
        0% {
            opacity: 0;
            transform: translateX(50px) translateY(-125%);
        }

        100% {
            opacity: 1;
            transform: translateX(0) translateY(-125%);
        }
    }

    .main-content {
        bottom: 15%;
    }

    .main-content h2 {
        font-size: 1.7rem;
    }

    .main-content p {
        font-size: 0.8rem;
    }

    .hero-contact-info {
        display: none;
    }
}

@media screen and (max-width: 400px) {

    .main-content,
    .hero-contact-info {
        left: 20px;
    }

    .hero-contact-info .contact-item .icon {
        font-size: 14px;
    }

    .hero-contact-info .contact-item .text {
        font-size: 12px;
    }

    .tags-container {
        right: 16px;
        gap: 8px;
    }

    .heading {
        padding-left: 24px;
    }

    .heading h1 {
        font-size: 2.2rem;
    }
}



.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid #3b82f6;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #3b82f6;
}

.cookie-banner-text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #cbd5e0;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    min-width: 120px;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: transparent;
    color: #9ca3af;
    border: 1px solid #4b5563;
}

.cookie-btn-decline:hover {
    background: #374151;
    color: white;
}

.cookie-btn-settings {
    background: transparent;
    color: #3b82f6;
    border: 1px solid #3b82f6;
}

.cookie-btn-settings:hover {
    background: #3b82f6;
    color: white;
}

/* Cookie Settings Modal */
.cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-modal.show {
    display: flex;
}

.cookie-settings-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-settings-header {
    margin-bottom: 30px;
}

.cookie-settings-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
}

.cookie-category {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 25px;
    background: #e5e7eb;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle.active {
    background: #3b82f6;
}

.cookie-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
    transform: translateX(25px);
}

.cookie-category p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

.cookie-settings-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: flex-end;
}

/* Mobile responsive for cookie banner */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 15px;
    }

    .cookie-btn {
        min-width: 100px;
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .cookie-settings-content {
        padding: 30px 20px;
    }
}

/* Image fix for iOS - remove opacity animation completely */
img {
    opacity: 1 !important;
    transition: none !important;
}

/* Policy Pages Styles */
.policy-hero {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 180px 120px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="policyPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="1.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23policyPattern)"/></svg>');
    animation: moveDots 30s linear infinite;
}

.policy-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.policy-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.policy-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
}

.policy-container {
    padding: 80px 120px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    min-height: 60vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.policy-section {
    margin-bottom: 50px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid #3b82f6;
    display: inline-block;
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #374151;
    margin: 30px 0 16px 0;
}

.policy-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.policy-section ul {
    margin: 20px 0;
    padding-left: 0;
}

.policy-section ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.policy-section ul li::before {
    content: '•';
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.policy-section a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.policy-section a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

/* Cookie Types Styling */
.cookie-type {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 30px;
    border-radius: 15px;
    margin: 25px 0;
    border-left: 4px solid #3b82f6;
}

.cookie-type h3 {
    color: #1a202c;
    margin-top: 0;
    margin-bottom: 16px;
}

/* Cookie Controls Section */
.cookie-controls {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
}

.cookie-controls h2 {
    color: white;
    border-bottom: none;
    margin-bottom: 16px;
}

.cookie-controls p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.cookie-settings-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cookie-settings-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Mobile Responsive for Policy Pages */
@media (max-width: 1200px) {
    .policy-hero {
        padding: 160px 60px 60px;
    }

    .policy-container {
        padding: 60px;
    }
}

@media (max-width: 768px) {
    .policy-hero {
        padding: 140px 32px 50px;
    }

    .policy-hero h1 {
        font-size: 2.5rem;
    }

    .policy-hero p {
        font-size: 1.1rem;
    }

    .policy-container {
        padding: 40px 32px;
    }

    .policy-content {
        padding: 40px 30px;
    }

    .policy-section h2 {
        font-size: 1.6rem;
    }

    .cookie-controls {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        padding: 120px 20px 40px;
    }

    .policy-hero h1 {
        font-size: 2rem;
    }

    .policy-hero p {
        font-size: 1rem;
    }

    .policy-container {
        padding: 30px 20px;
    }

    .policy-content {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .policy-section {
        margin-bottom: 40px;
    }

    .policy-section h2 {
        font-size: 1.4rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }

    .cookie-type {
        padding: 20px;
        margin: 20px 0;
    }
}



/* Contact Info Section */
.contact-info-section {
    padding: 120px;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.08"/><circle cx="80" cy="40" r="0.5" fill="%23ffffff" opacity="0.08"/><circle cx="40" cy="80" r="1.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23contactPattern)"/></svg>');
    background-repeat: repeat;
    animation: moveDots 30s linear infinite;
}

@keyframes moveDots {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200px 200px;
    }
}

.contact-info-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-header {
    margin-bottom: 80px;
}

.contact-info-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-info-header p {
    font-size: 1.3rem;
    color: #cbd5e0;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.contact-method-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 45px 35px;
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.contact-method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-method-card:hover::before {
    opacity: 1;
}

.contact-method-card>* {
    position: relative;
    z-index: 1;
}

.contact-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    position: relative;
    transition: all 0.4s ease;
}

.contact-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulsating 2s infinite;
}

@keyframes pulsating {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }

    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

.contact-method-card:hover .contact-icon-wrapper {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
}

.contact-icon {
    font-size: 2.2rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.contact-method-card p {
    font-size: 1rem;
    color: #cbd5e0;
    line-height: 1.6;
    margin-bottom: 25px;
}

.contact-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.contact-link-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* Social Section */
.social-connect {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-connect h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: white;
}

.social-links-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--social-color, #3b82f6), var(--social-color-dark, #1d4ed8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.social-link span {
    font-size: 1.8rem;
    z-index: 1;
    position: relative;
}

/* Facebook specific styling */
.social-link.facebook {
    --social-color: #1877f2;
    --social-color-dark: #166fe5;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-info-section {
        padding: 80px 60px;
    }

    .contact-info-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 60px 32px;
    }

    .contact-info-header {
        margin-bottom: 60px;
    }

    .contact-info-header h2 {
        font-size: 2.5rem;
    }

    .contact-info-header p {
        font-size: 1.1rem;
    }

    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .contact-method-card {
        padding: 35px 25px;
    }

    .contact-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .contact-icon {
        font-size: 2rem;
    }

    .contact-method-card h3 {
        font-size: 1.3rem;
    }

    .social-links-grid {
        gap: 16px;
    }

    .social-link {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .social-link span {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .contact-info-section {
        padding: 40px 20px;
    }

    .contact-info-header h2 {
        font-size: 2rem;
    }

    .contact-info-header p {
        font-size: 1rem;
    }

    .contact-method-card {
        padding: 30px 20px;
    }

    .contact-method-card h3 {
        font-size: 1.2rem;
    }

    .contact-method-card p {
        font-size: 0.95rem;
    }

    .contact-link-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .social-connect h3 {
        font-size: 1.2rem;
    }
}

/* FAQ Page Styles */
.faq-main-section {
    padding: 80px 120px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    position: relative;
}

.faq-main-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(29, 78, 216, 0.03) 0%, transparent 50%);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-intro {
    text-align: center;
    margin-bottom: 70px;
}

.faq-intro h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1a202c, #4a5568);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-intro p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.faq-category-section {
    margin-bottom: 60px;
}

.category-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3b82f6;
    display: inline-block;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 25px 60px 25px 30px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(29, 78, 216, 0.05));
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a202c;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: 300;
    color: #3b82f6;
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(29, 78, 216, 0.08));
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-answer p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 500px;
}

.faq-cta-section {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 30px;
    padding: 60px 50px;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.faq-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.faq-cta-content {
    position: relative;
    z-index: 1;
}

.faq-cta-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.faq-cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.7;
}

.faq-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Quick Tips Section */
.quick-tips-section {
    padding: 100px 120px;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    position: relative;
    overflow: hidden;
}

.quick-tips-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tipsPattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23ffffff" opacity="0.05"/><circle cx="80" cy="80" r="1.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23tipsPattern)"/></svg>');
}

.tips-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tips-header {
    text-align: center;
    margin-bottom: 60px;
}

.tips-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tips-header p {
    font-size: 1.15rem;
    color: #cbd5e0;
    opacity: 0.9;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.4s ease;
}

.tip-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-8px);
}

.tip-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.tip-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.tip-card p {
    color: #cbd5e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* FAQ Page Responsive Design */
@media (max-width: 1200px) {

    .faq-main-section,
    .quick-tips-section {
        padding: 60px 60px;
    }
}

@media (max-width: 768px) {

    .faq-main-section,
    .quick-tips-section {
        padding: 50px 32px;
    }

    .faq-intro h2,
    .tips-header h2 {
        font-size: 2.2rem;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 20px 50px 20px 24px;
    }

    .faq-question::after {
        right: 20px;
        font-size: 1.5rem;
    }

    .faq-answer {
        padding: 0 24px;
    }

    .faq-item.active .faq-answer {
        padding: 20px 24px;
    }

    .faq-cta-section {
        padding: 40px 30px;
    }

    .faq-cta-content h2 {
        font-size: 1.8rem;
    }

    .faq-cta-buttons {
        flex-direction: column;
    }

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {

    .faq-main-section,
    .quick-tips-section {
        padding: 40px 20px;
    }

    .faq-intro h2,
    .tips-header h2 {
        font-size: 1.8rem;
    }

    .faq-cta-section {
        padding: 35px 25px;
        border-radius: 20px;
    }

    .faq-cta-content h2 {
        font-size: 1.5rem;
    }

    .faq-cta-content p {
        font-size: 1rem;
    }

    .tip-card {
        padding: 30px 24px;
    }
}

/* FAQ Teaser Section */
.faq-teaser-section {
    padding: 100px 120px;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    position: relative;
    overflow: hidden;
}

.faq-teaser-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}

.faq-teaser-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.faq-teaser-content {
    text-align: left;
}

.faq-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.faq-teaser-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-teaser-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 32px;
}

.faq-teaser-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.faq-teaser-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.faq-teaser-btn .arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.faq-teaser-btn:hover .arrow {
    transform: translateX(5px);
}

.faq-preview-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-preview-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.faq-preview-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.faq-preview-icon {
    font-size: 2rem;
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(29, 78, 216, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-preview-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.faq-preview-card p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

/* Responsive Design for FAQ Teaser */
@media (max-width: 1200px) {
    .faq-teaser-section {
        padding: 80px 60px;
    }
    
    .faq-teaser-container {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .faq-teaser-section {
        padding: 60px 32px;
    }
    
    .faq-teaser-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-teaser-content {
        text-align: center;
    }
    
    .faq-teaser-content h2 {
        font-size: 2rem;
    }
    
    .faq-preview-cards {
        gap: 16px;
    }
    
    .faq-preview-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .faq-teaser-section {
        padding: 40px 20px;
    }
    
    .faq-icon {
        font-size: 3rem;
    }
    
    .faq-teaser-content h2 {
        font-size: 1.7rem;
    }
    
    .faq-teaser-content p {
        font-size: 1rem;
    }
    
    .faq-teaser-btn {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .faq-preview-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .faq-preview-icon {
        margin: 0 auto;
    }
}