@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
:root {
    --dark-blue: #0d111a;
    --gold: #f0bc41;
    --purple: #9c27b0;
    --dark-card: #171e2e;
    --dark-card-purple: #1a162e;
    --text-light: #ffffff;
    --text-gray: #9ba3af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--dark-blue);
    color: var(--text-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-content {
    position: relative;
    z-index: 2;
}

.animated-title {
    font-size: 3.5rem;
    margin-top: 5rem;
    margin-bottom: 5px;
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s forwards 0.3s;
}

.animated-text {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-gray);
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gold-text {
    color: var(--gold);
}

.purple-text {
    color: var(--purple);
}

/* Animated Elements */
.floating-shape {
    position: absolute;
    opacity: 0.1;
    z-index: 1;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    border-radius: 31% 69% 57% 43% / 35% 38% 62% 65%;
    background: var(--gold);
    animation: float 15s ease-in-out infinite;
}

.shape-2 {
    bottom: 15%;
    right: 8%;
    width: 180px;
    height: 180px;
    border-radius: 57% 43% 31% 69% / 62% 65% 35% 38%;
    background: var(--gold);
    animation: float 18s ease-in-out infinite alternate;
}

.shape-3 {
    top: 40%;
    right: 20%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gold);
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Service Cards */
.service-category {
    max-width: 1500px;
    margin: 0 auto;
    overflow: hidden;
}

.category-title {
    display: flex;
    align-items: center;
    margin-top: 80px;
    margin-bottom: 40px;
}

.category-title i {
    font-size: 24px;
    margin-right: 15px;
    color: var(--gold);
}

.category-title h3 {
    font-size: 1.8rem;
    font-weight: 600;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
}

.card-icon {
    position: absolute;
    font-size: 150px;
    color: rgba(240, 188, 65, 0.03);
    z-index: 0;
    pointer-events: none;
    transition: all 0.5s;
}

.icon-basic {
    top: 10%;
    left: 10%;
}

.icon-premium {
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
}

.icon-enterprise {
    top: 10%;
    right: 10%;
}

.pricing-card {
    background-color: var(--dark-card);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-left: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border-left: 3px solid var(--gold);
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(240, 188, 65, 0.08), transparent);
    transition: height 0.4s ease;
    z-index: 0;
}

.pricing-card:hover::after {
    height: 100%;
}

.pricing-card * {
    position: relative;
    z-index: 1;
}

.card-header {
    margin-bottom: 25px;
}

.card-header h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.card-header p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.5;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    margin: 25px 0;
    display: flex;
    align-items: baseline;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-gray);
    margin-left: 5px;
}

.features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    line-height: 1.5;
    transition: transform 0.3s;
}

.pricing-card:hover .feature-item {
    transform: translateX(5px);
    transition-delay: calc(0.05s * var(--item-index, 0));
}

.feature-item i {
    color: var(--gold);
    margin-right: 10px;
    font-size: 18px;
    padding-top: 3px;
    transition: all 0.3s;
}

.pricing-card:hover .feature-item i {
    transform: scale(1.2);
}

.cta-button {
    display: inline-block;
    background-color: var(--gold);
    color: var(--dark-blue);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:hover {
    background-color: #dfaa2c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(240, 188, 65, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s;
    z-index: -1;
}

.cta-button:hover::before {
    left: 100%;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--gold);
    color: var(--dark-blue);
    padding: 5px 40px;
    font-weight: 600;
    font-size: 0.85rem;
    transform: rotate(45deg);
}

/* E-commerce */
.ecommerce-section .category-title i,
.ecommerce-section .category-title h3 .emoji {
    color: var(--purple);
}

.ecommerce-section .pricing-card {
    border-left: 3px solid transparent;
}

.ecommerce-section .pricing-card:hover {
    border-left: 3px solid var(--purple);
}

.ecommerce-section .pricing-card::after {
    background: linear-gradient(to bottom, rgba(156, 39, 176, 0.08), transparent);
}

.ecommerce-section .card-icon {
    color: rgba(156, 39, 176, 0.03);
}

.ecommerce-section .price {
    color: var(--purple);
}

.ecommerce-section .feature-item i {
    color: var(--purple);
}

.ecommerce-section .cta-button {
    background-color: var(--purple);
}

.ecommerce-section .cta-button:hover {
    background-color: #7b1fa2;
    box-shadow: 0 5px 15px rgba(156, 39, 176, 0.4);
}

