:root {
    --color-bg-dark: #0a0a0a;
    --color-bg-card: rgba(255, 255, 255, 0.05);
    --color-primary-sapphire: #0f172a;
    --color-accent-crimson: #dc2626;
    --color-accent-neon-cyan: #06b6d4;
    --color-accent-neon-magenta: #d946ef;
    --color-accent-gold: #fbbf24;
    --color-text-light: #f8fafc;
    --color-text-dark: #1e293b;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --border-radius-card: 16px;
    --transition-speed: 0.3s;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:wght@400;700;900&display=swap');

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: 1.75rem; }

p {
    /* color: #cbd5e1; */
    margin-bottom: 1.5rem;
    font-weight: 400;
}

a {
    color: var(--color-accent-neon-cyan);
    transition: color var(--transition-speed) ease;
    text-decoration: none;
}

a:hover {
    color: var(--color-accent-neon-magenta);
}

.row {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.button,
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.btn-primary,
.button-primary {
    background-color: var(--color-accent-neon-cyan);
    color: var(--color-bg-dark);
    border-color: var(--color-accent-neon-cyan);
}

.btn-primary:hover,
.button-primary:hover {
    background-color: transparent;
    color: var(--color-accent-neon-cyan);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.btn-secondary,
.button-secondary {
    background-color: transparent;
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
}

.btn-secondary:hover,
.button-secondary:hover {
    background-color: var(--color-accent-gold);
    color: var(--color-bg-dark);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.btn-accent,
.button-accent {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-accent:hover,
.button-accent:hover {
    background: linear-gradient(135deg, #991b1b, #7f1d1d);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header .logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.header .logo span {
    color: var(--color-accent-neon-cyan);
}

.header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

.header nav a {
    color: var(--color-text-light);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.header nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-neon-magenta);
    transition: width 0.3s ease;
}

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

.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #050505 0%, #1a1a2e 50%, #0f172a 100%);
    padding-top: 80px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-headline {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    margin-top: 4rem;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

.section-dark {
    padding: 6rem 0;
    background-color: var(--color-bg-dark);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, transparent 100%);
    pointer-events: none;
}

.section-light {
    padding: 6rem 0;
    background-color: #ffffff;
    color: var(--color-text-dark);
}

.section-light h2, .section-light h3, .section-light h4 {
    color: #0f172a;
}

.section-light p {
    color: #475569;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-card);
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent-neon-cyan), var(--color-accent-neon-magenta));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--color-accent-neon-cyan), var(--color-accent-neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-accent-gold);
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--color-accent-neon-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

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

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    color: var(--color-text-dark);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: #f1f5f9;
    position: absolute;
    top: -1rem;
    left: 1rem;
    z-index: 0;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: #475569;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent-neon-cyan);
}

.author-info h4 {
    font-size: 1rem;
    margin: 0;
    color: #0f172a;
}

.author-info span {
    font-size: 0.85rem;
    color: #64748b;
}

.cta-banner {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 4rem 0;
}

.cta-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner h2 {
    margin-bottom: 1.5rem;
}

.cta-banner p {
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.footer {
    background-color: #020617;
    color: #94a3b8;
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer h5 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

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

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

.footer-links a {
    color: #94a3b8;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--color-accent-neon-cyan);
}

.footer-contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent-neon-cyan);
    background: rgba(255, 255, 255, 0.1);
}

.cookie-consent-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    max-width: 400px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
    display: none;
}

