/* ALFIE MARKETING LTD - Premium Glassmorphism Design */
/* Combination: Premium + Glassmorphism + Neomorphism */
/* Updated: Jan 2025 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* Modern gradient palette - teal, cyan, coral */
    --premium-gold: #14b8a6;
    --premium-purple: #06b6d4;
    --premium-deep-blue: #f97316;
    --premium-dark: #0f172a;
    --premium-light: #f8fafc;
    
    /* Glassmorphism colors */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(20, 184, 166, 0.37);
    
    /* Neomorphism shadows */
    --neo-light: #ffffff;
    --neo-dark: #d1d5db;
    --neo-shadow-light: 8px 8px 16px rgba(163, 177, 198, 0.3);
    --neo-shadow-dark: -8px -8px 16px rgba(255, 255, 255, 0.7);
    
    /* Premium gradients */
    --gradient-premium: linear-gradient(135deg, #14b8a6 0%, #06b6d4 50%, #f97316 100%);
    --gradient-gold: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 100%);
    --gradient-purple: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    
    /* Text colors */
    --text-premium: #1e293b;
    --text-light: rgba(255, 255, 255, 0.9);
    --text-muted: rgba(255, 255, 255, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-premium);
    background: var(--gradient-dark);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

/* Floating abstract shapes background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(20, 184, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: floatBackground 20s ease-in-out infinite;
}

@keyframes floatBackground {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.1); }
}

/* Typography - Mixed fonts + Huge headings + Gradient text */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(4rem, 12vw, 8rem);
    margin-bottom: 2rem;
}

h2 {
    font-size: clamp(3rem, 8vw, 5rem);
}

h3 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
}

p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header - Sticky with Glassmorphism */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 39, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(10, 14, 39, 0.95);
    padding: 1rem 0;
}

nav {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 0.5rem 0;
    font-size: 1rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--premium-gold);
    transform: translateY(-2px);
}

.nav-links .cta-button {
    margin-left: 1rem;
}

.nav-links .cta-button::after {
    display: none;
}

.cta-button {
    background: var(--gradient-premium);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.5);
}

.cta-button span {
    position: relative;
    z-index: 1;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1001;
}

.burger span {
    width: 30px;
    height: 3px;
    background: var(--premium-gold);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section - Modern Centered Design */
.hero-section {
    height: 100vh;
    max-height: 100vh;
    max-width: 100%;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 2rem;
    margin: 0;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    justify-content: center;
    height: 100%;
}

.hero-main-content {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    box-shadow: var(--glass-shadow);
    margin-bottom: 0.5rem;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.hero-main-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 0.75rem;
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-description {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 100%;
    width: 100%;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    padding: 0 1rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

.hero-btn-primary,
.hero-btn-secondary {
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.hero-btn-primary {
    background: var(--gradient-premium);
    color: white;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.6);
}

.hero-btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 2px solid var(--glass-border);
    color: var(--text-light);
    box-shadow: var(--glass-shadow);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    margin-top: 0.5rem;
    padding: 0 1rem;
}

.hero-feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.5rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.hero-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-premium);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(20, 184, 166, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-feature-card:hover::before {
    opacity: 0.1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    color: var(--text-light);
    background: none;
    -webkit-text-fill-color: var(--text-light);
}

.hero-feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
    margin: 0;
}

/* Hero Image Overlay */
.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.15;
}

.hero-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

/* Sections */
section {
    padding: 8rem 3rem;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title h2 {
    font-size: clamp(3.5rem, 10vw, 6rem);
    margin-bottom: 1.5rem;
}

.section-title p {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Services Grid - Interactive Cards with Hover */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-premium);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 50%;
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(20, 184, 166, 0.4);
    border-color: rgba(20, 184, 166, 0.5);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-premium);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-card h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: var(--text-light);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-muted);
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
}

/* About Section - Asymmetric Layout */
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.about-image {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-premium);
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.1);
}

.about-text h3 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
    color: var(--text-light);
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.portfolio-item {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 16/10;
    cursor: pointer;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.7);
}

.portfolio-item:hover img {
    transform: scale(1.15);
    filter: brightness(1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 14, 39, 0.95), transparent);
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    color: var(--text-light);
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.4s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(20, 184, 166, 0.3);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-premium);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    font-size: 2rem;
    font-weight: 900;
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.4);
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--gradient-premium);
    opacity: 0.3;
    z-index: -1;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0; }
}

.process-step h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: var(--text-light);
}

.process-step p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials-slider {
    margin-top: 4rem;
    position: relative;
}

.testimonial-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    border-radius: 32px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--glass-shadow);
}

.testimonial-text {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: var(--premium-gold);
    font-size: 1.2rem;
}