.ecommerce-section .card-badge {
    background-color: var(--purple);
}

/* Floating shapes */
.ecommerce-section .shape-1,
.ecommerce-section .shape-2,
.ecommerce-section .shape-3 {
    background: var(--purple);
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .shape-1, .shape-2, .shape-3 {
        display: none;
    }
}

/* service section */
.maintenance-section .category-title i {
    color: #36b9cc; 
}

.maintenance-section .maintenance-card {
    border-left: 3px solid transparent;
}

.maintenance-section .maintenance-card:hover {
    border-left: 3px solid #36b9cc;
}

.maintenance-section .price {
    color: #36b9cc;
}

.maintenance-section .feature-item i {
    color: #36b9cc;
}

.maintenance-section .card-icon {
    color: rgba(54, 185, 204, 0.03);
}

.maintenance-section .cta-button {
    background-color: #36b9cc;
}

.maintenance-section .cta-button:hover {
    background-color: #2a91a3;
    box-shadow: 0 5px 15px rgba(54, 185, 204, 0.4);
}

.maintenance-section .card-badge {
    background-color: #36b9cc;
}

.maintenance-section .pricing-card::after {
    background: linear-gradient(to bottom, rgba(54, 185, 204, 0.08), transparent);
}

/* egyedi animaciok karbantartas*/
.maintenance-section .pricing-card:hover .feature-item i {
    transform: rotate(360deg) scale(1.2);
    transition: transform 0.5s ease-in-out;
}

/* Egyedi háttérelem karbantartas*/
.maintenance-section {
    position: relative;
}

