
:root {
--bg: #fff;  
--fg: #000;
--primary: #0064b4;
--primary-dark: #00509e;
--nav-bg: #f8f8f8;
--max-width: 1200px;
}

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

body {
font-family: 'Segoe UI', sans-serif;
background: var(--bg);
color: var(--fg);
line-height: 1.6;
}

.header-bar {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
background: var(--nav-bg);
padding: 1rem 2rem;
}

.logo {
font-size: 1.25rem;
font-weight: 600;
text-decoration: none;
color: var(--fg);
}

.flag-icon {
width: 32px;
height: auto;
border-radius: 3px;
box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.hero {
width: 100%;
display: grid;
grid-template-columns: 1fr 1fr;
align-items: center;
padding: 4rem 2rem;
background: var(--primary);
color: #fff;
gap: 2rem;
}

.hero-content {
max-width: 600px;
}

.hero-content h1 {
font-size: 2.5rem;
margin-bottom: 1rem;
}

.hero-content p {
font-size: 1.125rem;
opacity: 0.9;
text-align: justify;
}

.hero-video {
width: 100%;
height: auto;
border-radius: 8px;
}

.features {
width: 100%;
max-width: var(--max-width);
margin: auto;
padding: 3rem 2rem;
}

.section-title {
font-size: 1.75rem;
margin-bottom: 1.5rem;
text-align: center;
}

.features-description {
text-align: center;
margin-bottom: 2rem;
}

.features-description p {
margin-bottom: 1rem;
line-height: 1.5;
text-align: justify;
}

.feature-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(350px, 48%));
gap: 2rem;
justify-content: space-evenly;
}

.feature {
background: #fff;
padding: 1.5rem;
border-radius: 8px;
box-shadow: 0 2px 6px rgba(0,0,0,0.1);
text-align: center;
}

.feature img {
width: 100%;
height: auto;
margin-bottom: 1rem;
}

.feature h3 {
font-size: 1.125rem;
font-weight: 600;
margin-bottom: 0.75rem;
color: var(--fg);
}

.feature p {
font-size: 1rem;
color: #555;
line-height: 1.4;
text-align: justify;
}

footer {
width: 100%;
border-top: 1px solid var(--fg);
padding: 1rem 0;
text-align: center;
}

footer p, #powered-by {
font-size: 0.875rem;
color: var(--fg);
margin: 0.25rem 0;
}

.powered-link {
text-decoration: none;
color: var(--primary);
}

/* Контейнер за флаговете */
.locale-container {
display: flex;
gap: 0.5rem;
align-items: center;
}

.locale {
text-decoration: none;
transition: transform 0.2s ease;
}

.locale:hover {
transform: scale(1.1);
}

/* Стил за бутона */
.button {
display: inline-block;
margin-top: 1rem;
padding: 0.75rem 1.5rem;
background: var(--primary);
color: #fff;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease;
border: none;
cursor: pointer;
}

.button:hover {
background: #00509e;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,100,180,0.3);
}

/* Стил за бележка */
.note {
font-size: 0.875rem;
opacity: 0.8;
margin-top: 0.5rem;
font-style: italic;
}

/* Стилизация на секцията "Услуги" */
#services .feature-list {
display: flex;
flex-wrap: wrap;
gap: 2rem;
justify-content: space-between;
}

#services .feature {
flex: 1 1 calc(48% - 2rem);
border: 2px solid var(--primary);
background: linear-gradient(135deg, #e3f2fd 0%, #f0f8ff 100%);
padding: 2rem;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0,100,180,0.1);
text-align: left;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#services .feature:hover {
transform: translateY(-4px);
box-shadow: 0 8px 24px rgba(0,100,180,0.2);
}

#services .feature h3 {
color: var(--primary);
margin-bottom: 1rem;
font-size: 1.3rem;
}

#services .feature p,
#services .feature ul {
color: #333;
line-height: 1.5;
}

#services .feature ul {
margin: 1.5rem 0;
padding-left: 1.5rem;
}

#services .feature ul li {
margin-bottom: 0.5rem;
}

#services .feature p.price {
font-size: 1.2rem;
font-weight: bold;
color: var(--primary);
margin: 1rem 0;
}

#services .feature p.note {
font-size: 0.875rem;
color: #d32f2f;
margin-top: 0.5rem;
font-weight: 500;
}

/* Responsive дизайн */
@media (max-width: 900px) {
.feature-list {
  grid-template-columns: 1fr;
}

.hero {
  grid-template-columns: 1fr;
  text-align: center;
  padding: 2rem 1rem;
}

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

.header-bar {
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}

#services .feature {
  flex: 1 1 100%;
}

.features {
  padding: 2rem 1rem;
}
}

@media (max-width: 600px) {
.hero-content h1 {
  font-size: 1.75rem;
}

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

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

#services .feature {
  padding: 1.5rem;
}
}




.checkout-form {
margin-top: 1rem;
}

.checkout-form .button {
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: white;
border: none;
padding: 0.75rem 1.5rem;
font-size: 1rem;
font-weight: 600;
border-radius: 6px;
cursor: pointer;
transition: all 0.3s ease;
width: 100%;
text-transform: uppercase;
letter-spacing: 0.5px;
/* Добави explicit styling за по-добра видимост */
box-shadow: 0 2px 4px rgba(0,100,180,0.2);
text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.checkout-form .button:hover {
background: linear-gradient(135deg, var(--primary-dark) 0%, #003d7a 100%);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0,100,180,0.4);
}

.checkout-form .button:active {
transform: translateY(0);
box-shadow: 0 2px 8px rgba(0,100,180,0.3);
}

