:root {
    --quill-navy: #1b1d4d;
    --brand-teal: #d4af37;
    --white: #ffffff
}

.nav-logo {
    max-width: 300px;
    height: auto;
    padding: 1px 0;
    padding-top: 10px
}

.navbar-nav .nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--quill-navy) !important;
    letter-spacing: 0.5px
}

.nav-phone-text,.mobile-phone-link {
    color: var(--brand-teal) !important
}

.btn-quote-brand {
    background-color: var(--brand-teal) !important;
    color: var(--white) !important;
    border-radius: 4px;
    border: none
}

@media (max-width: 991px) {
    .container-fluid {
        display:flex !important;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between
    }

    .navbar-collapse {
        flex-basis: 100%;
        background: #fff;
        margin-top: 10px
    }

    .dropdown-menu {
        background-color: #f9f9f9;
        margin: 10px 0
    }
}

@media (min-width: 992px) {
    .navbar-collapse {
        display:flex !important;
        justify-content: space-between
    }
}

.hero-section {
    background: linear-gradient(to right,#ffffff 40%,rgba(255,255,255,0)),url('your-hero-bg.jpg');
    background-size: cover
}

.hero-title {
    font-family: 'Playfair Display',serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem
}

.highlight {
    color: var(--accent-teal)
}

.btn-primary-forge {
    background-color: var(--accent-teal);
    color: white;
    padding: 15px 40px;
    border-radius: 4px
}

@media (max-width: 992px) {
    .hero-title {
        font-size:2.8rem
    }

    .navbar-brand img {
        height: 50px
    }
}

body .collapse {
    visibility: unset
}

a.navbar-brand.me-0 {
}

a.navbar-brand.me-0 img {
    max-width: 200px
}

nav.navbar.navbar-expand-lg.navbar-light.bg-white.sticky-top.shadow-sm.py-3 {
    padding: 0 !important
}

ul.navbar-nav.mx-auto.text-center.py-3.py-lg-0 li {
    padding: 0 1rem
}

body .dropdown-item:hover {
    color: #fff;
    background-color: #d4af37
}

.footer {
    background: linear-gradient(135deg,#1a1a2e 0%,#2c3e50 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,#67c3d4,#ff6b9d,#67c3d4);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    will-change: transform
}

@keyframes gradientShift {
    0%,100% {
        transform: translateX(0%)
    }

    50% {
        transform: translateX(-50%)
    }
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%,rgba(103,195,212,0.1) 0%,transparent 50%),radial-gradient(circle at 80% 50%,rgba(255,107,157,0.1) 0%,transparent 50%);
    pointer-events: none
}

.footer .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    position: relative;
    z-index: 1
}

.footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 50px;
    margin-bottom: 60px
}

.footer .footer-column h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 15px
}

.footer .footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg,#67c3d4,#ff6b9d);
    border-radius: 2px
}

.footer .footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.footer .footer-column ul li {
    margin-bottom: 12px
}

.footer .footer-column ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px
}

.footer .footer-column ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    opacity: 1;
    transition: all 0.3s ease
}

.footer .footer-column ul li a:hover {
    color: #67c3d4;
    padding-left: 25px
}

.footer .footer-column ul li a:hover::before {
    opacity: 1;
    left: 5px
}

.footer .contact-section {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center
}

.footer .contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.footer .contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff
}

.footer .contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255,255,255,0.9);
    font-size: 1.05rem
}

.footer .contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg,#67c3d4,#5ab8ca);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease
}

.footer .contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 5px 15px rgba(103,195,212,0.5)
}

.footer .contact-item a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s ease
}

.footer .contact-item a:hover {
    color: #67c3d4
}

.footer .payment-section {
    text-align: center
}

.footer .payment-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px
}

.footer .payment-title i {
    color: #67c3d4;
    font-size: 1.4rem
}

.footer .payment-cards {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.footer .payment-card {
    width: 55px;
    height: 38px;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2)
}

.footer .payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3)
}

.footer .payment-card i {
    font-size: 1.8rem
}

.footer .payment-card.visa i {
    color: #1A1F71
}

.footer .payment-card.mastercard i {
    color: #EB001B
}

.footer .payment-card.amex i {
    color: #006FCF
}

.footer .payment-card.discover i {
    color: #FF6000
}

.footer .payment-card.paypal i {
    color: #003087
}

.footer .payment-card.apple-pay i {
    color: #000000
}

.footer .ssl-badge {
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px
}

.footer .ssl-badge i {
    color: #67c3d4
}

.footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 40px 40px 30px;
    position: relative;
    z-index: 1
}

.footer .footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 30px;
    align-items: center
}

.footer .footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.footer .footer-logo {
    max-width: 180px;
    height: auto;
    transition: all 0.3s ease;
}

