/* style.css v2 - Enhanced Creative UI */
:root {
    /* Light Mode Variables */
    --bg-primary: #ffffff;
    --bg-secondary: #fdfdfd;
    --text-primary: #1d1d1f;
    --text-secondary: #86868b;
    --accent: #0071e3;
    --accent-hover: #0077ed;
    --accent-glow: rgba(0, 113, 227, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.7);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    --error: #ff3b30;
    --success: #34c759;
    --border: #eaeaea;
    --blob-1: #ffd6ff;
    --blob-2: #d6eaff;
    --blob-3: #ffebd6;
}



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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Mesh Gradient Background */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background-color: var(--bg-primary);
}

.color-blob {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.4;
    animation: float 20s infinite alternate ease-in-out;
}

.blob-1 {
    width: 60vw;
    height: 60vw;
    background: var(--blob-1);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.blob-2 {
    width: 50vw;
    height: 50vw;
    background: var(--blob-2);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

.blob-3 {
    width: 40vw;
    height: 40vw;
    background: var(--blob-3);
    top: 30%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(5%, 10%) scale(1.1);
    }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.full-width {
    grid-column: 1 / -1;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.section-title {
    font-size: clamp(1.75rem, 6vw, 3rem);
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: background 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--text-primary);
    text-decoration: none;
    line-height: 1;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.logo-subtitle {
    margin-top: 5px;
    color: var(--text-secondary);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
    flex: 0 1 auto;
}

.language-note {
    flex: 0 0 auto;
    padding: 5px 10px;
    border: 1px solid rgba(0, 113, 227, 0.18);
    border-radius: 980px;
    background: rgba(0, 113, 227, 0.07);
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 600;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Mobile Toggle Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1100;
}

.nav-toggle .hamburger-line {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: left center;
}

/* Active Hamburger lines transforms into X */
.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(2px, -1px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
    width: 0%;
    opacity: 0;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 980px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent);
    color: #ffffff !important;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px var(--accent-glow);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.15rem;
}

.btn-block {
    width: 100%;
    padding: 18px;
    font-size: 1.15rem;
}

.btn-nav {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: visible;
    z-index: 1;
}

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

.hero-text-content {
    flex: 1;
    max-width: 550px;
    text-align: left;
}

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

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent-glow);
    color: var(--accent);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid var(--glass-border);
}

.hero-title {
    font-size: clamp(2.25rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.text-gradient {
    background: linear-gradient(to right, #0071e3, #42a1ff, #0071e3);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.animated-gradient {
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

/* Visual Side Animations */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    opacity: 0.6;
    animation: pulse 6s infinite alternate;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: #0071e3;
    top: 10%;
    right: 20%;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: #9900ff;
    bottom: 0;
    left: 10%;
    animation-delay: -3s;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    background: var(--bg-secondary);
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
}

.float-animation {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    padding: 12px 20px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: floating 5s ease-in-out infinite alternate;
    z-index: 3;
}

.badge-1 {
    top: 10%;
    left: -10%;
    animation-delay: -1s;
}

.badge-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: -2s;
}

.icon {
    font-size: 1.2rem;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(30px);
    -webkit-backdrop-filter: saturate(180%) blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--glass-shadow);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
}

/* Services */
.services {
    padding: 100px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.hover-lift {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(0, 113, 227, 0.03) 100%);
}

.pricing-header {
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(30px);
    -webkit-backdrop-filter: saturate(180%) blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.featured-card {
    border: 2px solid var(--accent);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 113, 227, 0.15);
}

.featured-card.hover-lift:hover {
    transform: scale(1.05) translateY(-10px);
}

.brand-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
    opacity: 0.5;
    transition: all 0.4s ease;
}

.brand-swellpro .brand-glow {
    background: #00d2ff;
}

.brand-dji .brand-glow {
    background: #86868b;
}

.brand-autel .brand-glow {
    background: #ff6600;
}

.pricing-card:hover .brand-glow {
    transform: scale(1.5);
    opacity: 0.8;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.brand-name {
    font-size: 1.8rem;
    margin: 10px 0 15px;
    color: var(--text-primary);
}

.brand-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    flex-grow: 1;
}

.price-box {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.price-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
}