/* Contact Form */
.contact-form {
    max-width: 700px;
    margin: 4rem auto 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    border-radius: 32px;
    box-shadow: var(--glass-shadow);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--premium-gold);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--gradient-premium);
    color: var(--white);
    border: none;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(20, 184, 166, 0.5);
}

.submit-btn span {
    position: relative;
    z-index: 1;
}

/* Footer */
footer {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    color: var(--text-light);
    padding: 5rem 3rem 2rem;
    margin-top: 8rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--premium-gold);
    margin-bottom: 2rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: block;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--premium-gold);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
}

.business-id {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid var(--glass-border);
    padding: 2rem 3rem;
    z-index: 1001;
    display: none;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin: 0;
    color: var(--text-light);
    font-size: 1.1rem;
}

.cookie-text a {
    color: var(--premium-gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--gradient-premium);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(20, 184, 166, 0.3);
}

.cookie-decline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Policy Pages */
.policy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    box-shadow: var(--glass-shadow);
    margin-top: 120px;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.policy-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-light);
}

.policy-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--premium-gold);
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.75rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.policy-content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.policy-content a {
    color: var(--premium-gold);
    text-decoration: underline;
}

/* Thanks Page */
.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.thanks-content {
    max-width: 700px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    padding: 5rem 4rem;
    border-radius: 32px;
    box-shadow: var(--glass-shadow);
}

.thanks-content h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 2rem;
}

.thanks-content p {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: 2.5rem;
    color: var(--text-muted);
}

/* Scroll-triggered animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 5rem 2rem;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        justify-content: center;
        gap: 2rem;
    }

    .nav-links.active {
        left: 0;
    }
    
    .nav-links .cta-button {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }

    .burger {
        display: flex;
    }

    .hero-content {
        gap: 3rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-grid,
    .portfolio-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    section {
        padding: 5rem 2rem;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0 1.5rem;
    }
    
    .hero-section {
        padding-top: 70px;
        padding-bottom: 0.5rem;
        height: 100vh;
        max-height: 100vh;
    }
    
    .hero-content {
        gap: 0.75rem;
        padding: 0 1rem;
        height: calc(100vh - 70px);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .hero-main-content {
        gap: 0.5rem;
        width: 100%;
    }
    
    .hero-badge {
        padding: 0.4rem 1rem;
        margin-bottom: 0.25rem;
    }
    
    .hero-badge span {
        font-size: 0.8rem;
    }
    
    .hero-main-content h1 {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
        line-height: 1.15;
        margin-bottom: 0.4rem;
        padding: 0 0.5rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-description {
        font-size: clamp(0.85rem, 3vw, 1rem);
        line-height: 1.5;
        margin-bottom: 0.25rem;
        padding: 0 0.5rem;
    }
    
    .hero-cta {
        gap: 0.75rem;
        margin-top: 0.25rem;
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-features {
        gap: 0.5rem;
        padding: 0 0.5rem;
        margin-top: 0.25rem;
        grid-template-columns: 1fr;
    }
    
    .hero-feature-card {
        padding: 1rem 0.75rem;
    }
    
    .feature-icon {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-feature-card h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .hero-feature-card p {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .contact-form {
        padding: 3rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .policy-content {
        padding: 3rem 2rem;
        margin-top: 100px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 60px;
        padding-bottom: 0.25rem;
    }
    
    .hero-content {
        gap: 0.6rem;
        padding: 0 0.75rem;
        height: calc(100vh - 60px);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .hero-main-content {
        gap: 0.4rem;
    }
    
    .hero-badge {
        padding: 0.35rem 0.85rem;
    }
    
    .hero-badge span {
        font-size: 0.75rem;
    }
    
    .hero-main-content h1 {
        font-size: clamp(1.4rem, 6.5vw, 1.9rem);
        line-height: 1.1;
        margin-bottom: 0.3rem;
        padding: 0 0.25rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-description {
        font-size: clamp(0.8rem, 2.5vw, 0.95rem);
        line-height: 1.4;
        margin-bottom: 0.2rem;
        padding: 0 0.25rem;
    }
    
    .hero-cta {
        gap: 0.5rem;
        margin-top: 0.2rem;
        padding: 0 0.5rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
        max-width: 100%;
    }
    
    .hero-features {
        gap: 0.4rem;
        padding: 0 0.25rem;
        margin-top: 0.2rem;
    }
    
    .hero-feature-card {
        padding: 0.85rem 0.6rem;
    }
    
    .feature-icon {
        font-size: 1.75rem;
        margin-bottom: 0.4rem;
    }
    
    .hero-feature-card h3 {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }
    
    .hero-feature-card p {
        font-size: 0.75rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}
