@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

html{
    margin: 0;
    width: 100vw;
    overflow-x: hidden;
}

body{
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    background-color: #000;
    box-sizing: border-box;
}

html body .hidden{
    display: none;
}

/* Modal backdrop with blur */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.modal-backdrop.show {
    opacity: 1;
}

.callback-modal{
    z-index: 100;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background: #000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #fff;
    width: 400px;
    box-sizing: border-box;
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.callback-modal.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.meeting-modal{
    z-index: 9999;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background: #000;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #fff;
    max-width: 100%;
    width: 500px;
    box-sizing: border-box;
    box-shadow: 0 8px 24px rgba(255, 0, 0, 0.2);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.meeting-modal.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.modal-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.close-modal, .meeting-close-modal{
    position: absolute;
    top: -8px;
    right: 0;
    cursor: pointer;
    color: #fff;
    font-size: 24px;
    transition: 0.3s;
    text-decoration: none;
}

.close-modal:hover{
    color: #e60000;
}

.consultation-form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width:70%;
    box-sizing: border-box;
    overflow: hidden;
}
@media (max-width: 500px) {
    .consultation-form{
        width: 100%;
    }
}

.consultation-form button{
    margin-top: 20px;
    width:100%;
}

.consultation-form .form-group{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    box-sizing: border-box;
    overflow: hidden;
}

.consultation-form .form-group label {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-top: 12px;
  position: relative;
  /* padding-left: 50px; */
}

.consultation-form .form-group input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: #111;
  color: #fff;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
}

.consultation-form .form-group input:focus {
  border-color: #e60000;
  outline: none;
  box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.4);
}

.consultation-form .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #444;
  border-radius: 4px;
  background-color: #111;
  color: #fff;
  font-size: 14px;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
  resize: vertical;
}

.consultation-form .form-group :focus {
  border-color: #e60000;
  outline: none;
  box-shadow: 0 0 0 2px rgba(230, 0, 0, 0.4);
}



header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 80px;
    z-index: 98;
    position: fixed;
    top: 0;
    background-color: rgba(0, 0, 0, 0.4);
    height: 126px;
    width: 100vw;
    box-sizing: border-box;
    transition: 0.3s;
}

.header-social-list-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.event-hero-phone a{
    text-decoration: none;
    color: #fff;
    /* margin-right: 14px; */
    transition: 0.3s;
}

.event-hero-phone a:hover{
    color: #ff0000;
    transform: scale(1.1);
}

