/* Ice/Crystal Theme Variables */
:root {
    --primary-blue: #1E40AF;
    --secondary-blue: #3B82F6;
    --accent-cyan: #06B6D4;
    --accent-teal: #14B8A6;
    --ice-white: #F8FAFC;
    --crystal-blue: #BFDBFE;
    --dark-ice: #0F172A;
    --darker-ice: #020617;
    --frost-blue: #60A5FA;
    --glacier-white: #E0F2FE;
    --aurora-green: #10B981;
    --gradient-ice: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    --gradient-aurora: linear-gradient(45deg, var(--secondary-blue), var(--aurora-green));
    --font-primary: 'Exo 2', sans-serif;
    --font-secondary: 'Exo 2', sans-serif;
}

/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    background: var(--dark-ice);
    color: var(--ice-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Orbitron dla menu */


.nav-logo span {
    font-family: 'Orbitron', monospace !important;
}

/* Orbitron dla głównego tytułu */
.gradient-text {
    font-family: 'Orbitron', monospace !important;
}

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-primary);
}

.gradient-text {
    background: linear-gradient(135deg, #22D3EE 0%, #06B6D4 25%, #0EA5E9 50%, #3B82F6 75%, #22D3EE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 400% 400%;
    animation: gradientShift 10s ease-in-out infinite;
}

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

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-family: var(--font-secondary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-ice);
    color: white;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
}

.btn-secondary:hover {
    background: var(--accent-cyan);
    color: var(--dark-ice);
    transform: translateY(-2px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 1.6rem;
    color: var(--ice-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    padding: 8px 15px;
    border-radius: 25px;
    border: 1px solid rgba(6, 182, 212, 0.4);
}

.logo-image {
    height: 47px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(6, 182, 212, 0.3));
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: drop-shadow(0 2px 8px rgba(6, 182, 212, 0.6));
    transform: scale(1.15);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-cyan);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, var(--primary-blue) 0%, var(--dark-ice) 70%);
}

.ice-crystals {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(4px 4px at 30px 50px, rgba(255,255,255,0.8), transparent),
        radial-gradient(6px 6px at 80px 20px, rgba(6,182,212,0.6), transparent),
        radial-gradient(3px 3px at 150px 90px, rgba(255,255,255,0.9), transparent),
        radial-gradient(5px 5px at 200px 40px, rgba(20,184,166,0.7), transparent),
        radial-gradient(2px 2px at 60px 120px, rgba(255,255,255,0.8), transparent);
    background-repeat: repeat;
    background-size: 250px 150px;
    animation: crystal-sparkle 4s linear infinite;
}

.aurora {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--accent-cyan), transparent, var(--aurora-green), transparent);
    opacity: 0.15;
    animation: aurora-dance 25s linear infinite;
}

.snowflakes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.snowflakes::before,
.snowflakes::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 40px 60px, rgba(255,255,255,0.4), transparent),
        radial-gradient(3px 3px at 120px 20px, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 200px 100px, rgba(255,255,255,0.5), transparent),
        radial-gradient(2px 2px at 300px 40px, rgba(255,255,255,0.3), transparent);
    background-repeat: repeat;
    background-size: 400px 200px;
    animation: snowfall 8s linear infinite;
}

.snowflakes::after {
    animation-delay: -4s;
    animation-duration: 12s;
}

@keyframes crystal-sparkle {
    0%, 100% { opacity: 1; transform: translateY(0px); }
    50% { opacity: 0.7; transform: translateY(-5px); }
}

@keyframes aurora-dance {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes snowfall {
    0% { transform: translateY(-100px); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(calc(100vh + 100px)); opacity: 0; }
}

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

.hero-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.icon-card {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--accent-cyan);
    animation: ice-float 3s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.2);
}

.icon-card:nth-child(2) {
    animation-delay: -1s;
}

.icon-card:nth-child(3) {
    animation-delay: -2s;
}

@keyframes ice-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 10rem);
    margin-bottom: 20px;
    font-weight: 900;
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--crystal-blue);
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-cyan);
    border-radius: 15px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: ice-scroll 2s infinite;
}

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

@keyframes ice-scroll {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 25px; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--crystal-blue);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--darker-ice) 0%, var(--dark-ice) 100%);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.1);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--ice-white);
}

.service-card p {
    color: var(--crystal-blue);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    color: var(--ice-white);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features li::before {
    content: '❄';
    color: var(--accent-cyan);
    font-weight: bold;
}

.service-content-spacer {
    flex: 1;
    min-height: 20px;
}

.service-more-container {
    margin-top: auto;
    padding-top: 15px;
}

.service-more-btn {
    color: var(--accent-cyan);
    font-weight: 600;
    cursor: pointer;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-align: center;
}

.service-more-btn:hover {
    color: var(--frost-blue);
    transform: translateY(-2px);
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: var(--dark-ice);
}

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

.portfolio-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.1);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 20px 40px rgba(6, 182, 212, 0.3);
}

.portfolio-image {
    position: relative;
    height: 200px;
    background: var(--gradient-aurora);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.portfolio-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(6, 182, 212, 0.8);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.portfolio-icons {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
}

.portfolio-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-size: 1.2rem;
}

.portfolio-content {
    padding: 25px;
}

.portfolio-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.portfolio-header h3 {
    color: var(--ice-white);
    font-size: 1.4rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.spec-icon {
    color: var(--accent-cyan);
    font-size: 1rem;
    width: 20px;
}

.spec-label {
    color: var(--crystal-blue);
    font-weight: 600;
    min-width: 50px;
}

.spec-value {
    color: var(--ice-white);
}

.performance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.performance-tag {
    background: rgba(6, 182, 212, 0.2);
    color: var(--crystal-blue);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

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

.info-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 20px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.1);
}

