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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #2a2a2a 0%, #3a2a2a 100%);
    color: #fff;
}

/* Header Styles */
header {
    background-color: #000;
    padding: 20px 50px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
    transition: transform 0.3s ease;
    flex-wrap: nowrap;
}

header.hidden {
    transform: translateY(-100%);
}

.logo {
    color: #ff0000;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
    text-decoration: none;
}

.logo .v-letter {
    font-size: 48px;
    color: #ff0000;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #ff0000;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff0000;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Notification Bell */
.notification-bell {
    position: relative;
    cursor: pointer;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.notification-bell:hover {
    transform: scale(1.1);
}

.notification-dot {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 10px;
    height: 10px;
    background-color: #ff0000;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

/* Notification Popup */
.notification-popup {
    position: fixed;
    top: 80px;
    right: 50px;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid #ff0000;
    border-radius: 10px;
    padding: 20px;
    min-width: 300px;
    z-index: 1001;
    display: none;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

.notification-popup.active {
    display: block;
    animation: slideIn 0.3s ease;
}

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

.notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 0, 0, 0.3);
}

.notification-header h3 {
    color: #ff0000;
    font-size: 18px;
    margin: 0;
}

.close-notification {
    cursor: pointer;
    color: #fff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.close-notification:hover {
    color: #ff0000;
}

.notification-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.notification-icon {
    font-size: 24px;
}

.notification-text h4 {
    color: #fff;
    font-size: 16px;
    margin: 0 0 5px 0;
}

.notification-text p {
    color: #ccc;
    font-size: 14px;
    margin: 0;
    line-height: 1.4;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* Mobile Menu */
#nav-menu {
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-wrap: nowrap;
    }

    .logo {
        font-size: 24px;
        flex-shrink: 0;
    }

    .logo .v-letter {
        font-size: 36px;
    }

    nav {
        display: none;
    }

    nav.active {
        display: block;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.98);
        padding: 20px;
        z-index: 999;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    nav a {
        font-size: 18px;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-left: auto;
    }

    .hamburger {
        display: flex;
    }

    .notification-popup {
        right: 20px;
        left: 20px;
        min-width: auto;
        top: 75px;
    }

    /* Hero section - same for mobile */
    .hero h1 {
        font-size: 48px;
    }

    .v-letter-hero {
        font-size: 60px;
    }

    .credit-text {
        font-size: 48px;
    }

    .hero p {
        font-size: 18px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 0, 0, 0.8) 100%),
                url('vcredit.jpg') center/cover no-repeat;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.3;
}

.v-letter-hero {
    color: #ff0000;
    font-size: 80px;
    font-weight: bold;
    display: block;
    text-align: center;
}

.credit-text {
    color: #ff0000;
    font-size: 64px;
    font-weight: bold;
    display: block;
    text-align: center;
}

.hero p {
    font-size: 24px;
    margin-bottom: 40px;
    color: #ffd700;
    text-transform: uppercase;
    font-weight: bold;
}

/* Animated Button */
.cta-button {
    position: relative;
    padding: 20px 60px;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 0, 0, 0.6);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button .money-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background: linear-gradient(to top, #ffd700 0%, #ffed4e 100%);
    transition: height 1.5s ease-out;
    z-index: 1;
}

.cta-button.filling .money-fill {
    height: 100%;
}

.cta-button .button-text {
    position: relative;
    z-index: 2;
    transition: opacity 1.5s ease-out;
}

.cta-button.filling .button-text {
    opacity: 0;
}

.cta-button .money-icons {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 1.5s ease-out;
    font-size: 24px;
    color: #000;
    z-index: 3;
}

.cta-button.filling .money-icons {
    opacity: 1;
}

/* Career Section */
.career {
    min-height: 100vh;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.career h2 {
    font-size: 48px;
    margin-bottom: 60px;
    color: #ff0000;
}

/* Company History */
.company-history {
    max-width: 1000px;
    margin-bottom: 80px;
}

.company-history h3 {
    font-size: 32px;
    color: #ff0000;
    margin-bottom: 30px;
    text-align: center;
}

.history-content {
    background: rgba(20, 0, 0, 0.5);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.1);
}

.history-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 20px;
}

.history-content p:last-child {
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    max-width: 1200px;
    width: 100%;
}

.team-section h3 {
    font-size: 32px;
    color: #ff0000;
    margin-bottom: 40px;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background: rgba(20, 0, 0, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.2);
}

