/* ==================================================
   FRESH MODERN STYLING - L und M Eventtechnik
   ================================================== */

:root {
    /* Neutral Professional Colors */
    --primary: #475569;      /* Slate */
    --secondary: #1F2937;    /* Anthracite */
    --accent: #94A3B8;       /* Muted Slate */
    --background: #F8FAFC;   /* Very Light Gray */
    --surface: #FFFFFF;      /* White Cards */
    --surface-alt: #E5E7EB;  /* Light Gray */
    --text-dark: #111827;    /* Dark Text */
    --text-gray: #4B5563;    /* Gray Text */
    --border: #D1D5DB;       /* Border Color */
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--background);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ==================================================
   NAVIGATION
   ================================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--text-gray);
    display: none;
    font-weight: 500;
}

@media (min-width: 768px) {
    .logo-sub {
        display: inline;
        margin-left: 5px;
    }
}

.nav-menu {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: 0.3s;
}

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

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

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

.nav-menu.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--dark-light);
    padding: 1rem 20px;
    border-bottom: 2px solid var(--primary);
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==================================================
   DROPDOWN MENU
   ================================================== */

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.dropdown-toggle {
    cursor: pointer;
    padding-right: 8px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0;
}

.dropdown-toggle::before {
    content: '›';
    font-size: 1rem;
    margin-right: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.dropdown-toggle.open::before {
    transform: rotate(90deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #2a2a2a;
    border: 1px solid #444;
    border-top: 2px solid var(--primary);
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 180px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    margin-top: 8px;
}

@media (min-width: 768px) {
    .dropdown-menu.open {
        display: flex !important;
        flex-direction: column;
    }
}

.dropdown-item {
    padding: 0.75rem 1rem;
    color: #e8efff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.dropdown-item:hover {
    background-color: #3a3a3a;
    color: var(--primary);
    padding-left: 1.25rem;
}

@media (max-width: 767px) {
    .dropdown-menu {
        position: relative;
        display: none !important;
        top: auto;
        left: auto;
        border: none;
        border-left: 3px solid var(--primary);
        margin-top: 0.5rem;
        padding: 0.5rem 0 0.5rem 1rem;
        min-width: auto;
        box-shadow: none;
        background: transparent;
    }
    
    .dropdown-menu.open {
        display: flex !important;
        flex-direction: column;
    }
    
    .dropdown-item {
        padding: 0.5rem 0;
        font-size: 0.85rem;
    }
    
    .dropdown-item:hover {
        padding-left: 0;
    }
}

/* ==================================================
   HERO SECTION
   ================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    animation: fadeIn 0.8s ease-out;
    padding: 40px 0;
}

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

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
}

.hero-tag {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: slideInDown 0.6s ease-out;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: slideInDown 0.8s ease-out 0.1s both;
    color: white;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
}

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

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: slideInDown 0.8s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInDown 0.8s ease-out 0.3s both;
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 0.6rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.18), 0 8px 22px rgba(0, 0, 0, 0.18);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 13px;
    position: relative;
}

.mouse::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 8px;
    background: white;
    border-radius: 2px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseScroll 1.5s infinite;
}

/* ==================================================
   IMAGE STAGE
   ================================================== */

.image-stage {
    padding: 28px 0 12px;
    background: var(--background);
}

.stage-track {
    width: min(1380px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 16px;
}

.stage-card {
    position: relative;
    min-height: 300px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 38px rgba(17, 24, 39, 0.2);
}

.stage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    transition: transform 0.6s ease;
}

.stage-card:hover img {
    transform: scale(1.1);
}

.stage-card-large {
    min-height: 360px;
}

.stage-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px 18px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0));
}

.stage-overlay p {
    margin: 0;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 1.05rem;
}

/* ==================================================
   SERVICES SECTION
   ================================================== */

.services {
    padding: 80px 0;
    background: var(--background);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-desc {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3.5rem;
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--surface);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    right: 2.5rem;
    height: 200px;
    border-radius: 0.5rem;
    background: rgba(0, 150, 255, 0.24);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.35s ease;
}

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    display: block;
    transition: filter 0.4s ease;
    position: relative;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 24px rgba(6, 182, 212, 0.15);
}

.service-card:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.service-card:hover::before {
    opacity: 0.08;
}

