*, *::before, *::after {
    box-sizing: border-box;
}

input, textarea, select {
    width: 100%;
    max-width: 100%;
}
/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header with Video Background */
.hero-header {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #a8b2d1;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #e2e8f0;
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.profile-img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(255, 255, 255, 0.1);
}

/* 🔥 FIXED NAVIGATION - NO MORE OVERLAP */
.navbar {
    position: fixed; /* Changed from absolute to fixed */
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo h3 a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo h3 a:hover {
    color: #a0a0a0;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100% !important;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Sections */
.section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}
.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.soft-skills h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.skill-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.progress-bar {
    height: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    width: 0;
    transition: width 2s ease-in-out;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #64748b;
    font-weight: 500;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.project-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-content {
    padding: 2rem;
}

.project-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.project-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.project-tech span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-links {
    display: flex;
    gap: 1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border-color: #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.skill-category {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.skill-category h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.skill-tags span {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: #475569;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Experience Section */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    z-index: 1;
    flex-shrink: 0;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 2rem;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -30px;
    border-left-color: white;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -30px;
    border-right-color: white;
}

.timeline-content h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-date {
    color: #64748b;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #64748b;
    line-height: 1.6;
}
.timeline-content ul li{
    color: #64748b;
}
/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #94a3b8;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

/* 🔥 FIXED RESPONSIVE DESIGN - NO MORE NAME OVERLAP */
@media (max-width: 768px) {
    /* 🔥 CRITICAL FIX: Clear navbar space */
    .hero-header {
        padding-top: 90px !important; /* Exact navbar height + buffer */
        min-height: calc(100vh - 90px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 2rem;
        margin-top: 1rem;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px; /* Below fixed navbar */
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.98);
        width: 100%;
        height: calc(100vh - 90px);
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 2rem;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Navbar becomes solid on mobile */
    .navbar {
        background: rgba(0, 0, 0, 0.95) !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column !important;
        margin-bottom: 3rem;
    }

    .timeline-item:nth-child(even) {
        flex-direction: column !important;
    }

    .timeline-content {
        margin: 1rem 0 0 80px !important;
        max-width: none;
    }

    .timeline-content::before {
        left: -50px !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
        right: auto !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-header {
        padding-top: 100px !important; /* Extra for small screens */
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .project-links {
        flex-direction: column;
    }
}
/* 🔥 PENTESTING SECTION - FULLY MOBILE RESPONSIVE */
.pentesting {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: white;
    padding: 80px 0; /* Extra padding for mobile */
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: #a8b2d1;
    max-width: 600px;
    margin: 0 auto 4rem;
}

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

.pentest-tool {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 1.5rem; /* Reduced side padding for mobile */
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pentest-tool::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
}

.pentest-tool:hover {
    transform: translateY(-10px);
    border-color: #667eea;
    box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
}

.pentest-tool:hover::before {
    left: 100%;
}

.tool-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.pentest-tool h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.pentest-tool p {
    color: #a8b2d1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tool-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tool-tech span {
    background: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    backdrop-filter: blur(10px);
}

.pentest-cta {
    text-align: center;
    padding: 3rem 0;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.pentest-cta p {
    color: #a8b2d1;
    margin-top: 1rem;
    font-size: 1.1rem;
}

/* ULTIMATE PYTHON PENTEST HIGHLIGHT */
.skill-tags span:has(i.fab.fa-python),
.project-tech span:has(i.fab.fa-python) {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    color: white !important;
    font-weight: 700 !important;
    animation: python-pentest-glow 1.5s infinite alternate !important;
    box-shadow: 0 0 25px rgba(255, 107, 53, 0.5) !important;
}

@keyframes python-pentest-glow {
    0% { 
        box-shadow: 0 0 15px rgba(255, 107, 53, 0.4), 0 0 30px rgba(255, 107, 53, 0.2);
    }
    100% { 
        box-shadow: 0 0 25px rgba(255, 107, 53, 0.6), 0 0 40px rgba(255, 107, 53, 0.3);
    }
}

/* 🔥 MOBILE RESPONSIVE FIXES */
@media (max-width: 768px) {
    .pentesting {
        padding: 60px 0; /* Reduced padding */
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .pentest-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .pentest-tool {
        padding: 2rem 1.5rem; /* More compact */
        border-radius: 16px;
    }
    
    .tool-icon {
        width: 70px;
        height: 70px;
        font-size: 1.5rem;
    }
    
    .pentest-tool h3 {
        font-size: 1.3rem;
        line-height: 1.3;
    }
    
    .pentest-tool p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .tool-tech {
        gap: 0.4rem;
    }
    
    .tool-tech span {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
    
    .pentest-cta {
        padding: 2rem 1rem;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .pentest-cta p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .pentesting {
        padding: 50px 0;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .pentest-tool {
        padding: 1.8rem 1.2rem;
    }
    
    .tool-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .pentest-tool h3 {
        font-size: 1.2rem;
    }
    
    .pentest-tool p {
        font-size: 0.9rem;
    }
    
    .tool-tech span {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
    
    .pentest-cta {
        padding: 1.5rem 1rem;
    }
}

/* Smooth animations on mobile (reduced motion) */
@media (prefers-reduced-motion: reduce) {
    .pentest-tool,
    .pentest-tool::before {
        transition: none;
    }
    
    .pentest-tool:hover {
        transform: none;
    }
}

/* Landscape mobile fix */
@media (max-height: 500px) and (orientation: landscape) {
    .pentest-grid {
        gap: 1rem;
    }
    
    .pentest-tool {
        padding: 1.5rem;
    }
}
/* enquiry.css - Custom styles for enquiry.html */

/* Hero Section */
.contact-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    padding-top: 120px;
    background: linear-gradient(135deg, rgba(10,10,10,0.9), rgba(26,26,46,0.95)),
                url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?ixlib=rb-4.0.3&auto=format&fit=crop&q=80') center/cover;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: inherit;
    z-index: 1;
}

.contact-hero > * {
    position: relative;
    z-index: 2;
}

.contact-hero h1 {
    font-size: clamp(2.8rem, 6vw, 4rem);
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.3rem;
    color: #a8b2d1;
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Form Container */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group.full {
    grid-column: 1 / -1;
}

label {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

input, textarea, select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input::placeholder, textarea::placeholder {
    color: #94a3b8;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

textarea {
    min-height: 140px;
    resize: vertical;
}
select {
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}

select option {
    background-color: #1e293b; /* dark dropdown background */
    color: white; /* white text */
}

select:focus {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}
select {
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 2.5rem; /* space for the icon */
}
/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 2rem auto 0;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.submit-btn .loader {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

/* Alert */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    font-weight: 500;
    display: none;
    animation: fadeIn 0.5s ease;
}

.alert.success {
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #86efac;
}

.alert.error {
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

/* Service Selector */
.service-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.service-card {
    flex: 1;
    min-width: 200px;
    background: rgba(20, 20, 30, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #667eea;
    transform: translateY(-5px);
}

.service-card.selected {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
    border-color: #667eea;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.service-card i {
    font-size: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
    display: block;
}

.service-card h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-card p {
    color: #a8b2d1;
    font-size: 0.9rem;
}

/* Honeypot */
.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* Animations */
@keyframes spin {
    to { transform: rotate(360deg); }
}

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

/* Responsive */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 2rem;
    }
    .service-selector {
        flex-direction: column;
    }
    .service-card {
        min-width: unset;
    }
    .contact-hero {
        min-height: 50vh;
        padding-top: 100px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }
    .submit-btn {
        width: 100%;
        max-width: 280px;
    }
}
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  color: #222;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  padding: 20px 24px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  animation: slide-up 0.5s ease forwards;
}

@media (prefers-color-scheme: dark) {
  .cookie-banner {
    background: #1c1c1e;
    color: #f2f2f7;
  }
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.cookie-text h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.cookie-text p {
  margin: 4px 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-link {
  font-size: 0.85rem;
  color: #0078ff;
  text-decoration: none;
}

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

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

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

.cookie-btn.accept {
  background: #0078ff;
  color: #fff;
}

.cookie-btn.accept:hover {
  background: #005fcc;
}

.cookie-btn.decline {
  background: transparent;
  color: #555;
  border: 1px solid #ccc;
}

.cookie-btn.decline:hover {
  background: #eee;
}

@media (prefers-color-scheme: dark) {
  .cookie-btn.decline {
    color: #f2f2f7;
    border-color: #444;
  }
  .cookie-btn.decline:hover {
    background: #2a2a2c;
  }
}

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