.team-photo {
    width: 100%;
    height: 250px;
    background: rgba(255, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.employee-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    font-size: 20px;
    color: #ff0000;
    margin-bottom: 10px;
}

.team-info .position {
    font-size: 16px;
    color: #ccc;
}

/* Information Section */
.information {
    min-height: 100vh;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.information h2 {
    font-size: 48px;
    margin-bottom: 60px;
    color: #ff0000;
}

.information-content {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.info-card {
    background: rgba(20, 0, 0, 0.5);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.2);
}

.info-card h3 {
    font-size: 24px;
    color: #ff0000;
    margin-bottom: 25px;
    text-align: center;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    font-size: 16px;
    color: #ccc;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card ul li::before {
    content: '✓';
    color: #ff0000;
    font-weight: bold;
    font-size: 18px;
}

.info-card ul li:last-child {
    border-bottom: none;
}

/* Contacts Section */
.contacts {
    min-height: 100vh;
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contacts h2 {
    font-size: 48px;
    margin-bottom: 60px;
    color: #ff0000;
}

.contacts-container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    min-width: 250px;
}

.contact-card {
    background: rgba(20, 0, 0, 0.5);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.4);
}

.contact-icon {
    font-size: 36px;
    transition: transform 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.2);
}

.contact-details h4 {
    font-size: 16px;
    color: #ff0000;
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 14px;
    color: #ccc;
}

.map-card {
    padding: 0;
    overflow: hidden;
}

.map-card iframe {
    display: block;
}

/* Contact Form */
.contact-form-container {
    flex: 1;
    max-width: 500px;
    background: rgba(20, 0, 0, 0.5);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.1);
}

.contact-form-container h3 {
    font-size: 28px;
    color: #ff0000;
    margin-bottom: 30px;
    text-align: center;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    font-size: 16px;
    background-color: rgba(30, 30, 30, 0.8);
    border: 1px solid rgba(255, 0, 0, 0.3);
    border-radius: 8px;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

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

.submit-button {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
}

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

.submit-button .button-text {
    position: relative;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.submit-button.loading .button-text {
    opacity: 0;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-button.loading .loading-spinner {
    opacity: 1;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.form-success {
    display: none;
    background-color: rgba(0, 128, 0, 0.2);
    border: 1px solid #00ff00;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

.form-success p {
    color: #00ff00;
    font-size: 16px;
    font-weight: 500;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Addresses Section */
.addresses-section {
    max-width: 1200px;
    width: 100%;
    margin-top: 80px;
}

.addresses-section h3 {
    font-size: 32px;
    color: #ff0000;
    text-align: center;
    margin-bottom: 40px;
}

.addresses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.address-card {
    background: rgba(20, 0, 0, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 0, 0.2);
    box-shadow: 0 8px 32px rgba(255, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    overflow: hidden;
    min-height: 200px;
}

.address-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(255, 0, 0, 0.2);
}

.address-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.address-card h4 {
    font-size: 24px;
    color: #ff0000;
    margin-bottom: 15px;
}

.address-card p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 8px;
}

.address-card .address-phone {
    color: #ff0000;
    font-weight: 500;
    margin-top: 15px;
}

.address-image {
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 0, 0, 0.1);
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background-color: #000;
    border-top: 2px solid #ff0000;
    padding: 40px 50px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 0, 0, 0.2);
}

.footer-logo {
    color: #ff0000;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

.footer-logo .v-letter {
    font-size: 40px;
    color: #ff0000;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff0000;
}

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

.footer-social a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #ff0000;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .logo {
        font-size: 24px;
    }

    .logo .v-letter {
        font-size: 36px;
    }

    nav ul {
        gap: 20px;
    }

    nav a {
        font-size: 14px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .cta-button {
        padding: 15px 40px;
        font-size: 16px;
    }

    .career h2, .contacts h2, .information h2 {
        font-size: 32px;
    }

    .company-history h3, .team-section h3 {
        font-size: 24px;
    }

    .history-content {
        padding: 25px 20px;
    }

    .history-content p {
        font-size: 16px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .information-content {
        flex-direction: column;
        align-items: center;
    }

    .info-card {
        max-width: 100%;
        min-width: auto;
    }

    .contacts-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .contact-info {
        text-align: center;
        min-width: auto;
    }

    .contact-item {
        justify-content: center;
    }

    .contact-form-container {
        max-width: 100%;
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 40px 20px 30px;
    }

    .footer-logo {
        font-size: 24px;
    }

    .footer-logo .v-letter {
        font-size: 36px;
    }

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

    .footer-links a {
        font-size: 16px;
    }

    .footer-social {
        flex-direction: row;
        gap: 25px;
        justify-content: center;
    }

    .footer-social a {
        font-size: 16px;
    }

    .footer-bottom {
        padding-top: 15px;
    }

    .footer-bottom p {
        font-size: 12px;
    }

    .addresses-grid {
        grid-template-columns: 1fr;
    }

    .addresses-section {
        margin-top: 60px;
    }

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

    .address-image {
        width: 100%;
        height: 150px;
    }
}