.service-card:hover .service-image {
    filter: saturate(110%) brightness(1.05);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ==================================================
   CONTENT SECTIONS
   ================================================== */

.section-content {
    padding: 80px 0;
    background: var(--background);
}

.bg-alt {
    background: var(--surface-alt);
}

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: start;
}

@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

.column h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.column p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.1rem;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
}

.image-section {
    position: relative;
    height: 520px;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 1.25rem;
    border: 1px solid #cfd4dc;
    box-shadow: 0 18px 36px rgba(17, 24, 39, 0.16);
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 0.45s ease;
}

.image-section:hover img {
    transform: scale(1.1);
}

@media (max-width: 992px) {
    .stage-track {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .stage-card,
    .stage-card-large {
        min-height: 280px;
    }

    .image-section {
        height: 460px;
    }
}

/* ==================================================
   PRICING GRID
   ================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    background: var(--surface);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.price-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.price-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    transform: scale(1.08);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.25);
}

.price-card h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price-card.featured h4 {
    color: white;
}

.price-card .size {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-card.featured .size {
    color: rgba(255, 255, 255, 0.9);
}

.price-card .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.price-card.featured .price {
    color: white;
}

/* ==================================================
   CONTACT SECTION
   ================================================== */

.contact {
    padding: 80px 0;
    background: var(--surface);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--surface-alt);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--primary);
}

.info-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.info-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.info-card a:hover {
    opacity: 0.8;
}

.info-card p {
    color: var(--text-gray);
}

.highlight-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.highlight-card h4 {
    color: white;
}

.highlight-card a {
    color: white;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 1.5px solid var(--border);
    border-radius: 0.6rem;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

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

.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.form-consent input[type="checkbox"] {
    margin-top: 2px;
}

.form-consent a {
    color: var(--primary);
    text-decoration: none;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

/* ==================================================
   CTA SECTION
   ================================================== */

.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .cta h2 {
        font-size: 1.8rem;
    }
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ==================================================
   FOOTER
   ================================================== */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

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

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ==================================================
   ANIMATIONS
   ================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes mouseScroll {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 20px;
        opacity: 0;
    }
}

@keyframes slideBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

/* ==================================================
   RESPONSIVE ADJUSTMENTS
   ================================================== */

@media (max-width: 480px) {
    .stage-track {
        width: calc(100% - 24px);
        grid-template-columns: 1fr;
    }

    .stage-card,
    .stage-card-large {
        min-height: 240px;
    }

    .image-section {
        height: 320px;
    }

    .hero {
        padding: 30px 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

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

    .section-content {
        padding: 60px 0;
    }

    .contact-content {
        gap: 2rem;
    }

    .cta h2 {
        font-size: 1.5rem;
    }
}

/* ==================================================
   CONCEPT RESET: COOL / DYNAMIC
   ================================================== */

:root {
    --primary: #00d4ff;
    --primary-dark: #009ec2;
    --secondary: #090b1a;
    --accent: #00d4ff;
    --background: #060812;
    --surface: #0f1426;
    --surface-alt: #101a30;
    --text-dark: #e8efff;
    --text-gray: #a4b3d7;
    --border: #1f2b47;

    --dark: #060812;
    --dark-light: #101a30;
    --gray: #7f8db0;
    --light: #dce6ff;
    --text: #e8efff;
}

body {
    font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif !important;
    background:
        radial-gradient(circle at 15% 12%, rgba(0, 212, 255, 0.16), rgba(0, 212, 255, 0) 36%),
        radial-gradient(circle at 82% 22%, rgba(255, 78, 205, 0.14), rgba(255, 78, 205, 0) 38%),
        linear-gradient(160deg, #05070f 0%, #0a1122 58%, #070d1a 100%) !important;
    color: var(--text-dark) !important;
}

.navbar {
    background: rgba(10, 14, 28, 0.8) !important;
    border-bottom: 1px solid rgba(0, 212, 255, 0.28) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35) !important;
}

.logo-image {
    width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.24));
}

.nav-logo {
    gap: 12px !important;
}

.logo-sub,
.nav-link {
    color: #d8e4ff !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.hero {
    background:
        linear-gradient(120deg, rgba(5, 7, 15, 0.5), rgba(5, 11, 30, 0.25)),
        url("../img/Eventtechnik_Banner.jpg") center/cover no-repeat !important;
}

