/* Global Styles - Bottelt Official Light Theme */
:root {
    --primary-color: #6366f1;
    /* Indigo */
    --secondary-color: #f59e0b;
    /* Amber */
    --accent-color: #ec4899;
    /* Pink */
    --success-color: #10b981;
    /* Emerald */
    --light-bg: #f8fafc;
    /* Light Gray */
    --card-bg: rgba(255, 255, 255, 0.9);
    /* Glass Effect */
    --text-color: #1e293b;
    /* Dark Gray */
    --text-muted: #64748b;
    /* Muted Gray */
    --border-color: rgba(99, 102, 241, 0.2);
    /* Indigo Border */
    --glow-primary: 0 0 40px rgba(99, 102, 241, 0.3);
    --glow-secondary: 0 0 40px rgba(245, 158, 11, 0.3);
    --glow-accent: 0 0 40px rgba(236, 72, 153, 0.3);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-bg: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e1 100%);
    --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 60px rgba(99, 102, 241, 0.2);
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Poppins', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-color);
    background: var(--gradient-bg);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Completely New Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* Dynamic Wave System */
.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: waveFloat 15s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, rgba(99, 102, 241, 0.1) 70%, transparent 100%);
    animation-duration: 18s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 25%;
    animation-delay: 3s;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, rgba(245, 158, 11, 0.1) 70%, transparent 100%);
    animation-duration: 20s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    left: 30%;
    animation-delay: 6s;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, rgba(236, 72, 153, 0.1) 70%, transparent 100%);
    animation-duration: 22s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 10%;
    animation-delay: 9s;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, rgba(99, 102, 241, 0.05) 70%, transparent 100%);
    animation-duration: 16s;
}

.shape-5 {
    width: 90px;
    height: 90px;
    bottom: 70%;
    right: 60%;
    animation-delay: 12s;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.05) 70%, transparent 100%);
    animation-duration: 19s;
}

.shape-6 {
    width: 70px;
    height: 70px;
    top: 80%;
    left: 70%;
    animation-delay: 15s;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, rgba(236, 72, 153, 0.05) 70%, transparent 100%);
    animation-duration: 17s;
}

/* Floating Gradient Orbs */
.particle-system {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: orbFloat 25s linear infinite;
    opacity: 0.4;
}

.particle:nth-child(1) {
    width: 6px;
    height: 6px;
    top: 15%;
    left: 20%;
    animation-delay: 0s;
    animation-duration: 30s;
    background: var(--gradient-primary);
    box-shadow: 0 0 15px var(--primary-color);
}

.particle:nth-child(2) {
    width: 8px;
    height: 8px;
    top: 75%;
    left: 80%;
    animation-delay: 4s;
    animation-duration: 28s;
    background: var(--gradient-secondary);
    box-shadow: 0 0 20px var(--secondary-color);
}

.particle:nth-child(3) {
    width: 5px;
    height: 5px;
    top: 50%;
    left: 30%;
    animation-delay: 8s;
    animation-duration: 32s;
    background: var(--gradient-primary);
    box-shadow: 0 0 12px var(--primary-color);
}

.particle:nth-child(4) {
    width: 7px;
    height: 7px;
    top: 25%;
    left: 75%;
    animation-delay: 12s;
    animation-duration: 26s;
    background: var(--gradient-secondary);
    box-shadow: 0 0 18px var(--secondary-color);
}

.particle:nth-child(5) {
    width: 9px;
    height: 9px;
    top: 85%;
    left: 45%;
    animation-delay: 16s;
    animation-duration: 35s;
    background: var(--gradient-primary);
    box-shadow: 0 0 25px var(--primary-color);
}

.particle:nth-child(6) {
    width: 4px;
    height: 4px;
    top: 35%;
    left: 55%;
    animation-delay: 20s;
    animation-duration: 29s;
    background: var(--gradient-secondary);
    box-shadow: 0 0 10px var(--secondary-color);
}

.particle:nth-child(7) {
    width: 6px;
    height: 6px;
    top: 65%;
    left: 15%;
    animation-delay: 24s;
    animation-duration: 31s;
    background: var(--gradient-primary);
    box-shadow: 0 0 15px var(--primary-color);
}

.particle:nth-child(8) {
    width: 8px;
    height: 8px;
    top: 45%;
    left: 85%;
    animation-delay: 28s;
    animation-duration: 27s;
    background: var(--gradient-secondary);
    box-shadow: 0 0 20px var(--secondary-color);
}

/* Dynamic Mesh Background */
.energy-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(245, 158, 11, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.02) 0%, transparent 50%);
    animation: meshPulse 12s ease-in-out infinite;
    opacity: 0.6;
}

