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

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Icons", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.47059;
    font-weight: 400;
    letter-spacing: -.022em;
    position: relative;
}

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

/* Trust Badges */
.trust-badges {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 100;
    max-width: calc(100% - 40px);
}

.trust-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-badge svg {
    width: 16px;
    height: 16px;
    fill: #30d158;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    background: radial-gradient(ellipse at top, #1a1a2e 0%, #000000 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 80px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -.005em;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 24px;
    line-height: 1.381;
    font-weight: 400;
    color: #86868b;
    margin-bottom: 30px;
}

.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    color: #86868b;
    font-size: 17px;
}

.price-tag-hero {
    font-size: 36px;
    font-weight: 600;
    color: #0071e3;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-tag-hero .badge {
    background: #30d158;
    color: #000;
    font-size: 14px;
    padding: 5px 15px;
    border-radius: 20px;
}

.hero-order-btn {
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 122, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-order-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 122, 255, 0.4);
}

.hero-order-btn:hover::before {
    left: 100%;
}

.hero-order-btn:active {
    transform: scale(0.98);
}

.hero-watch {
    position: relative;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-watch img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 50px 100px rgba(0, 113, 227, 0.3));
    animation: float 3s ease-in-out infinite;
    border-radius: 30px;
    object-fit: cover;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.watch-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 113, 227, 0.3) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    pointer-events: none;
}

/* Showcase Section */
.showcase {
    padding: 120px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    width: 100%;
    overflow: hidden;
}

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

.showcase-header h2 {
    font-size: 64px;
    line-height: 1.08349;
    font-weight: 600;
    letter-spacing: -.003em;
    margin-bottom: 20px;
}

.showcase-header p {
    font-size: 24px;
    color: #86868b;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.showcase-item {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    transition: transform 0.3s, background 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: #0071e3;
}

.showcase-item img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 20px;
}

.showcase-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.15) 0%, rgba(0, 122, 255, 0.08) 100%);
    border-radius: 30px;
    border: 1px solid rgba(0, 122, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.showcase-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.2) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.showcase-icon svg {
    color: #007AFF;
    transition: transform 0.3s ease;
    z-index: 1;
    position: relative;
}

.showcase-item:hover .showcase-icon {
    border-color: #007AFF;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.2) 0%, rgba(0, 122, 255, 0.1) 100%);
}

.showcase-item:hover .showcase-icon svg {
    transform: scale(1.15) rotate(5deg);
}

.showcase-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.showcase-item p {
    font-size: 17px;
    color: #86868b;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
    background: #0a0a0a;
    width: 100%;
    overflow: hidden;
}

.section-title {
    font-size: 64px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(180deg, #ffffff 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: 620px;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.gallery-overlay span {
    font-size: 21px;
    font-weight: 600;
}

/* Features Section */
.features {
    padding: 120px 0;
    background: #000000;
    width: 100%;
    overflow: hidden;
}

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

.feature-card {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.1) 0%, rgba(0, 113, 227, 0.05) 100%);
    border-radius: 30px;
    border: 1px solid rgba(0, 113, 227, 0.2);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #0071e3;
    background: linear-gradient(135deg, rgba(0, 113, 227, 0.2) 0%, rgba(0, 113, 227, 0.1) 100%);
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0071e3, #0051a2);
    border-radius: 30px;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0071e3, #0051a2);
    border-radius: 30px;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

.feature-icon svg {
    width: 60%;
    height: 60%;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 17px;
    color: #86868b;
    line-height: 1.47059;
}

/* Security Badge */
.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(48, 209, 88, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    color: #30d158;
    font-size: 14px;
    margin-top: 15px;
}

/* Large Feature Section */
.large-feature {
    padding: 120px 0;
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    width: 100%;
    overflow: hidden;
}