.info-card i {
    font-size: 3rem;
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--ice-white);
}

.info-card ul {
    text-align: left;
    list-style: none;
    margin-top: 20px;
}

.info-card li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--crystal-blue);
}

.info-card li::before {
    content: '→';
    color: var(--accent-cyan);
    font-weight: bold;
}

.info-card code {
    background: rgba(6, 182, 212, 0.2);
    color: var(--ice-white);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--darker-ice) 0%, var(--dark-ice) 100%);
}

.contact-content-centered {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .info-card {
    margin-bottom: 30px;
}

.contact-info .info-card h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--ice-white);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-ice);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.contact-item div span {
    display: block;
    color: var(--crystal-blue);
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-item div strong {
    color: var(--ice-white);
    font-size: 1rem;
}

.quick-response {
    background: var(--gradient-aurora);
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.quick-response i {
    font-size: 2.5rem;
    color: white;
}

.quick-response h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.quick-response p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.1);
    max-width: 600px;
    width: 100%;
}

.contact-form h3 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--ice-white);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--ice-white);
    font-family: var(--font-secondary);
    transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(248, 250, 252, 0.7);
}

.contact-form select {
    color: var(--ice-white);
}

.contact-form select option {
    background: var(--dark-ice);
    color: var(--ice-white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.2);
}

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

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--crystal-blue);
    margin-top: 15px;
}

/* CAPTCHA Styles */
.captcha-label {
    color: var(--crystal-blue);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.captcha-input-wrapper {
    display: flex;
margin-top: 17px;
    align-items: center;
}

.captcha-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(6, 182, 212, 0.1);
    padding: 10px;
    border-radius: 12px;
    border: 2px solid rgba(6, 182, 212, 0.3);
}

.captcha-image {
    border: 1px solid rgba(6, 182, 212, 0.4);
    border-radius: 6px;
    background: white;
}

.captcha-refresh {
    background: var(--gradient-ice);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.captcha-refresh:hover {
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.captcha-input {

    width: 150px;
    height: 55px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 2px;
    background: rgba(6, 182, 212, 0.1) !important;
    border: 2px solid rgba(6, 182, 212, 0.4) !important;
    border-radius: 12px;
    padding: 10px;
    font-size: 1rem;
    color: var(--ice-white);
    margin: 0;
}

/* Footer */
.footer {
    background: var(--darker-ice);
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ice-white);
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.footer-logo i {
    color: var(--accent-cyan);
    font-size: 1.8rem;
}

.footer-brand p {
    color: var(--crystal-blue);
    line-height: 1.6;
    max-width: 300px;
}

.footer-services h4,
.footer-contact h4 {
    color: var(--ice-white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

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

.footer-services li {
    margin-bottom: 10px;
}

.footer-services a {
    color: var(--crystal-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--crystal-blue);
}

.footer-contact-item i {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(6, 182, 212, 0.2);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--crystal-blue);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--crystal-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--dark-ice);
    border: 2px solid var(--accent-cyan);
    border-radius: 20px;
    margin: 5% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.3);
}

.close {
    color: var(--crystal-blue);
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 25px;
    z-index: 1;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--accent-cyan);
}

.modal-body {
    padding: 40px;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(6, 182, 212, 0.2);
}

.modal-header i {
    font-size: 4rem;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.modal-header h2 {
    font-size: 2.2rem;
    color: var(--ice-white);
    margin-bottom: 10px;
}

.modal-section {
    margin-bottom: 30px;
}

.modal-section h3 {
    color: var(--accent-cyan);
    font-size: 1.4rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-section p {
    color: var(--crystal-blue);
    line-height: 1.6;
    margin-bottom: 15px;
}

.modal-features {
    list-style: none;
    margin-bottom: 20px;
}

.modal-features li {
    color: var(--ice-white);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.modal-features li::before {
    content: '❄';
    color: var(--accent-cyan);
    font-size: 1.2rem;
    font-weight: bold;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.pricing-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.pricing-item h4 {
    color: var(--accent-cyan);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.pricing-item .price {
    color: var(--ice-white);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.pricing-item p {
    color: var(--crystal-blue);
    font-size: 0.9rem;
}

/* Photo Carousel in Modal */
.photo-carousel {
    margin: 20px 0;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.carousel-image {
    flex: 1;
    text-align: center;
    margin: 0 20px;
}

.carousel-image img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid rgba(6, 182, 212, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-image img:hover {
    border-color: var(--accent-cyan);
    transform: scale(1.02);
}

.carousel-btn {
    background: rgba(6, 182, 212, 0.8);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--accent-cyan);
    transform: scale(1.1);
}

.carousel-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.carousel-thumbnails img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid rgba(6, 182, 212, 0.2);
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.carousel-thumbnails img.active {
    border-color: var(--accent-cyan);
    opacity: 1;
    transform: scale(1.05);
}

.carousel-thumbnails img:hover {
    border-color: var(--accent-cyan);
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-ice);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 30px 0;
        border-top: 1px solid rgba(6, 182, 212, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-icons {
        gap: 15px;
    }
    
    .icon-card {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .modal-content {
        width: 95%;
        margin: 2% auto;
    }
    
    .modal-body {
        padding: 20px;
    }
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: slideUp 0.5s ease-out;
}

.cookie-consent.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 2rem;
    color: var(--accent-cyan);
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 200px;
}

.cookie-text p {
    margin: 0 0 8px 0;
    color: var(--ice-white);
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-text a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--gradient-ice);
    color: white;
}

.cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.cookie-decline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--ice-white);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

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

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