/* Animated Light Beams */
.light-rays {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.light-ray {
    position: absolute;
    width: 4px;
    height: 100vh;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    animation: beamSweep 8s ease-in-out infinite;
    opacity: 0.2;
    box-shadow: 0 0 25px var(--primary-color);
    border-radius: 2px;
}

.light-ray:nth-child(1) {
    left: 15%;
    animation-delay: 0s;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
}

.light-ray:nth-child(2) {
    left: 35%;
    animation-delay: 2s;
    background: linear-gradient(to bottom, transparent, var(--secondary-color), transparent);
    box-shadow: 0 0 25px var(--secondary-color);
}

.light-ray:nth-child(3) {
    left: 55%;
    animation-delay: 4s;
    background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
    box-shadow: 0 0 25px var(--accent-color);
}

.light-ray:nth-child(4) {
    left: 75%;
    animation-delay: 6s;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
}

/* New Animation Keyframes */
@keyframes waveFloat {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-25px) translateX(15px) scale(1.1) rotate(90deg);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-40px) translateX(-10px) scale(1.2) rotate(180deg);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-20px) translateX(-20px) scale(1.05) rotate(270deg);
        opacity: 0.6;
    }
}

@keyframes orbFloat {
    0% {
        transform: translateY(100vh) translateX(0) scale(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
        transform: translateY(90vh) translateX(30px) scale(1) rotate(36deg);
    }

    30% {
        opacity: 0.8;
        transform: translateY(70vh) translateX(-20px) scale(1.2) rotate(108deg);
    }

    50% {
        opacity: 1;
        transform: translateY(50vh) translateX(25px) scale(1.1) rotate(180deg);
    }

    70% {
        opacity: 0.8;
        transform: translateY(30vh) translateX(-15px) scale(1.3) rotate(252deg);
    }

    90% {
        opacity: 0.6;
        transform: translateY(10vh) translateX(20px) scale(1) rotate(324deg);
    }

    100% {
        transform: translateY(-10vh) translateX(0) scale(0) rotate(360deg);
        opacity: 0;
    }
}

@keyframes meshPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1) rotate(0deg);
    }

    25% {
        opacity: 0.6;
        transform: scale(1.05) rotate(90deg);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.1) rotate(180deg);
    }

    75% {
        opacity: 0.7;
        transform: scale(1.05) rotate(270deg);
    }
}

@keyframes beamSweep {

    0%,
    100% {
        opacity: 0.1;
        transform: scaleY(0.8) translateX(0);
    }

    25% {
        opacity: 0.3;
        transform: scaleY(1.1) translateX(10px);
    }

    50% {
        opacity: 0.5;
        transform: scaleY(1.3) translateX(-5px);
    }

    75% {
        opacity: 0.3;
        transform: scaleY(1.1) translateX(15px);
    }
}

/* Coming Soon Container */
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 4rem;
}

.brand-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.logo-symbol {
    width: 140px;
    height: 140px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-primary), var(--shadow-soft);
    animation: logoPulse 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.logo-ring {
    position: absolute;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: logoRotate 8s linear infinite;
}

.logo-ring:nth-child(2) {
    width: 160px;
    height: 160px;
    animation-delay: 0s;
    border-color: var(--secondary-color);
}

.logo-ring:nth-child(3) {
    width: 180px;
    height: 180px;
    animation-delay: 2s;
    border-color: var(--accent-color);
}

.logo-ring:nth-child(4) {
    width: 200px;
    height: 200px;
    animation-delay: 4s;
    border-color: var(--primary-color);
}

.logo-inner {
    position: relative;
    z-index: 1;
}

.logo-inner i {
    font-size: 3.5rem;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    animation: iconGlow 3s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

@keyframes logoRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes iconGlow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
    }

    50% {
        text-shadow: 0 0 40px rgba(99, 102, 241, 0.8);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-shadow: var(--glow-primary);
    text-transform: uppercase;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(99, 102, 241, 0.5));
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: var(--font-display);
    animation: subtitlePulse 2s ease-in-out infinite;
}

@keyframes subtitlePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: var(--font-mono);
}

/* Contact Section */
.contact-section {
    margin-bottom: 3rem;
}

.contact-container {

    backdrop-filter: blur(20px);

    border-radius: 20px;
    padding: 2rem;

    max-width: 400px;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.contact-container:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-primary), var(--shadow-glow);
    border-color: rgba(99, 102, 241, 0.5);
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.contact-item:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.3);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.contact-item span {
    color: var(--text-color);
    font-weight: 500;
    font-family: var(--font-mono);
}