.large-feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.large-feature-text h2 {
    font-size: 64px;
    line-height: 1.08349;
    font-weight: 600;
    margin-bottom: 30px;
    background: linear-gradient(180deg, #ffffff 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.large-feature-text p {
    font-size: 24px;
    color: #86868b;
    margin-bottom: 40px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    font-size: 20px;
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    color: #f5f5f7;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #30d158;
    font-size: 24px;
    font-weight: bold;
}

.large-feature-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

/* Specs Section */
.specs {
    padding: 120px 0;
    background: #0a0a0a;
    width: 100%;
    overflow: hidden;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.spec-group {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.spec-group:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #0071e3;
}

.spec-group h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #0071e3;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-row span:first-child {
    color: #86868b;
    font-size: 17px;
}

.spec-row span:last-child {
    font-weight: 500;
    font-size: 17px;
    color: #ffffff;
}

/* Pricing Section */
.pricing {
    padding: 120px 0 80px;
    background: radial-gradient(ellipse at bottom, #1a1a2e 0%, #000000 100%);
    width: 100%;
    overflow: hidden;
}

.price-header {
    text-align: center;
    margin-bottom: 60px;
}

.price-header h2 {
    font-size: 64px;
    font-weight: 600;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-header p {
    font-size: 24px;
    color: #86868b;
}

.price-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #1c1c1e, #2c2c2e);
    padding: 80px 60px;
    border-radius: 40px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
    border: 2px solid #0071e3;
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #0071e3, #30d158, #0071e3);
    border-radius: 40px;
    z-index: -1;
    animation: gradient-rotate 3s linear infinite;
}

@keyframes gradient-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.price-amount {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.currency {
    font-size: 36px;
    color: #86868b;
}

.price {
    font-size: 80px;
    font-weight: 700;
    background: linear-gradient(135deg, #0071e3, #30d158);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.original-price {
    text-decoration: line-through;
    color: #86868b;
    font-size: 24px;
    margin-bottom: 40px;
}

.price-features {
    margin-bottom: 60px;
}

.price-feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-feature:last-child {
    border-bottom: none;
}

.check {
    color: #30d158;
    font-size: 24px;
}

.cta-section {
    background: linear-gradient(135deg, #0071e3, #0051a2);
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cta-text {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.phone-number {
    font-size: 36px;
    font-weight: 700;
}

.warranty-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

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

.warranty-badge svg {
    width: 40px;
    height: 40px;
    fill: #30d158;
}

.warranty-badge span {
    font-size: 14px;
    color: #86868b;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .trust-badges {
        flex-direction: column;
        gap: 10px;
        right: 10px;
        top: 10px;
    }

    .trust-badge {
        font-size: 10px;
        padding: 8px 15px;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 48px;
    }

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

    .hero-watch img {
        max-width: 350px;
    }

    .showcase-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
    }

    .large-feature-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .section-title {
        font-size: 40px;
    }

    .phone-number {
        font-size: 28px;
    }

    .price-card {
        padding: 60px 40px;
    }

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

    .form-group.full-width {
        grid-column: span 1;
    }

    /* Form Mobile Fixes */
    .form-section {
        padding: 50px 15px !important;
    }

    .form-section::before {
        display: none !important;
    }

    .form-section h2 {
        font-size: 32px !important;
        letter-spacing: -1px;
        line-height: 1.2;
    }

    .form-subtitle {
        font-size: 16px !important;
        margin-bottom: 30px !important;
    }

    #contact-form {
        padding: 25px 15px !important;
        border-radius: 20px;
        margin: 0 !important;
        width: 100%;
        box-sizing: border-box;
    }

    .form-grid {
        gap: 18px !important;
        grid-template-columns: 1fr !important;
    }

    .form-group label {
        font-size: 12px !important;
        text-transform: none !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important;
        padding: 14px !important;
        -webkit-appearance: none !important;
        width: 100% !important;
    }

    .form-group select {
        background-position: right 12px center !important;
    }

    .checkbox-wrapper {
        padding: 14px !important;
        gap: 10px;
        align-items: flex-start;
    }

    .checkbox-wrapper input[type="checkbox"] {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .checkbox-wrapper label {
        font-size: 13px !important;
        line-height: 1.4;
    }

    .form-summary {
        padding: 20px !important;
        margin: 25px 0 !important;
    }

    .total-price {
        font-size: 28px !important;
        flex-direction: column;
        gap: 8px;
    }

    .total-price span:first-child {
        font-size: 14px !important;
    }

    .payment-note {
        font-size: 12px !important;
    }

    .submit-button {
        padding: 16px !important;
        font-size: 16px !important;
        width: 100% !important;
    }
}

/* Form Section - Apple Style */
.form-section {
    padding: 100px 20px;
    background: #000000;
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -100%;
    left: -100%;
    background: radial-gradient(circle at center, rgba(0, 122, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.form-section h2 {
    font-size: 56px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #FFFFFF 0%, #999999 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.form-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 21px;
    margin-bottom: 60px;
    font-weight: 400;
}

#contact-form {
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.06) 100%);
    padding: 60px;
    border-radius: 30px;
    backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 16px 18px;
    color: white;
    font-size: 17px;
    transition: all 0.2s ease;
    -webkit-appearance: none;
}

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

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: #007AFF;
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.15),
                inset 0 0 0 1px rgba(0, 122, 255, 0.5);
}

.form-group select {
    cursor: pointer;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23999999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-color: rgba(255, 255, 255, 0.08);
}

.form-group select option {
    background: #1c1c1e;
    color: white;
}

.form-group textarea {
    resize: none;
    font-family: inherit;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 40px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.checkbox-wrapper input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: #007AFF;
    border-radius: 6px;
    margin-top: 2px;
    flex-shrink: 0;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.checkbox-wrapper input[type="checkbox"]:checked {
    background: #007AFF;
    border-color: #007AFF;
}

.checkbox-wrapper input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.checkbox-wrapper label {
    margin-bottom: 0;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    flex: 1;
    line-height: 1.4;
}

.form-summary {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.12) 0%, rgba(0, 122, 255, 0.08) 100%);
    border: 1px solid rgba(0, 122, 255, 0.2);
    border-radius: 20px;
    padding: 32px;
    margin: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.form-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.total-price {
    font-size: 42px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.total-price span:first-child {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

#total-price {
    background: linear-gradient(135deg, #007AFF, #0051D5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.payment-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.payment-note::before {
    content: '✓';
    color: #30d158;
    font-weight: 600;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #007AFF 0%, #0051D5 100%);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

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

.submit-button:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 122, 255, 0.3);
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:active {
    transform: scale(0.98);
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .form-section::before {
        animation: none;
        opacity: 0.3;
    }

    #contact-form {
        padding: 24px 16px;
        background: rgba(18, 18, 18, 0.95);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }

    .form-group select {
        background-size: 12px 8px;
        background-position: right 14px center;
    }
}

/* Form Notifications - Floating Style */
.form-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    padding: 16px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                0 2px 10px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    transform: translateX(450px);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-notification.floating.show {
    transform: translateX(0);
}

@keyframes slideInRight {
    from {
        transform: translateX(450px);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(450px);
    }
}

/* Mobile positioning */
@media (max-width: 768px) {
    .form-notification {
        top: auto;
        bottom: 20px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(150px);
    }

    .form-notification.floating.show {
        transform: translateY(0);
    }
}

.form-notification.success {
    background: linear-gradient(135deg, rgba(48, 209, 88, 0.95), rgba(48, 209, 88, 0.85));
    border: 1px solid rgba(48, 209, 88, 0.5);
    color: white;
}

.form-notification.error {
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.95), rgba(255, 59, 48, 0.85));
    border: 1px solid rgba(255, 59, 48, 0.5);
    color: white;
}

.form-notification.info {
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.95), rgba(0, 122, 255, 0.85));
    border: 1px solid rgba(0, 122, 255, 0.5);
    color: white;
}

.notification-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 16px;
    color: white;
}

.notification-message {
    flex: 1;
    color: white;
}

.notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