.price-subtext {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.feature-list .check {
    color: var(--success);
    font-weight: bold;
}

/* Google Reviews Widget */
.reviews-widget-section {
    padding: 100px 0;
    background: transparent;
}

.reviews-widget-section .sk-ww-google-reviews,
.reviews-widget-section iframe {
    background: transparent !important;
}

/* Form Section */
.form-section {
    padding: 100px 0 140px;
}

.form-section-title {
    font-size: 1.4rem;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

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

.helper-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* Floating Labels */
.floating-group {
    position: relative;
    margin-bottom: 10px;
}

.floating-input {
    width: 100%;
    padding: 24px 16px 10px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s ease;
    outline: none;
}

.floating-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
    background-color: transparent;
}

.floating-label {
    position: absolute;
    left: 16px;
    top: 17px;
    font-size: 1rem;
    color: var(--text-secondary);
    pointer-events: none;
    transition: all 0.2s ease;
    transform-origin: left top;
}

.floating-input:focus~.floating-label,
.floating-input:not(:placeholder-shown)~.floating-label {
    transform: translateY(-10px) scale(0.75);
    color: var(--accent);
    font-weight: 500;
}

.floating-input:-webkit-autofill~.floating-label {
    transform: translateY(-10px) scale(0.75);
}

/* Static Form Elements */
.static-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.custom-select {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background-color: rgba(255, 255, 255, 0.8);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    appearance: none;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.custom-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

/* Custom Radio & Checkbox */
.radio-options {
    display: flex;
    gap: 24px;
    margin-top: 8px;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
}

.radio-label input,
.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-custom,
.checkbox-custom {
    height: 22px;
    width: 22px;
    border: 2px solid var(--border);
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
}

.checkbox-custom {
    border-radius: 6px;
}

.radio-label:hover input~.radio-custom,
.checkbox-label:hover input~.checkbox-custom {
    border-color: var(--accent);
}

.radio-label input:checked~.radio-custom,
.checkbox-label input:checked~.checkbox-custom {
    background-color: var(--accent);
    border-color: var(--accent);
}

.radio-custom::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    transform: scale(0);
    transition: transform 0.2s ease;
}

.radio-label input:checked~.radio-custom::after {
    transform: scale(1);
}

.checkbox-custom::after {
    content: "";
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
    margin-bottom: 3px;
}

.checkbox-label input:checked~.checkbox-custom::after {
    transform: rotate(45deg) scale(1);
}

/* Consent Area */
.consent-group {
    background: rgba(134, 134, 139, 0.05);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.consent-text {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* File Upload Drag & Drop */
.upload-zone {
    border: 2px dashed var(--border);
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(134, 134, 139, 0.02);
    position: relative;
}

.upload-zone:hover,
.upload-zone.dragover {
    border-color: var(--accent);
    background: var(--accent-glow);
}

.upload-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    pointer-events: none;
}

.upload-prompt {
    font-size: 1.1rem;
    font-weight: 500;
    pointer-events: none;
}

.upload-trigger {
    color: var(--accent);
    cursor: pointer;
}

.upload-status {
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    pointer-events: none;
}

.upload-limit {
    margin-top: 4px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    opacity: 0.7;
    pointer-events: none;
}

.hidden-file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

/* Validation */
.required {
    color: var(--error);
}

.error-message {
    color: var(--error);
    font-size: 0.8rem;
    margin-top: 4px;
    display: block;
    min-height: 16px;
    font-weight: 500;
}

.form-group.has-error .floating-input,
.form-group.has-error .custom-select,
.form-group.has-error .upload-zone {
    border-color: var(--error);
}

.form-group.has-error .floating-label {
    color: var(--error);
}

.hp-field {
    display: none;
}

/* Spinner & Feedback */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hidden {
    display: none !important;
}

.form-feedback {
    margin-top: 24px;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    animation: fadeUp 0.3s ease;
}

.form-feedback.success {
    background-color: rgba(52, 199, 89, 0.1);
    color: var(--success);
    border: 1px solid rgba(52, 199, 89, 0.2);
}

.form-feedback.error {
    background-color: rgba(255, 59, 48, 0.1);
    color: var(--error);
    border: 1px solid rgba(255, 59, 48, 0.2);
}

/* Footer */
.footer {
    padding: 40px 0;
}

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

.footer p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-top: 4px;
}

.footer-address {
    margin-top: 12px;
    font-weight: 500;
    color: var(--text-primary) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

/* Service Center Address Card */
.address-card-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 30px;
}

.address-card {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 28px;
    border-radius: 980px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    background: var(--glass-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.address-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.address-card-icon {
    font-size: 1.6rem;
}

.address-card-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.address-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.address-card-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

/* File List UI */
.file-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.file-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 16px;
    border-radius: 8px;
    animation: fadeUp 0.3s ease forwards;
}

.file-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-name {
    font-size: 0.9rem;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 85%;
}

.file-remove {
    background: none;
    border: none;
    color: #ff4d4f;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    border-radius: 50%;
    transition: background 0.2s;
}

.file-remove:hover {
    background: rgba(255, 77, 79, 0.1);
}

.file-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.file-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--primary);
    transition: width 0.4s ease, background 0.3s ease;
}