.footer .footer-logo {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(103,195,212,0.5));
}

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

.footer .social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid transparent
}

.footer .social-link:hover {
    background: linear-gradient(135deg,#67c3d4,#ff6b9d);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(103,195,212,0.3)
}

.footer .footer-center {
    text-align: center
}

.footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
    flex-wrap: wrap
}

.footer .footer-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative
}

.footer .footer-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: #67c3d4;
    transition: width 0.3s ease
}

.footer .footer-link:hover {
    color: #67c3d4
}

.footer .footer-link:hover::after {
    width: 100%
}

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

.footer .footer-right {
    text-align: right
}

.footer .trust-badges {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center
}

.footer .trust-badge {
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    gap: 8px
}

.footer .trust-badge i {
    color: #67c3d4
}

@media (max-width: 1024px) {
    .footer .footer-grid {
        grid-template-columns:repeat(2,1fr);
        gap: 40px
    }

    .footer .footer-bottom-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center
    }

    .footer .footer-logo-section,.footer .footer-right {
        justify-content: center;
        align-items: center
    }

    .footer .social-links,.footer .trust-badges {
        justify-content: center
    }
}

@media (max-width: 768px) {
    .footer .footer-container {
        padding:60px 20px 30px
    }

    body .hero .hero-content h1 {
        font-size: 30px
    }

    body .hero-subtitle {
        FONT-SIZE: 16PX
    }

    body .stat-number {
        FONT-SIZE: 24PX
    }

    body .stat-item {
        padding: 15px
    }

    body .timeline-number {
        width: 30px;
        height: 30px;
        font-size: 1rem
    }

    body .timeline-item {
        grid-template-columns: 30px 1fr
    }

    body .timeline-item:not(:last-child)::after {
        left: 15px !important
    }

    body .platform-card {
        width: 42%;
        float: left;
        margin: 0 10px;
        margin-bottom: 30px
    }

    body .platforms-grid {
        display: block
    }

    body .platform-logo h5 {
        font-size: 16px
    }

    body .platform-card h5 {
        font-size: 15px
    }

    .footer .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px
    }

    .footer .contact-section {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .footer .payment-section {
        margin-top: 20px
    }

    .footer .footer-bottom {
        padding: 30px 20px 20px
    }

    .footer .footer-links {
        flex-direction: column;
        gap: 15px
    }

    .footer .trust-badges {
        flex-direction: column;
        width: 100%
    }

    .footer .trust-badge {
        width: 100%;
        justify-content: center
    }
}

@media (max-width: 480px) {
    .footer .footer-container {
        padding:40px 15px 20px
    }

    .footer .footer-column h4 {
        font-size: 1.2rem
    }

    .footer .newsletter-title {
        font-size: 1.5rem
    }

    .footer .newsletter-subtitle {
        font-size: 1rem
    }
}

.footer .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(103,195,212,0.3);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
    will-change: transform
}

.footer .particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s
}

.footer .particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 3s
}

.footer .particle:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-delay: 6s
}

@keyframes float {
    0%,100% {
        transform: translateY(0) translateX(0)
    }

    33% {
        transform: translateY(-30px) translateX(20px)
    }

    66% {
        transform: translateY(20px) translateX(-20px)
    }
}

.trigger-btn {
    padding: 18px 45px;
    background: linear-gradient(135deg,#67c3d4 0%,#5ab8ca 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 10px 30px rgba(103,195,212,0.4);
    transition: all 0.3s ease
}

.trigger-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(103,195,212,0.6)
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease
}

.popup-overlay.active {
    display: flex
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.popup-container {
    background: white;
    border-radius: 25px;
    max-width: 1200px;
    width: 95%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
    display: grid;
    grid-template-columns: 45% 55%;
    position: relative;
    animation: slideUp 0.4s ease
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2)
}

.close-btn:hover {
    background: #ff6b9d;
    color: white;
    transform: rotate(90deg)
}

.popup-left {
    background: linear-gradient(135deg,#1a1a2e 0%,#2c3e50 100%);
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.popup-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%,rgba(103,195,212,0.2) 0%,transparent 70%);
    pointer-events: none
}

.popup-left-content {
    width: 100%;
    position: relative;
    z-index: 1
}

.popup-left h2 {
    color: white;
    font-size: 1.9rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
    line-height: 1.2
}

.popup-left h2 .highlight {
    background: linear-gradient(135deg,#67c3d4,#ff6b9d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 12px 0
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 14px 10px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease
}

.stat-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-3px)
}

.stat-number {
    font-size: 1.9rem;
    font-weight: 800;
    color: #67c3d4;
    margin-bottom: 4px
}

.stat-label {
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 500
}