.hero::before {
    background: radial-gradient(circle, rgba(0, 212, 255, 0.35) 0%, rgba(0, 212, 255, 0) 72%) !important;
}

.hero::after {
    background: radial-gradient(circle, rgba(255, 78, 205, 0.28) 0%, rgba(255, 78, 205, 0) 72%) !important;
}

.hero-title {
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
}

.highlight {
    color: var(--primary) !important;
}

.btn-primary {
    background: linear-gradient(120deg, var(--primary), #57efff) !important;
    color: #031020 !important;
    box-shadow: 0 0 0 rgba(0, 212, 255, 0), 0 12px 28px rgba(0, 212, 255, 0.25) !important;
}

.btn-primary:hover {
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.4), 0 12px 28px rgba(0, 212, 255, 0.25) !important;
}

.btn-secondary {
    background: linear-gradient(180deg, rgba(121, 134, 160, 0.28), rgba(82, 96, 124, 0.3)) !important;
    border-color: rgba(0, 212, 255, 0.65) !important;
    color: #d7e9ff !important;
    box-shadow: 0 10px 24px rgba(9, 14, 28, 0.28) !important;
}

.btn-secondary:hover {
    box-shadow: 0 0 22px rgba(0, 212, 255, 0.18), 0 14px 28px rgba(9, 14, 28, 0.34) !important;
}

.services,
.section-content,
.contact {
    background: transparent !important;
}

.section-title,
.service-card h3,
.column h3,
.info-card h4 {
    color: #f2f6ff !important;
}

.section-desc,
.service-card p,
.column p,
.info-card p,
.info-card a {
    color: var(--text-gray) !important;
}

.services-grid {
    gap: 22px !important;
}

.service-card {
    background: linear-gradient(160deg, rgba(15, 20, 38, 0.9), rgba(12, 24, 48, 0.76)) !important;
    border: 1px solid rgba(0, 212, 255, 0.28) !important;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35) !important;
}

.service-card:hover {
    border-color: rgba(0, 212, 255, 0.72) !important;
    box-shadow: 0 0 26px rgba(0, 212, 255, 0.2), 0 18px 34px rgba(0, 0, 0, 0.4) !important;
}

.service-icon {
    filter: saturate(1.2);
}

.two-column {
    gap: 2.8rem !important;
}

.image-section {
    height: 470px !important;
    border: 1px solid rgba(0, 212, 255, 0.34) !important;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%) !important;
    box-shadow: 0 26px 44px rgba(0, 0, 0, 0.45), 0 0 28px rgba(0, 212, 255, 0.12) !important;
}

.image-section::after {
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
}

.image-section img {
    transform: scale(1.08) !important;
    transition: transform 0.65s ease !important;
}

.image-section:hover img {
    transform: scale(1.16) !important;
}

.highlight-box {
    background: linear-gradient(140deg, rgba(0, 212, 255, 0.2), rgba(255, 78, 205, 0.18)) !important;
    border-left: 5px solid var(--primary) !important;
    color: #f2f6ff !important;
}

.feature-list li {
    color: #dbe7ff !important;
}

.feature-list li::before {
    color: var(--primary) !important;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.45);
}

.contact-form,
.info-card {
    background: rgba(12, 18, 35, 0.86) !important;
}

.highlight-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.22), rgba(255, 78, 205, 0.2)) !important;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: #0b1224 !important;
    border: 1px solid #2a3b62 !important;
    color: #e8efff !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.18) !important;
    border-color: var(--primary) !important;
}

.cta {
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.16), rgba(0, 212, 255, 0) 35%),
        radial-gradient(circle at 80% 80%, rgba(255, 78, 205, 0.15), rgba(255, 78, 205, 0) 38%),
        linear-gradient(145deg, #070b17, #0f1630) !important;
}

.footer {
    background: #050913 !important;
}

.footer-logo {
    width: 86px;
    height: auto;
    margin-bottom: 10px;
    object-fit: contain;
    filter: drop-shadow(0 0 14px rgba(0, 212, 255, 0.2));
}

.footer-col h4 {
    color: var(--primary) !important;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(0, 212, 255, 0);
    }
    50% {
        box-shadow: 0 0 24px rgba(0, 212, 255, 0.32);
    }
}

.btn-primary,
.highlight-box {
    animation: pulseGlow 3.8s ease-in-out infinite;
}