.file-progress-fill.completed {
    background: #4caf50;
}

/* Brand Logos Showcase Banner */
.brand-logos-banner {
    padding: 20px 0 60px;
    position: relative;
    z-index: 5;
}

.banner-header {
    margin-bottom: 30px;
}

.banner-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 113, 227, 0.08);
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: 980px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logo-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
}

.brand-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-decoration: none;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-logo-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 113, 227, 0.3);
}

.logo-item-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
    opacity: 0.25;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.brand-logo-item:hover .logo-item-glow {
    opacity: 0.6;
    transform: scale(1.3);
}

.swellpro-glow {
    background: #00d2ff;
    top: -30px;
    left: -30px;
}

.dji-glow {
    background: #0071e3;
    bottom: -30px;
    right: -30px;
}

.autel-glow {
    background: #ff3322;
    top: -30px;
    right: -30px;
}

.showcase-svg,
.showcase-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    max-height: 90px;
    object-fit: contain;
    margin-bottom: 18px;
    transition: transform 0.3s ease;
}

.dji-showcase-svg {
    max-width: 230px;
    height: 80px;
}

.swellpro-showcase-img {
    max-width: 260px;
    max-height: 78px;
}

.autel-showcase-img {
    max-width: 270px;
    max-height: 82px;
}

.brand-logo-item:hover .showcase-svg,
.brand-logo-item:hover .showcase-img {
    transform: scale(1.08);
}

.brand-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.02em;
}

/* Pricing Card Logo Badges */
.card-logo-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    min-height: 68px;
}

.card-brand-svg,
.card-brand-img {
    height: auto;
    max-height: 75px;
    max-width: 270px;
    width: auto;
    object-fit: contain;
}

.dji-svg {
    max-width: 195px;
    height: 62px;
}

.swellpro-card-img {
    max-height: 120px;
    max-width: 220px;
}

.autel-card-img {
    max-height: 105px;
    max-width: 230px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-text-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .badge-1 {
        left: 0;
    }

    .badge-2 {
        right: 0;
    }

    .featured-card {
        transform: scale(1);
    }

    .featured-card.hover-lift:hover {
        transform: translateY(-10px);
    }

    .logo-showcase-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        gap: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 24px;
    }

}

@media (max-width: 768px) {
    .services {
        padding: 10px 0;
    }

    .reviews-widget-section {
        padding: 60px 0;
    }

    .form-section {
        padding: 50px 0 50px;
    }

    .form-submit {
        padding-top: 50px;
    }

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

    .logo {
        line-height: 1;
    }

    .logo-title {
        font-size: clamp(1.05rem, 4vw, 1.35rem);
    }

    .logo-subtitle {
        margin-top: 4px;
        font-size: 0.58rem;
    }

    .nav-brand {
        gap: 8px;
    }

    .language-note {
        padding: 4px 7px;
        font-size: 0.66rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 69px;
        left: 0;
        right: 0;
        background: var(--glass-bg);
        backdrop-filter: saturate(180%) blur(30px);
        -webkit-backdrop-filter: saturate(180%) blur(30px);
        padding: 40px 24px;
        gap: 20px;
        z-index: 999;
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        align-items: center;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 1.15rem;
        width: 100%;
        text-align: center;
        padding: 8px 0;
    }

    .nav-links .btn-nav {
        width: 100%;
        max-width: 280px;
        margin-top: 8px;
        padding: 12px;
        font-size: 1rem;
    }

    .hero {
        padding: 140px 0 60px;
    }

    .form-wrapper {
        padding: 24px 16px;
    }

    .consent-group {
        padding: 16px;
    }

    .logo-showcase-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .nav-brand {
        gap: 7px;
    }

    .language-note {
        padding: 4px 6px;
        font-size: 0.6rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .floating-badge {
        display: none !important;
    }

    .address-card {
        padding: 12px 20px;
        border-radius: 20px;
        width: 100%;
        flex-direction: column;
        text-align: center;
    }

    .address-card-info {
        text-align: center;
    }

}