.benefits-list {
    list-style: none;
    margin-top: 12px;
    padding: 0
}

.benefits-list li {
    color: rgba(255,255,255,0.95);
    font-size: 0.95rem;
    padding: 9px 14px;
    margin-bottom: 7px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 4px solid #67c3d4;
    transition: all 0.3s ease
}

.benefits-list li:hover {
    background: rgba(255,255,255,0.12);
    transform: translateX(5px)
}

.benefits-list li i {
    color: #67c3d4;
    font-size: 1.1rem;
    min-width: 20px
}

.decorative-icon {
    font-size: 4rem;
    color: rgba(103,195,212,0.2);
    text-align: center;
    margin-bottom: 10px;
    animation: pulse 3s ease-in-out infinite
}

@keyframes pulse {
    0%,100% {
        transform: scale(1);
        opacity: 0.2
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3
    }
}

.popup-right {
    padding: 40px 35px;
    overflow-y: auto;
    max-height: 90vh;
    display: flex;
    flex-direction: column
}

.popup-right::-webkit-scrollbar {
    width: 8px
}

.popup-right::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px
}

.popup-right::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg,#67c3d4,#ff6b9d);
    border-radius: 10px
}

.form-header {
    margin-bottom: 25px
}

.form-header h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    font-weight: 800;
    margin-bottom: 5px
}

.form-header p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.4
}

.form-group {
    margin-bottom: 18px
}

.form-group label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem
}

.form-group label .required {
    color: #ff6b9d;
    margin-left: 3px
}

.form-input,.form-textarea,.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa
}

.form-input:focus,.form-textarea:focus,.form-select:focus {
    outline: none;
    border-color: #67c3d4;
    background: white;
    box-shadow: 0 5px 15px rgba(103,195,212,0.2)
}

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

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

.file-upload {
    position: relative
}

.file-upload input[type="file"] {
    display: none
}

.file-upload-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    border: 2px dashed #67c3d4;
    border-radius: 10px;
    background: #f8f9fa;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2c3e50;
    font-weight: 600;
    font-size: 0.9rem
}

.file-upload-label:hover {
    background: rgba(103,195,212,0.1);
    border-color: #5ab8ca
}

.file-upload-label i {
    font-size: 1.3rem;
    color: #67c3d4
}

.file-name {
    margin-top: 6px;
    font-size: 0.85rem;
    color: #666;
    font-style: italic
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg,#67c3d4 0%,#5ab8ca 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    box-shadow: 0 8px 20px rgba(103,195,212,0.4)
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(103,195,212,0.6)
}

.submit-btn:active {
    transform: translateY(0)
}

.trust-indicators {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
    justify-content: center
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 0.85rem
}

.trust-item i {
    color: #67c3d4;
    font-size: 1.1rem
}

@media (max-width: 1024px) {
    .popup-container {
        grid-template-columns:1fr
    }

    .popup-left {
        padding: 25px 30px
    }

    .decorative-icon {
        font-size: 3rem
    }

    .popup-left h2 {
        font-size: 1.7rem
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin: 12px 0
    }

    .stat-card {
        padding: 14px 10px
    }

    .stat-number {
        font-size: 1.8rem
    }

    .benefits-list li {
        font-size: 0.95rem;
        padding: 9px 12px
    }

    .popup-right {
        padding: 40px 35px
    }
}

@media (max-width: 768px) {
    .popup-container {
        width:100%;
        max-height: 95vh
    }

    .popup-left {
        padding: 20px
    }

    .decorative-icon {
        font-size: 2.5rem;
        margin-bottom: 8px
    }

    .popup-left h2 {
        font-size: 1.5rem;
        margin-bottom: 10px
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin: 10px 0
    }

    .stat-card {
        padding: 12px 8px
    }

    .stat-number {
        font-size: 1.6rem
    }

    .stat-label {
        font-size: 0.8rem
    }

    .benefits-list {
        margin-top: 10px
    }

    .benefits-list li {
        font-size: 0.9rem;
        padding: 8px 10px;
        margin-bottom: 6px
    }

    .benefits-list li i {
        font-size: 1rem
    }

    .popup-right {
        padding: 30px 25px
    }

    .form-header h3 {
        font-size: 1.8rem
    }

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

    .trust-indicators {
        flex-direction: column;
        align-items: center
    }
}

@media (max-width: 480px) {
    .popup-left {
        display:none
    }

    .popup-right {
        padding: 25px 20px
    }

    .form-header h3 {
        font-size: 1.5rem
    }

    .close-btn {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px
    }
}

.login-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease
}

