/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header styles */
.header {
    background: transparent;
    border-bottom: none;
    padding: 16px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

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

.header-logo .logo-mob{
    display:none
}

.header-logo .logo {
    height: 70px;
    width: auto;
}

.mobile-photo{
    display:none;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    background: white;
    border-radius: 40px;
    color: black;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    background: white;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.user-icon:hover {
    background: rgba(255, 255, 255, 0.9);
}

.telegram-btn {
    background: #FFC107;
    color: #333;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.telegram-btn:hover {
    background: #FFB300;
    transform: translateY(-1px);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.burger-menu span {
    display: block;
    width: 28px;
    height: 2px;
    background: black;
    transition: all 0.3s ease;
}

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

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

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

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

.hero-content {
    max-width: 800px;
    color: white;
}

.hero-title {
    margin-bottom: 24px;
    font-weight: 500;
    font-style: Medium;
    font-size: 80.47px;
    line-height: 95%;
    letter-spacing: -8%;
}

.hero-subtitle {

    font-weight: 400;
    font-size: 17.88px;
    line-height: 150%;
    letter-spacing: -4%;

    margin-bottom: 32px;
    opacity: 0.9;
    color:rgba(201, 201, 201, 1);
}

.hero-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 500;
}

.benefit-dot {
    width: 12px;
    height: 12px;
    background: #FFC107;
    border-radius: 50%;
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #FFC107;
    color: #333;
}

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

.btn-secondary {
    background:white;
    color: black;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-track {
    display: flex;
    gap: 20px;
}

.slider-slide {
    width: 300px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-slide.active {
    opacity: 1;
    transform: scale(1.1);
    border: 3px solid #FFC107;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Trust Section */
.trust-section {
    background: #fff;
    padding: 80px 0;
}

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

.trust-title {

    color: #333;
    text-align: left;
    margin-bottom: 60px;

    font-weight: 500;
    font-size: 70px;
    line-height: 95%;
    letter-spacing: -8%;

}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.trust-grid .trust-item:nth-child(1) {
    grid-column: 1 / 3;
}

.trust-grid .trust-item:nth-child(2) {
    grid-column: 3 / 5;
}

.trust-grid .trust-item:nth-child(3) {
    grid-column: 5 / 7;
}

.trust-grid .trust-item:nth-child(4) {
    grid-column: 2 / 4;
    grid-row: 2;
}

.trust-grid .trust-item:nth-child(5) {
    grid-column: 4 / 6;
    grid-row: 2;
}

.trust-item {
    background: #fff;
    text-align: left;
}

.trust-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    margin-bottom: 24px;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-item-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.3;
}

.trust-item-text {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* Registration Section */
.registration-section {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.registration-title {

    color: #333;
    margin-bottom: 60px;


    font-weight: 500;
    font-style: Medium;
    font-size: 70px;
    line-height: 95%;
    letter-spacing: -8%;

}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.registration-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    align-items: stretch;
    gap: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.step-item.active {
    background: transparent;
    color: white;
}

.step-item:not(.active) {
    background: transparent;
    color: #666;
}

.step-number {
    width: 160px;
    min-height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
    font-weight: 500;
    flex-shrink: 0;
    border-radius: 40px;
}

.step-item.active .step-number {
    background: black;
    color: white;
}

.step-item:not(.active) .step-number {
    background: rgba(203, 203, 203, 1);
    color: white;
}

.step-text {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 24px 40px;
    border-radius: 40px;
}

.step-item.active .step-text {
    background: black;
}

.step-item:not(.active) .step-text {
    background: rgba(203, 203, 203, 1);
    color: white;
}

.step-text h3 {
    margin: 0;

    font-weight: 600;
    font-size: 28px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: -4%;

}

.registration-image {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 20px;
    overflow: hidden;
}

.registration-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Reviews Section */
.reviews-section {
    background: #fff;
    padding: 80px 0;
}

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

.reviews-title {

    color: #333;
    margin-bottom: 20px;

    font-weight: 500;
    font-size: 70px;
    line-height: 95%;
    letter-spacing: -8%;
}

.reviews-subtitle {
    color: #666;
    margin-bottom: 60px;
    max-width: 770px;

    font-weight: 500;
    font-style: Italic;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: -4%;

}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.review-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.review-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-name {
    font-weight: 600;
    font-size: 32px;
    color: black;
    line-height: 1.1;
}

.review-name span {
    display: block;
}

.review-text {
    font-size: 16px;
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Reviews Gallery */
.reviews-gallery {
    position: relative;
}

.gallery-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-track {
    display: flex;
    gap: 12px;
    transition: transform 0.3s ease;
}

.gallery-slide {

    height: 180px;
    border-radius: 40px;
    overflow: hidden;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.gallery-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
}

.gallery-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Contacts Section */
.contacts-section {
    background: #fff;
    padding: 80px 0;
}

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

.contacts-content {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 80px;
    align-items: flex-start;
}

.contacts-image {

    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.contacts-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    object-position: 50% 30%;
}

.contacts-title {
    color: #333;
    margin-bottom: 20px;

    font-weight: 500;
    font-size: 70px;
    line-height: 95%;
    letter-spacing: -8%;

}

.contacts-subtitle {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style:italic;
}

.contacts-description {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight:bold;
    font-style:italic;
}

.contacts-note {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 40px;
    font-style:italic;
}

.contacts-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    background: #fff;
    transition: border-color 0.3s ease;
}

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

.form-group input::placeholder {
    color: #999;
}

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

.form-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link.telegram {
    background: #0088cc;
    color: white;
}

.social-link.whatsapp {
    background: #25D366;
    color: white;
}

.social-link.facebook {
    background: #1877F2;
    color: white;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 1);
    padding: 40px 0;
}

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

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo .logo {
    height: 80px;
    width: auto;
}

.footer-nav {
    display: flex;
    gap: 32px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-telegram-btn {
    padding: 12px 24px;
    font-size: 14px;
}

@media (max-width: 1919px) {
    .hero-container {
        padding: 12% 0% 16% 20px;
    }
}

/* Responsive design */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .trust-grid .trust-item:nth-child(1),
    .trust-grid .trust-item:nth-child(2),
    .trust-grid .trust-item:nth-child(3),
    .trust-grid .trust-item:nth-child(4),
    .trust-grid .trust-item:nth-child(5) {
        grid-column: span 1;
        grid-row: auto;
    }
    
    .trust-title {
        font-size: 40px;
    }
    
    .registration-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .registration-image {
        height: 300px;
        min-height: auto;
    }

    .registration-title {
        font-size: 40px;
    }
    
    .reviews-title {
        font-size: 40px;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 16px;
    }

    .header-nav {
        display: none;
    }

    .header-logo .logo {
        height: 32px;
    }

    .header-actions {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero-container {
        padding: 30% 16px 16px;
    }

    .hero-title {
        font-size: 40px;
        margin-bottom: 16px;
        color:black;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
        color:black;
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-benefits {
        margin-bottom: 24px;
    }

    .benefit-item {
        font-size: 14px;
        gap: 10px;
        margin-bottom: 6px;
        color:black;
    }

    .benefit-dot {
        width: 10px;
        height: 10px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 12px;
    }

    .hero-buttons .btn {
        padding: 14px 20px;
        font-size: 14px;
        flex: 1;
        color:white;
        text-align: center;
    }

    .hero-buttons .btn.btn-secondary{
        background:black;

    }

    .hero-slider {
        display: none;
    }
    
    .slider-slide {
        width: 60px;
        height: 60px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .trust-section {
        padding: 60px 0;
    }
    
    .trust-container {
        padding: 0 16px;
    }
    
    .trust-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .trust-grid .trust-item:nth-child(1),
    .trust-grid .trust-item:nth-child(2),
    .trust-grid .trust-item:nth-child(3),
    .trust-grid .trust-item:nth-child(4),
    .trust-grid .trust-item:nth-child(5) {
        grid-column: span 1;
        grid-row: auto;
    }
    
    .trust-image {
        height: 180px;
    }
    
    .trust-item-title {
        font-size: 20px;
    }
    
    .trust-item-text {
        font-size: 14px;
    }
    
    .registration-section {
        padding: 60px 0;
    }
    
    .registration-container {
        padding: 0 16px;
    }
    
    .registration-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .registration-content {
        gap: 30px;
    }
    
    .registration-image {
        height: 250px;
        min-height: auto;
    }

    .step-item{
        gap:10px;
    }

    .step-number {
        width: 50px;
        min-height: 50px;
        font-size: 18px;
        border-radius: 12px;
    }

    .step-text {
        padding: 14px 16px;
        border-radius: 12px;
    }

    .step-text h3 {
        font-size: 14px;
    }
    
    .reviews-section {
        padding: 60px 0;
    }
    
    .reviews-container {
        padding: 0 16px;
    }
    
    .reviews-title {
        font-size: 32px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .review-name {
        font-size: 28px;
    }

    .review-avatar {
        width: 70px;
        height: 70px;
    }

    .gallery-slide {
        flex: 0 0 200px;
        height: 140px;
    }
    
    .gallery-controls {
        padding: 0 10px;
    }
    
    .gallery-btn {
        width: 36px;
        height: 36px;
    }
    
    .contacts-section {
        padding: 60px 0;
    }
    
    .contacts-container {
        padding: 0 16px;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contacts-image {
        height: 300px;
    }
    
    .contacts-title {
        font-size: 32px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .form-actions .btn{
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-social {
        justify-content: center;
        flex-wrap: wrap;
    }



    .header-logo .logo {
       display:none;
    }

    .header-logo .logo-mob.logo{
        display:block;
        height:70px;
    }

    .hero-background{
        display:none;
    }

    .mobile-photo{
        margin-left: -16px;
        margin-right: -16px;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 300px;
        overflow: hidden;
    }
    .mobile-photo img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transition: opacity 0.3s ease;
    }

    .mobile-slider-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 16px 0;
    }

    .mobile-slider-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: #FFC107;
        color: black;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-slider-btn:hover {
        background: #e6ac00;
    }

    .mobile-slider-dots {
        display: flex;
        gap: 8px;
    }

    .mobile-slider-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .mobile-slider-dot.active {
        background: #FFC107;
    }
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 999;
    flex-direction: column;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-link {
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: 500;
    padding: 16px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.mobile-nav-link:hover {
    background: #f5f5f5;
}

.mobile-menu-buttons {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu-cabinet {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f5f5f5;
    color: black;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: background 0.3s ease;
}

.mobile-menu-cabinet:hover {
    background: #e8e8e8;
}

.mobile-menu-cabinet svg {
    flex-shrink: 0;
}

.mobile-menu-telegram {
    background: #FFC107;
    color: black;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: background 0.3s ease;
}

.mobile-menu-telegram:hover {
    background: #e6ac00;
}

/* Burger menu animation */
.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }

    .mobile-slider-nav {
        display: flex;
    }
}

@media (min-width: 769px) {
    .mobile-slider-nav {
        display: none;
    }
}

/* intl-tel-input overrides */
.form-group-phone .iti {
    width: 100%;
}

.form-group-phone .iti input[type="tel"] {
    width: 100%;
    padding: 12px 16px 12px 52px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    background: #fff;
    transition: border-color 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.form-group-phone .iti input[type="tel"]:focus {
    outline: none;
    border-color: #FFC107;
}

.form-group-phone .iti input[type="tel"].error {
    border-color: #ff4444;
}

.form-group-phone .iti input[type="tel"]::placeholder {
    color: #999;
}

.form-group-phone .iti__country-container {
    border-radius: 8px 0 0 8px;
}

.form-group-phone .iti__selected-country {
    border-radius: 8px 0 0 8px;
    padding-left: 12px;
}

.form-group-phone .iti__dropdown-content {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border: 1px solid #ddd;
}

.form-group-phone .iti__search-input {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 6px;
}

.form-group-phone .iti__country.iti__highlight {
    background: #FFF8E1;
}

.form-group-phone .iti__country {
    padding: 8px 12px;
    font-size: 14px;
}

/* Form error messages */
.form-error {
    font-size: 12px;
    color: #ff4444;
    min-height: 0;
    transition: all 0.2s ease;
}

.form-error.visible {
    min-height: 16px;
    margin-top: 4px;
}

.form-group input.error,
.form-group select.error {
    border-color: #ff4444;
}

/* Submit button */
.btn-submit {
    width: 100%;
    text-align: center;
    font-size: 16px;
    padding: 16px 32px;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Thanks page */
.header-thanks {
    position: relative;
    background: black;
}

.thanks-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
}

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

.thanks-icon {
    margin-bottom: 32px;
}

.thanks-title {
    font-weight: 500;
    font-size: 48px;
    line-height: 95%;
    letter-spacing: -4%;
    color: #333;
    margin-bottom: 20px;
}

.thanks-text {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .thanks-title {
        font-size: 32px;
    }

    .thanks-text {
        font-size: 16px;
    }

    .thanks-section {
        padding: 100px 16px 60px;
    }
}