.maintenance-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(54, 185, 204, 0.05) 0%, rgba(54, 185, 204, 0) 70%);
    border-radius: 50%;
    z-index: -1;
}

        /* arculat */

        :root {
            --zsd-primary-color: #e06c75;
            --zsd-secondary-color: #ff9e64;
            --zsd-text-dark: #1e293b;
            --zsd-text-light: #f8fafc;
            --zsd-bg-dark: #0f172a;
            --zsd-accent-color: #dd6e78;
        }

        .zsd-all * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        .zsd-all {
            background-color: var(--zsd-bg-dark);
            color: var(--zsd-text-light);
        }

        .zsd-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 20px;
        }

        .zsd-partner-section {
            padding: 60px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        /* Animált háttér elemek */
        .zsd-bg-animation {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--zsd-primary-color), var(--zsd-secondary-color));
            opacity: 0.03;
            z-index: 0;
            animation: zsd-float 15s infinite alternate ease-in-out;
        }

        .zsd-bg-circle-1 {
            width: 400px;
            height: 400px;
            top: -100px;
            left: -100px;
            animation-delay: 0s;
        }

        .zsd-bg-circle-2 {
            width: 300px;
            height: 300px;
            bottom: -50px;
            right: -50px;
            animation-delay: 2s;
        }

        .zsd-bg-circle-3 {
            width: 200px;
            height: 200px;
            top: 50%;
            right: 10%;
            animation-delay: 4s;
        }

        @keyframes zsd-float {
            0% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, -15px) rotate(5deg); }
            50% { transform: translate(-15px, 20px) rotate(-5deg); }
            75% { transform: translate(15px, 15px) rotate(3deg); }
            100% { transform: translate(0, 0) rotate(0deg); }
        }

        .zsd-partner-header {
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .zsd-partner-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--zsd-text-light);
            animation: zsd-fadeInDown 1s ease-out;
            position: relative;
            display: inline-block;
        }

        .zsd-partner-title::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--zsd-primary-color), var(--zsd-secondary-color));
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            animation: zsd-expandWidth 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
        }

        @keyframes zsd-expandWidth {
            from { width: 0; }
            to { width: 80px; }
        }

        @keyframes zsd-fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .zsd-partner-subtitle {
            font-size: 1.2rem;
            font-weight: 300;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #94a3b8;
            animation: zsd-fadeIn 1.5s ease-out;
        }

        @keyframes zsd-fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .zsd-partner-info {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            animation: zsd-fadeInUp 1s ease-out;
        }

        @keyframes zsd-fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .zsd-partner-text {
            font-size: 1.4rem;
            font-weight: 600;
            margin-right: 15px;
            color: var(--zsd-primary-color);
        }

        .zsd-partner-logo {
            width: 120px;
            height: auto;
        }

        .zsd-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 40px;
            position: relative;
            z-index: 2;
        }

        .zsd-service-card {
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 30px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: zsd-fadeIn 0.6s forwards;
            animation-delay: calc(var(--index) * 0.1s);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(5px);
        }

        .zsd-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(to bottom, var(--zsd-primary-color), var(--zsd-secondary-color));
            transition: height 0.5s ease;
        }

        .zsd-service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
            background-color: rgba(255, 255, 255, 0.08);
        }

        .zsd-service-card:hover::before {
            height: 100%;
        }

        @keyframes zsd-fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* SVG ikon stílusok */
        .zsd-service-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--zsd-primary-color), var(--zsd-secondary-color));
            color: var(--zsd-text-light);
            transition: all 0.5s;
            position: relative;
            z-index: 2;
        }

        .zsd-service-card:hover .zsd-service-icon {
            transform: rotateY(360deg);
        }

        /* SVG ikon animációk */
        .zsd-service-icon svg {
            width: 30px;
            height: 30px;
            transition: all 0.3s;
        }

        .zsd-service-icon svg path,
        .zsd-service-icon svg rect,
        .zsd-service-icon svg circle,
        .zsd-service-icon svg line,
        .zsd-service-icon svg polyline {
            fill: var(--zsd-text-light);
            stroke: var(--zsd-text-light);
            stroke-width: 1;
            transition: all 0.3s;
        }

        .zsd-service-card:hover .zsd-service-icon svg {
            transform: scale(1.2);
        }

        .zsd-service-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--zsd-text-light);
            transition: all 0.3s;
            position: relative;
            display: inline-block;
        }

        .zsd-service-card:hover .zsd-service-title {
            transform: translateX(10px);
            color: var(--zsd-primary-color);
        }

        .zsd-service-description {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #94a3b8;
            margin-bottom: 20px;
            min-height: 80px;
            transition: all 0.3s;
        }

        .zsd-service-card:hover .zsd-service-description {
            color: #cbd5e1;
        }

        .zsd-service-tag {
            display: inline-block;
            padding: 5px 15px;
            background: linear-gradient(135deg, var(--zsd-primary-color), var(--zsd-secondary-color));
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--zsd-text-light);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .zsd-service-tag::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.6s;
        }

        .zsd-service-card:hover .zsd-service-tag::before {
            left: 100%;
        }

        .zsd-btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--zsd-accent-color), var(--zsd-secondary-color));
            color: var(--zsd-text-light);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.4s;
            margin-top: 40px;
            position: relative;
            overflow: hidden;
            z-index: 2;
            animation: zsd-pulse 2s infinite;
        }

        @keyframes zsd-pulse {
            0% { box-shadow: 0 0 0 0 rgba(224, 108, 117, 0.4); }
            70% { box-shadow: 0 0 0 15px rgba(224, 108, 117, 0); }
            100% { box-shadow: 0 0 0 0 rgba(224, 108, 117, 0); }
        }

        .zsd-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 20px rgba(224, 108, 117, 0.3);
            animation: none;
        }

        .zsd-btn::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: all 0.6s;
        }

        .zsd-btn:hover::before {
            left: 100%;
        }

        /* Egér követő animáció */
        .zsd-cursor-follower {
            position: fixed;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(224, 108, 117, 0.1);
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 999;
            transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
            display: none;
        }

        .zsd-cursor-follower.active {
            width: 60px;
            height: 60px;
            background: rgba(224, 108, 117, 0.2);
        }