.cookie-consent-banner.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.cookie-header {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-text {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}

.cookie-btn-accept {
    background: var(--color-accent-neon-cyan);
    color: #0a0a0a;
}

.cookie-btn-accept:hover {
    background: #22d3ee;
}

.cookie-btn-decline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.section-padding {
    padding: 4rem 0;
}

.section-label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

.text-neon-cyan {
    background: linear-gradient(135deg, #06b6d4, #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-neon-gold {
    background: linear-gradient(135deg, #facc15, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-neon-magenta {
    background: linear-gradient(135deg, #d946ef, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-metallic {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f172a 100%);
    position: relative;
}

.bg-metallic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.grid-pattern {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.5) 50%, rgba(10, 10, 10, 0.8) 100%);
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-top: 0.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 1.5rem;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.btn-accent {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #991b1b, #7f1d1d);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.features-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.team-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.filter-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-buttons .btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #cbd5e1;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-buttons .btn:hover,
.filter-buttons .btn.active {
    background: var(--color-accent-neon-cyan);
    border-color: var(--color-accent-neon-cyan);
    color: var(--color-bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 0.5rem;
}

.faq-question {
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--color-text-light);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-accent-neon-cyan);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-accent-neon-cyan);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #cbd5e1;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.site-header {
    position: relative;
}

.sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-cell {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
    color: var(--color-accent-gold);
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.menu-cell {
    text-align: right;
}

.desktop-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 2px;
    background: #ffffff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    background: rgba(10, 10, 10, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.is-active {
    display: block;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Mobile Hero Section Responsive Overrides */
    .hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-section .hero-title {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
        letter-spacing: 2px !important;
    }
    
    .hero-section .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem !important;
        padding: 0 1rem !important;
    }
    
    .hero-section .hero-cta-group {
        gap: 1rem !important;
    }
    
    .hero-section .btn {
        font-size: 1rem !important;
        padding: 1rem 2rem !important;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-section .hero-stats {
        margin-top: 2rem !important;
        padding-top: 2rem !important;
        gap: 1.5rem !important;
    }
    
    .hero-section .stat-item {
        text-align: center;
    }
    
    .hero-section .stat-number {
        font-size: 2rem !important;
    }
    
    .hero-section .stat-label {
        font-size: 0.8rem !important;
    }
    
    .hero-section .scroll-indicator {
        display: none;
    }
}

/* Utility Classes */
.align-center {
    text-align: center;
}

.align-middle {
    align-items: center !important;
}

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

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

.text-gradient {
    background: linear-gradient(135deg, var(--color-accent-neon-cyan), var(--color-accent-neon-magenta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vertical {
    display: flex;
    flex-direction: column;
}

.horizontal {
    display: flex;
    flex-direction: row;
}

/* Navigation Button */
.nav-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Section Modifiers */
.section-accent {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    position: relative;
}

/* Service Card Components */
.service-image {
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    margin-bottom: 0.75rem;
}

.service-price {
    font-size: 2rem;
    color: var(--color-accent-crimson);
    font-family: 'Bebas Neue', sans-serif;
    margin-bottom: 1rem;
}

/* Testimonial Components */
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-rating {
    color: var(--color-accent-gold);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

/* Advantage Cards */
.advantage-card {
    padding: 2.5rem;
    background: #ffffff;
    height: 100%;
    transition: all 0.3s ease;
    border-radius: var(--border-radius-card);
    position: relative;
    overflow: hidden;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.advantage-number {
    font-size: 4rem;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.1;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

/* Hide/Show utilities (complementing Foundation) */
.hide-for-medium {
    display: block;
}

.show-for-medium {
    display: none;
}

@media (min-width: 768px) {
    .hide-for-medium {
        display: none;
    }
    
    .show-for-medium {
        display: flex;
    }
}


/* Menu styles */
.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu.horizontal {
    display: flex;
    flex-direction: row;
}

.menu.vertical {
    display: flex;
    flex-direction: column;
}

.menu li {
    margin-bottom: 0;
}

.menu a {
    color: inherit;
    text-decoration: none;
}

/* Cookie button styles */
.cookie-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}

.cookie-btn-accept {
    background: var(--color-accent-neon-cyan);
    color: #0a0a0a;
}

.cookie-btn-accept:hover {
    background: #22d3ee;
}

.cookie-btn-decline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Cookie consent banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    max-width: 400px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
    display: none;
}

.cookie-consent-banner.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

/* Contact form styles */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    margin-bottom: 1rem;
    font-family: var(--font-body);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-accent-neon-cyan);
    background: rgba(255, 255, 255, 0.1);
}