@media (max-width: 1024px) {
    .image-section {
        height: 410px !important;
    }
}

@media (max-width: 640px) {
    .image-section {
        height: 300px !important;
    }

    .hero-title {
        font-size: clamp(2rem, 11vw, 3rem) !important;
    }
}

/* ==================================================
   ABOUT & PORTFOLIO STYLES
   ================================================== */

.about-story, .about-development, .about-services {
    margin: 48px 0;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
}

.about-story h2, .about-development h2, .about-services h2, .about-values h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-story p, .about-development p, .about-services p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.about-story em {
    font-style: italic;
    color: var(--primary);
}

.quote {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary);
    margin: 24px 0;
    padding-left: 24px;
    border-left: 4px solid var(--primary);
    font-style: italic;
}

.service-list {
    list-style: none;
    margin: 16px 0;
}

.service-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-gray);
}

.service-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* VALUES GRID */
.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.value-card {
    background: var(--surface);
    padding: 28px;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.value-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* PORTFOLIO GRID */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin: 48px 0;
}

.portfolio-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.portfolio-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
    border-color: var(--primary);
}

.portfolio-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.portfolio-header h3 {
    font-size: 1.4rem;
    color: #FFF;
    margin: 0;
}

.portfolio-tag {
    background: rgba(255, 255, 255, 0.25);
    color: #FFF;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    white-space: nowrap;
    font-weight: 500;
}

.portfolio-content {
    padding: 24px;
}

.portfolio-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.portfolio-content strong {
    color: var(--text-dark);
}

.portfolio-desc {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    color: var(--text-gray) !important;
    font-style: italic;
}

/* PORTFOLIO STATS */
.portfolio-stats {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 48px 32px;
    border-radius: 12px;
    margin: 48px 0;
    text-align: center;
}

.portfolio-stats h2 {
    color: #FFF;
    font-size: 2.2rem;
    margin-bottom: 48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FFF;
    line-height: 1;
    margin-bottom: 8px;
}

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

/* PORTFOLIO CTA */
.portfolio-cta {
    background: var(--surface-alt);
    padding: 48px 32px;
    border-radius: 12px;
    margin: 48px 0;
    text-align: center;
}

.portfolio-cta h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.portfolio-cta p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.8;
}

/* ==================================================
   SERVICE DETAIL PAGES
   ================================================== */

.service-page {
    padding: 72px 0 86px;
}

.service-page-alt {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
}

.service-page-hero {
    margin-bottom: 34px;
}

.service-hero-badge {
    display: inline-block;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 212, 255, 0.42);
    background: rgba(0, 212, 255, 0.12);
    color: var(--text-dark);
    margin-bottom: 14px;
}

.service-kpi-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.service-kpi {
    border: 1px solid rgba(0, 212, 255, 0.24);
    background: rgba(10, 18, 36, 0.6);
    border-radius: 12px;
    padding: 14px 16px;
}

.service-kpi strong {
    display: block;
    color: #f2f6ff;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.service-kpi span {
    color: var(--text-gray);
    font-size: 0.88rem;
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 22px;
}

.service-feature-card {
    padding: 24px;
    border-radius: 14px;
    border: 1px solid rgba(0, 212, 255, 0.24);
    background: linear-gradient(160deg, rgba(12, 18, 35, 0.86), rgba(9, 15, 29, 0.76));
}

.service-feature-card h3 {
    color: #f2f6ff;
    margin-bottom: 10px;
}

.service-feature-card p {
    color: var(--text-gray);
    margin-bottom: 14px;
}

.service-step-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.service-step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid rgba(0, 212, 255, 0.24);
    background: rgba(7, 12, 24, 0.6);
    border-radius: 12px;
}

.service-step span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #051023;
    font-weight: 700;
    flex: 0 0 auto;
}

.service-step p {
    margin: 0;
    color: #dce6ff;
    font-size: 0.93rem;
}

.service-cta-row {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 1024px) {
    .service-kpi-grid,
    .service-card-grid,
    .service-step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .service-page {
        padding: 58px 0 72px;
    }

    .service-kpi-grid,
    .service-card-grid,
    .service-step-grid {
        grid-template-columns: 1fr;
    }

    .service-feature-card {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-header {
        flex-direction: column;
        gap: 12px;
    }

    .portfolio-tag {
        align-self: flex-start;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

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