.thank-modal {
    z-index: 100;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    background: #000;
    padding: 30px 20px;
    border-radius: 10px;
    color: #fff;
    width: 400px;
    box-sizing: border-box;
    box-shadow: 0 8px 24px rgba(0, 255, 0, 0.2);
    text-align: center;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-modal.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.thank-modal .modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.thank-modal .close-modal {
    position: absolute;
    top: -8px;
    right: 0;
    cursor: pointer;
    color: #fff;
    font-size: 24px;
    transition: 0.3s;
}

.thank-modal .close-modal:hover {
    color: #e60000;
}

.thank-modal h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

.thank-modal .thank-message {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.thank-modal button {
    margin-top: 10px;
}

/* Privacy consent checkbox styles for modals */
.modal-content .privacy-consent {
    margin-bottom: 20px;
    margin-top: 15px;
}
.checkbox-label{
    position: relative;
}
.checkmark{
    position: absolute;
    left: 0;
}
.modal-content .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
    padding-left: 50px;
}

.modal-content .checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.modal-content .checkmark {
    height: 18px;
    width: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 1px;
    position: absolute;
    left: 0;
}

.modal-content .checkbox-label:hover .checkmark {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.modal-content .checkbox-label input:checked ~ .checkmark {
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    border-color: #ff6b6b;
}

.modal-content .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.modal-content .checkbox-label input:checked ~ .checkmark:after {
    display: block;
}

.modal-content .checkbox-label .checkmark:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.modal-content .privacy-link {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.modal-content .privacy-link:hover {
    color: #ff0000;
    text-decoration: underline;
}

html header.collapse-header{
    background-color: rgba(0, 0, 0, 1);
    height: 80px;
}

/* Hamburger Menu Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    position: relative;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    position: relative;
}

/* Active state - X animation */
.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Hover effect */
.menu-toggle:hover .hamburger-line {
    background: #ff6b6b;
}

.menu-toggle.active:hover .hamburger-line {
    background: #ff0000;
}

/* Mobile display */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
}

.header-bottom{
    display: flex;
    padding: 8px 80px;
    height: 60px;
    width: 100%;
}

html body .header-main:hover{
    color: #000;
    transform: scale(1);
}

.header-main{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    color: #000;
}

.header-logo{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.header-logo img{
    align-self: center;
    height: 100%;
}

.header-title{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    font-size: 28px;
    font-weight: 200;
    margin: 0;
}

.navigation{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

.navigation-item{
    display: flex;
    position: relative;
}

.navigation-item a{
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.navigation-item a:hover{
    color: red;
    transform: scale(1.1);
}

.navigation-item-title{
    display: flex;
    padding: 24px 16px;
}


.navigation-item-dropdown{
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-top: 3px solid #ff5100;
    background-color: #fff;
    top: 68px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
    padding: 12px;
    transition: 0.3s;
    height: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.navigation-item-title:hover + .navigation-item-dropdown,
.navigation-item-dropdown:hover{
    display: flex;
    height: initial;
}


.navigation-item-dropdown-item{
    display: flex;
    padding: 6px 0;
}

.navigation-item-title{
    margin: 0 20px 0 0;
    white-space: nowrap;
}

.navigation-item-dropdown-item{
    white-space: nowrap;
}

.highlight {
    color: red;
    font-weight: bold;
}

.language-switcher{
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-switcher a{
    color: #fff;
    text-decoration: none;
    margin-left: 10px;
    font-size: 18px;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.language-switcher a:hover{
    color: #ff6b6b;
    transform: scale(1.1);
}

.language-switcher a.active{
    color: #ff0000;
    background: rgba(255, 0, 0, 0.1);
    font-weight: 600;
}



/* Footer - Modern Design */
footer {
    display: flex;
    justify-content: center;
    width: 100%;
    color: #fff;
    padding: 80px 40px 100px;
    box-sizing: border-box;
    background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #000000 100%);
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 0, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-areas: 
        "logo navigation contact"
        "slogan slogan slogan";
    gap: 40px;
    width: 100%;
    margin-bottom: 60px;
    align-items: start;
}

.footer-logo {
    grid-area: logo;
    display: flex;
    justify-content: center;
}

.footer-logo img {
    height: 70px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 20px rgba(255, 0, 0, 0.3));
}

.footer-logo:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 0 30px rgba(255, 0, 0, 0.6)) brightness(1.2);
}

.footer-navigation {
    grid-area: navigation;
    display: flex;
    justify-content: center;
}

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

.footer-nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.footer-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.2), transparent);
    transition: left 0.6s ease;
}

.footer-nav-link:hover::before {
    left: 100%;
}

.footer-nav-link:hover {
    color: #fff;
    background: rgba(255, 0, 0, 0.15);
    border-color: rgba(255, 0, 0, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.2);
}

.footer-contact {
    grid-area: contact;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-phone,
.footer-email {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.footer-phone:hover,
.footer-email:hover {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    transform: scale(1.05);
}

.footer-phone i,
.footer-email i {
    font-size: 1.1rem;
    color: #ff6b6b;
    animation: contactPulse 2s ease-in-out infinite alternate;
}

@keyframes contactPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.footer-phone a,
.footer-email a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-phone:hover a,
.footer-email:hover a {
    color: #fff;
}

.footer-slogan {
    grid-area: slogan;
    text-align: center;
    margin-top: 20px;
}

.footer-slogan p {
    font-size: 1.3rem;
    font-weight: 300;
    margin: 0;
    font-style: italic;
    background: linear-gradient(45deg, #ff0000, #ff6b6b, #ffffff, #ff6b6b, #ff0000);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: sloganGradient 4s ease-in-out infinite;
    max-width: 600px;
    margin: 0 auto;
}

@keyframes sloganGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-bottom {
    border-top: 1px solid rgba(255, 0, 0, 0.2);
    padding-top: 30px;
    width: 100%;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-privacy .footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-privacy .footer-link:hover {
    color: #ff6b6b;
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    transform: scale(1.05);
}

footer a{
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

footer a:hover{
    color: #ff6b6b;
    transform: scale(1.05);
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "logo"
            "navigation" 
            "contact"
            "slogan";
        gap: 30px;
        text-align: center;
    }
    
    .footer-nav {
        gap: 20px;
    }
    
    .footer-nav-link {
        padding: 10px 16px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 60px 20px 100px;
    }
    
    .footer-main {
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .footer-logo img {
        height: 60px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-nav-link {
        width: 200px;
        text-align: center;
    }
    
    .footer-contact {
        gap: 12px;
    }
    
    .footer-phone,
    .footer-email {
        min-width: 250px;
        padding: 12px 20px;
    }
    
    .footer-slogan p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .footer-info {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 40px 15px 100px;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .footer-nav-link {
        width: 180px;
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .footer-phone,
    .footer-email {
        min-width: 220px;
        padding: 10px 15px;
    }
    
    .footer-phone a,
    .footer-email a {
        font-size: 0.9rem;
    }
    
    .footer-slogan p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .footer-copyright p,
    .footer-privacy .footer-link {
        font-size: 0.8rem;
    }
}

.menu-toggle{
    display: none;
    color: #fff;
}


.mobile-menu{
    position: fixed;
    top: 0;    
    z-index: 97;
    background: #000;
    width: 100vw;
    height: 100vh;
    transition: 0.3s;
    padding: 160px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
}

.mobile-menu-item{
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 15px;
}
.mobile-menu-item a{
    color: #fff;
    text-decoration: none;

}

.mobile-menu.hidden-menu{
    top: -100vh;
}

.mobile-social-list{
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.display-flex{
    display: flex;
}

.flex-column{
    flex-direction: column;
}


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

    .navigation{
        display: none;
    }

    html header{
        padding: 2px 20px;
    }

    .header-logo img{
        height: 50%;
    }
    
    .callback-modal{
        width: 90%;
        max-width: 400px;
    }
    
    .meeting-modal{
        width: 90%;
        max-width: 400px;
    }
    
    .thank-modal{
        width: 90%;
        max-width: 400px;
    }
}


.contact-page {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #000000 0%, #1a0000 100%);
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info h2::before {
    content: "📞";
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 0, 0, 0.1);
    transform: translateX(5px);
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.contact-item-content h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-item-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.contact-item-content a {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-content a:hover {
    color: #ff0000;
}

@media (min-width: 500px) {
    .contact-form {
        width: 80%;
    }
}

/* .contact-form {
    padding: 40px;
} */


.contact-form h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-form h2::before {
    content: "✉️";
    font-size: 1.5rem;
}

.contact-form p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

/* .form-group {
    margin-bottom: 25px;
} */

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b6b;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

.contact-submit {
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

.privacy-consent {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 50px;
    position: relative;
    margin-top: 20px;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 20px;
    width: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
    display: block;
    position: absolute;
    left: 0;
}

.checkbox-label:hover .checkmark {
    border-color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.checkbox-label input:checked~.checkmark {
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    border-color: #ff6b6b;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-label input:checked~.checkmark:after {
    display: block;
}

.checkbox-label .checkmark:after {
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.privacy-link {
    color: #ff6b6b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #ff0000;
    text-decoration: underline;
}

.social-links {
    margin-top: 40px;
    text-align: center;
}

.social-links h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.social-icon:hover {
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

.map-section {
    margin-top: 80px;
    text-align: center;
}

.map-section h2 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
}

.map-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-header h1 {
        font-size: 2.5rem;
    }

    .contact-info,
    .contact-form {
        padding: 25px;
    }

    .contact-page {
        padding: 100px 0 60px;
    }
}

#contactForm input{
    margin-bottom: 20px;
}

/* ========== Promo Popup ========== */
.promo-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.promo-popup-modal.hidden {
    display: none;
}

.promo-popup-content {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 2px solid rgba(255, 0, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 0, 0, 0.3);
}

.promo-close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.promo-close-modal:hover {
    color: #ff0000;
    transform: rotate(90deg);
}

.promo-title {
    text-align: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 40px;
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.promo-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 20px;
    /* align-items: start; */
}

.promo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.promo-card-red {
    background: linear-gradient(145deg, rgba(139, 0, 0, 0.2), rgba(80, 0, 0, 0.3));
    border-color: rgba(255, 0, 0, 0.4);
}

.promo-card-red:hover {
    border-color: rgba(255, 0, 0, 0.7);
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.4);
}

.promo-card-blue {
    background: linear-gradient(145deg, rgba(0, 50, 139, 0.2), rgba(0, 30, 80, 0.3));
    border-color: rgba(0, 100, 255, 0.4);
    justify-content: space-between;
	display: flex;
    flex-direction: column;
}

.promo-card-blue:hover {
    border-color: rgba(0, 150, 255, 0.7)!important;
    box-shadow: 0 10px 40px rgba(0, 100, 255, 0.4)!important;
}

.promo-card-blue .promo-badge {
    background: linear-gradient(45deg, #0066ff, #0099ff);
}
.promo-card-blue .promo-btn {
    background: linear-gradient(45deg, #0066ff, #0099ff);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
}
.promo-card-blue .promo-btn:hover {
    background: #fff;
    color: #0066ff;
    border: 2px solid #0066ff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 100, 255, 0.4);
}
.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 0, 0.05), rgba(255, 107, 107, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.promo-card:hover {
    border-color: rgba(255, 0, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
}

.promo-card:hover::before {
    opacity: 1;
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    z-index: 1;
}

.promo-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.promo-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.promo-note {
    color: rgba(255, 200, 0, 0.9);
    font-size: 0.85rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-style: italic;
    font-weight: 500;
}

.promo-pricing-group {
    margin: 20px 0;
    display: flex;
    flex-direction: row;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.promo-pricing-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex: 1;
}

.promo-service-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    text-align: center;
}

.promo-pricing {
    margin: 25px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.promo-old-price {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-size: 1.3rem;
}

.promo-new-price {
    color: #ff0000;
    font-size: 1.8rem;
    font-weight: 700;
}
.promo-card-blue .promo-new-price{
    color:#fff;
}
.promo-btn {
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 15px;
    position: relative;
    z-index: 2;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}


.promo-form-container {
    animation: slideIn 0.3s ease-in-out;
}

.promo-form-container.hidden {
    display: none;
}

.promo-back-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.promo-back-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #ff0000;
}

.promo-form-container h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
}

.promo-form-container .form-group {
    margin-bottom: 20px;
}

.promo-form-container .form-group label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: block;
}

.selected-offer-display {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    padding: 15px;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    margin-top: 8px;
}

.promo-form-container input[type="text"] {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.promo-form-container input[type="text"]:focus {
    outline: none;
    border-color: #ff0000;
    background: rgba(255, 255, 255, 0.08);
}

.btn-send-promo {
    width: 100%;
    padding: 15px;
    background: linear-gradient(45deg, #ff0000, #ff6b6b);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-send-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .promo-popup-content {
        padding: 30px 20px;
        width: 95%;
    }

    .promo-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .promo-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promo-card {
        padding: 25px 20px;
    }

    .promo-card h3 {
        font-size: 1.3rem;
    }

    .promo-new-price {
        font-size: 1.6rem;
    }
    
    .promo-service-label {
        font-size: 0.85rem;
    }
    
    .promo-pricing-group {
        flex-direction: column;
    }
    
    .promo-pricing-item {
        padding: 12px;
    }
}