.login-overlay.active {
    display: flex
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.login-container {
    background: white;
    border-radius: 25px;
    max-width: 950px;
    width: 95%;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
    display: grid;
    grid-template-columns: 45% 55%;
    position: relative;
    animation: slideUp 0.4s ease
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #2c3e50;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15)
}

.close-btn:hover {
    background: #ff6b9d;
    color: white;
    transform: rotate(90deg)
}

.login-left {
    background: linear-gradient(135deg,#1a1a2e 0%,#2c3e50 100%);
    padding: 50px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.login-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%,rgba(103,195,212,0.15) 0%,transparent 70%);
    pointer-events: none
}

.login-left-content {
    position: relative;
    z-index: 1
}

.brand-logo {
    text-align: center;
    margin-bottom: 40px
}

.brand-logo i {
    font-size: 4rem;
    color: #67c3d4;
    margin-bottom: 15px
}

.brand-logo h2 {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px
}

.brand-logo p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem
}

.trust-features {
    margin-top: 30px
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border-left: 3px solid #67c3d4;
    transition: all 0.3s ease
}

.trust-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateX(5px)
}

.trust-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: linear-gradient(135deg,#67c3d4,#5ab8ca);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: white;
    flex-shrink: 0
}

.trust-text h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700
}

.trust-text p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    line-height: 1.5
}

.security-badges {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    justify-content: center
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.badge i {
    font-size: 2rem;
    color: #67c3d4
}

.badge span {
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    text-align: center;
    font-weight: 600
}

.login-right {
    padding: 50px 45px;
    background: white
}

.form-header {
    margin-bottom: 15px
}

.form-header h3 {
    font-size: 2rem;
    color: #2c3e50;
    font-weight: 800;
    margin-bottom: 10px
}

.form-header p {
    color: #666;
    font-size: 0.9rem
}

.login-form {
    margin-top: 30px
}

.form-group {
    margin-bottom: 25px
}

.form-group label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem
}

.input-wrapper {
    position: relative
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    pointer-events: none
}

.form-input {
    width: 100%;
    padding: 10px 20px 10px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f8f9fa
}

.form-input:focus {
    outline: none;
    border-color: #67c3d4;
    background: white;
    box-shadow: 0 5px 20px rgba(103,195,212,0.15)
}

.form-input:focus~.input-icon {
    color: #67c3d4
}

.password-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s ease
}

.password-toggle:hover {
    color: #67c3d4
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer
}

.remember-me input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #67c3d4
}

.remember-me label {
    color: #666;
    font-size: 0.9rem;
    cursor: pointer
}

.forgot-link {
    color: #67c3d4;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease
}

.forgot-link:hover {
    color: #5ab8ca
}

.login-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg,#67c3d4 0%,#5ab8ca 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(103,195,212,0.4)
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(103,195,212,0.6)
}

.login-btn:active {
    transform: translateY(0)
}

.divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
    color: #999;
    font-size: 0.9rem
}

.divider::before,.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e0e0e0
}

.divider span {
    padding: 0 15px
}

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.social-btn {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #2c3e50
}

.social-btn:hover {
    border-color: #67c3d4;
    background: #f8f9fa;
    transform: translateY(-2px)
}

.social-btn i {
    font-size: 1.2rem
}

.social-btn.google i {
    color: #DB4437
}

.social-btn.facebook i {
    color: #4267B2
}

.signup-link {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
    color: #666;
    font-size: 0.95rem
}

.signup-link a {
    color: #67c3d4;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease
}

.signup-link a:hover {
    color: #5ab8ca
}

@media (max-width: 1024px) {
    .login-container {
        grid-template-columns:1fr
    }

    .login-left {
        display: none
    }
}

@media (max-width: 768px) {
    .login-right {
        padding:40px 30px
    }

    .form-header h3 {
        font-size: 1.6rem
    }
}

@media (max-width: 480px) {
    .login-right {
        padding:30px 20px
    }

    .social-login {
        grid-template-columns: 1fr
    }
}

select#genre {
    height: 45px
}

footer.footer {
    content-visibility: auto;
    contain-intrinsic-size: 0 400px
}

.nav-logo {
    max-width: 200px;
    height: auto;
    aspect-ratio: 13/5
}

body {
    font-display: swap
}

{
    background: #f0f0f0
}

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

.service-card,.pricing-card,.testimonial-card,.channel-card {
    will-change: auto;
    transform: translateZ(0)
}

.footer-logo {
    max-width: 160px;
    height: auto;
    aspect-ratio: 8/3;
}

@keyframes spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes ping {
    75%,100% {
        transform: scale(2);
        opacity: 0
    }
}

@keyframes pulse {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: 0.5
    }
}

@keyframes bounce {
    0%,100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8,0,1,1)
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0,0,0.2,1)
    }
}

[class*="animate-"] {
    will-change: transform,opacity;
    transform: translateZ(0)
}

.navbar {
    contain: layout style
}

.hero,section {
    contain: layout
}