/* egyéb kiegészítő szolgáltatások */

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #0d1117;
    color: white;
  }

  /* Árak szekció */
  .price_section_container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 100px 20px;
  }

  .price_section_header {
    text-align: center;
    margin-bottom: 60px;
  }

  .price_section_title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
  }

  .price_section_title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ff6b6b;
  }

  .price_section_subtitle {
    font-size: 18px;
    color: #adb5bd;
    max-width: 600px;
    margin: 0 auto;
  }

  .price_cards_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .price_card {
    background: linear-gradient(145deg, #131a27, #1a2438);
    border-radius: 16px;
    padding: 40px 30px;
    width: 450px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    display: flex;
    flex-direction: column;
    z-index: 1;
  }

  .price_card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 107, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .price_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .price_card:hover::before {
    opacity: 1;
  }

  .price_card_popular {
    border: 2px solid #ff6b6b;
    position: relative;
  }

  .price_card_popular_badge {
    position: absolute;
    top: 0;
    right: 30px;
    background-color: #ff6b6b;
    color: white;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
  }

  .price_card_icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
  }

  .price_card_icon svg {
    width: 30px;
    height: 30px;
    fill: #ff6b6b;
  }

  .price_card_title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
  }

  .price_card_price {
    font-size: 38px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
  }

  .price_card_period {
    font-size: 16px;
    color: #adb5bd;
    margin-bottom: 30px;
  }

  .price_card_features {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    flex-grow: 1;
  }

  .price_card_features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(173, 181, 189, 0.1);
    position: relative;
    padding-left: 28px;
    color: #f8f9fa;
  }

  .price_card_features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
  }

  .price_card_button {
    background: linear-gradient(to right, #ff6b6b, #f06060);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
  }

  .price_card_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  }

  /* Animációk */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4);
    }
    30% {
      box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
    50% {
      box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
  }

  .price_card {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
  }

  .price_card:nth-child(1) {
    animation-delay: 0.2s;
  }

  .price_card:nth-child(2) {
    animation-delay: 0.4s;
  }

  .price_card:nth-child(3) {
    animation-delay: 0.6s;
  }



  /* Reszponzivitás */
  @media (max-width: 992px) {
    .price_cards_container {
      flex-direction: column;
      align-items: center;
    }
    
    .price_card {
      width: 100%;
      max-width: 380px;
    }
  }

/* kapcsolatfelvétel */


:root {
  --gradient-start: #3b82f6;
  --gradient-end: #ff8fba;
  --dark-bg: #131622;
  --darker-card-bg: #1b1f2e;
  --accent-blue: #3b82f6;
  --accent-pink: #ff8fba;
  --text-light: #ffffff;
  --text-muted: #8a8ea0;
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

body {
  background: linear-gradient(135deg, var(--dark-bg), #1a1a2e);
  color: var(--text-light);
  font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
}

/* Contact form  */
.contact-form {
  background-color: var(--darker-card-bg);
  border-radius: var(--border-radius);
  padding: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
}

.contact-form h3 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  text-align: center;
  position: relative;
}

.contact-form h3::after {
  content: '';
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

/* Selected package */
.selected-package {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 1.25rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-info h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
  color: var(--text-muted);
}

.package-info p {
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
}

.package-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-pink);
}

.reset-selection {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: var(--transition);
}

.reset-selection:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
}

/* Form layout */
.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.form-group {
  flex: 1;
  margin-bottom: 1.25rem;
  position: relative;
}

/* Form inputs */
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.form-group .input-with-icon {
  position: relative;
}

.form-group .icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  z-index: 1;
}

.form-group textarea + .icon {
  top: 1.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-light);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: transparent;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* Privacy policy checkbox */
.privacy-policy-box {
  margin-bottom: 1.5rem;
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.privacy-checkbox input[type="checkbox"].custom-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  margin-top: 0.1rem;
}

.privacy-checkbox input[type="checkbox"].custom-checkbox:checked {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  border-color: transparent;
}

.privacy-checkbox input[type="checkbox"].custom-checkbox:checked::after {
  content: "✓";
  font-size: 10px;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.privacy-checkbox label {
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.4;
  font-size: 0.8rem;
}

.privacy-checkbox a {
  color: var(--accent-blue);
  text-decoration: none;
  position: relative;
  font-weight: 500;
  transition: var(--transition);
  background-image: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  background-size: 100% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
}

.privacy-checkbox a:hover {
  color: var(--accent-pink);
}

/* Submit button */
.submit-btn {
  background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
  color: white;
  border: none;
  border-radius: var(--border-radius);
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: var(--transition);
  display: block;
  text-align: center;
  margin-top: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

/* Contact info box */
.contact-info {
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-info h4 {
  margin: 0 0 1rem 0;
  font-size: 1.2rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info h4 svg {
  color: var(--accent-pink);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  flex: 1;
  min-width: 200px;
}

.contact-item .icon {
  color: var(--accent-blue);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-item p {
  margin: 0;
  color: var(--text-muted);
}

.contact-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--accent-pink);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .contact-form {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .contact-details {
    flex-direction: column;
    gap: 1rem;
  }
}