/* Navigation Section */
.navigation-section {
    text-align: center;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    transition: all 0.4s ease;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: var(--font-primary);
    text-transform: uppercase;
}

.nav-link:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-3px);
    color: var(--text-color);
    text-decoration: none;
    box-shadow: var(--glow-primary);
    border-color: rgba(99, 102, 241, 0.5);
}

.nav-link i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.nav-link:hover i {
    transform: translateX(5px);
}

/* Contact Page Styles */
.contact-page-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.page-header {
    margin-bottom: 4rem;
}

.page-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-shadow: var(--glow-primary);
    text-transform: uppercase;
}

.contact-info-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--glow-primary), var(--shadow-soft);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.6s;
}

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

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-secondary), var(--shadow-glow);
    border-color: rgba(245, 158, 11, 0.5);
}

.card-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.card-header i {
    color: var(--secondary-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: pulse 3s ease-in-out infinite;
    text-shadow: 0 0 25px rgba(245, 158, 11, 0.5);
}

.card-header h3 {
    color: var(--text-color);
    font-weight: 800;
    margin: 0;
    font-size: 1.8rem;
    letter-spacing: 2px;
    font-family: var(--font-display);
    text-transform: uppercase;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item:hover {
    transform: translateX(15px);
    background: rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: var(--glow-primary);
    transition: all 0.4s ease;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.2) rotate(360deg);
    box-shadow: var(--glow-secondary);
}

.contact-details h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
    font-family: var(--font-display);
    text-transform: uppercase;
}

.contact-details p {
    color: var(--text-color);
    margin: 0;
    opacity: 0.9;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-mono);
}

.contact-form-card {
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--glow-primary), var(--shadow-soft);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.1), transparent);
    transition: left 0.6s;
}

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

.contact-form-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-secondary), var(--shadow-glow);
    border-color: rgba(245, 158, 11, 0.5);
}

.contact-form {
    position: relative;
    z-index: 1;
}

.contact-form .form-group {
    margin-bottom: 2rem;
}

.contact-form .form-label {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
    font-family: var(--font-display);
    text-transform: uppercase;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    color: var(--text-color);
    backdrop-filter: blur(10px);
    font-weight: 500;
    font-family: var(--font-primary);
}

.contact-form .form-control:focus {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.3rem rgba(99, 102, 241, 0.2), var(--glow-primary);
    outline: none;
    transform: translateY(-3px);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
    font-family: var(--font-primary);
}

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

.btn-submit {
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 15px;
    padding: 1.5rem 2.5rem;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: var(--glow-primary), var(--shadow-soft);
    font-family: var(--font-display);
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--glow-secondary), var(--shadow-glow);
}

.btn-submit i {
    margin-right: 1rem;
}

.success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-top: 2rem;
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 1;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.2);
}

.success-icon {
    margin-bottom: 2rem;
}

.success-icon i {
    font-size: 5rem;
    color: var(--success-color);
    animation: pulse 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
}

.success-message h4 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: 2px;
    font-family: var(--font-display);
    text-transform: uppercase;
}

.success-message p {
    color: var(--text-muted);
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 500;
    font-family: var(--font-primary);
}

/* Back to Home Link */
.back-home-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-color);
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    transition: all 0.4s ease;
    font-weight: 600;
    letter-spacing: 1px;
    font-family: var(--font-primary);
    text-transform: uppercase;
}

.back-home-link:hover {
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-3px);
    color: var(--text-color);
    text-decoration: none;
    box-shadow: var(--glow-primary);
    border-color: rgba(99, 102, 241, 0.5);
}

.back-home-link i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.back-home-link:hover i {
    transform: translateX(-5px);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

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

    .logo-symbol {
        width: 120px;
        height: 120px;
    }

    .logo-inner i {
        font-size: 3rem;
    }

    .page-title {
        font-size: 3rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 2rem;
    }

    .card-header i {
        font-size: 2.5rem;
    }

    .card-header h3 {
        font-size: 1.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .contact-details h4 {
        font-size: 1.1rem;
    }

    .contact-details p {
        font-size: 1rem;
    }
}

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

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .logo-symbol {
        width: 100px;
        height: 100px;
    }

    .logo-inner i {
        font-size: 2.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 1.5rem;
    }

    .card-header i {
        font-size: 2rem;
    }

    .card-header h3 {
        font-size: 1.3rem;
    }

    .contact-info-item {
        padding: 1.5rem 0;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }

    .contact-details h4 {
        font-size: 1rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }

    .contact-form .form-control {
        padding: 1.2rem 1.5rem;
    }

    .btn-submit {
        padding: 1.2rem 2rem;
    }

    .nav-link,
    .back-home-link {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
}