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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(to bottom,
            #3a3a3a 0%,
            #1a1a1a 50%,
            #000000 100%);
    color: #fff;
    overflow-x: hidden;
    cursor: none;
}

/* Cursor  */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background-color: white;
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Animated Background */
.animated-background {
    position: fixed;
    inset: 0;
    z-index: -10;
    overflow: hidden;
    pointer-events: none;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.orb-1 {
    top: 0;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(to right, #1f2937, #262626);
    opacity: 0.3;
    animation: float1 20s ease-in-out infinite;
}

.orb-2 {
    bottom: 0;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(to left, #171717, #1f2937);
    opacity: 0.3;
    animation: float2 25s ease-in-out infinite;
}

.orb-3 {
    top: 50%;
    right: 0;
    width: 20rem;
    height: 20rem;
    background: linear-gradient(to bottom right, #1f2937, #171717);
    opacity: 0.2;
    animation: float3 18s ease-in-out infinite;
}

@keyframes float1 {

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

    50% {
        transform: translate(100px, -100px) scale(1.2);
    }
}

@keyframes float2 {

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

    50% {
        transform: translate(-100px, 100px) scale(1.3);
    }
}

@keyframes float3 {

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

    50% {
        transform: translate(50px, -50px) scale(1.1);
    }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(128, 128, 128, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(128, 128, 128, 0.07) 1px, transparent 1px);
    background-size: 64px 64px;
}

.floating-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #4b5563;
    border-radius: 50%;
    animation: particleFloat 7s ease-in-out infinite;
}

@keyframes particleFloat {

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

    50% {
        transform: translateY(-30px);
        opacity: 0.8;
    }
}

/* Main Content */
.main-content {
    position: relative;
    min-height: 100vh;
    opacity: 0;
    animation: contentFadeIn 0.6s ease-out 2s forwards;
    top: 5rem;
}

@keyframes contentFadeIn {
    to {
        opacity: 1;
    }
}

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

.max-w-6xl {
    max-width: 1152px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: #2e2e2e;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    animation: slideDown 0.6s ease forwards;
    animation-delay: 0.5s;
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.7s;
}

.navbar-logo .logo-box {
    width: 45px;
    height: 45px;
    font-size: 12px;
    margin: 0;

}

.img-small {
    width: 35px;
    height: 35px;
    margin: 5px 5px;
}

.logo-box {
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 25%;
    margin-right: 100px;
}

.logo-text {
    font-weight: 600;
    color: #ffffff;
    font-size: 18px;
}

.navbar-menu {
    display: flex;
    gap: 30px;
}

.navbar-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #2e2e2e;
    padding: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    gap: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 0.4s ease forwards;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.nav-link:nth-child(1) {
    animation-delay: 0.8s;
}

.nav-link:nth-child(2) {
    animation-delay: 0.9s;
}

.nav-link:nth-child(3) {
    animation-delay: 1.0s;
}

.nav-link:nth-child(4) {
    animation-delay: 1.1s;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

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

.navbar-actions {
    display: flex;
    gap: 12px;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 1.2s;
}

.btn-primary-small,
.btn-secondary-small {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.btn-primary-small {
    background: #ffffff;
    color: #000000;
}

.btn-primary-small:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

.btn-secondary-small {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
    }

    .navbar-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .title {
        font-size: 2.25rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.header {
    border-bottom: 1px solid #262626;
    background-color: rgba(23, 23, 23, 0.5);
    backdrop-filter: blur(12px);
    animation: headerSlideDown 0.6s ease-out 2s both;
}

@keyframes headerSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header .container {
    padding: 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.05em;
    animation: logoSlideIn 0.6s ease-out 2.2s both;
}

.logo span {
    color: #6b7280;
}

@keyframes logoSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Main */
.main {
    padding: 4rem 0;
}

/* Page Title */
.page-title {
    text-align: center;
    margin-bottom: 4rem;
}

.title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    animation: titleScale 0.7s ease-out 2.3s both;
}

@keyframes titleScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.subtitle {
    color: #9ca3af;
    font-size: 1.125rem;
    max-width: 48rem;
    margin: 0 auto;
    animation: subtitleSlideUp 0.6s ease-out 2.5s both;
}

@keyframes subtitleSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-left {
    animation: slideInLeft 0.7s ease-out 2.6s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-right {
    animation: slideInRight 0.7s ease-out 2.7s both;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Contact Info */
.contact-info {
    margin-bottom: 2rem;
}

.info-header {
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 2.8s both;
}

.info-header h2 {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
}

.info-header p {
    color: #9ca3af;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInSlideLeft 0.5s ease-out forwards;
}

.contact-item[data-index="0"] {
    animation-delay: 2.9s;
}

.contact-item[data-index="1"] {
    animation-delay: 3s;
}

.contact-item[data-index="2"] {
    animation-delay: 3.1s;
}

@keyframes fadeInSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.icon-wrapper {
    background-color: #262626;
    padding: 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    animation: iconFloat 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.contact-item[data-index="0"] .icon-wrapper {
    animation-delay: 0s;
}

.contact-item[data-index="1"] .icon-wrapper {
    animation-delay: 0.2s;
}

.contact-item[data-index="2"] .icon-wrapper {
    animation-delay: 0.4s;
}

@keyframes iconFloat {

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

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

.icon-wrapper .icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #9ca3af;
    animation: iconRotate 3s ease-in-out infinite;
}

.contact-item[data-index="0"] .icon-wrapper .icon {
    animation-delay: 0s;
}

.contact-item[data-index="1"] .icon-wrapper .icon {
    animation-delay: 0.3s;
}

.contact-item[data-index="2"] .icon-wrapper .icon {
    animation-delay: 0.6s;
}

@keyframes iconRotate {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    75% {
        transform: rotate(-5deg);
    }
}

.icon-wrapper:hover {
    animation-play-state: paused;
    transform: scale(1.2);
}

.icon-wrapper:hover .icon {
    animation-play-state: paused;
}

@keyframes iconShake {

    0%,
    100% {
        transform: scale(1.2) rotate(0deg);
    }

    25% {
        transform: scale(1.2) rotate(-10deg);
    }

    50% {
        transform: scale(1.2) rotate(10deg);
    }

    75% {
        transform: scale(1.2) rotate(-10deg);
    }
}

.icon-wrapper:active {
    transform: scale(0.9) !important;
}

.item-content h3 {
    color: #fff;
    margin-bottom: 0.25rem;
}

.item-content a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.item-content a:hover {
    color: #fff;
}

.item-content p {
    color: #9ca3af;
    margin: 0;
}

.small-text {
    font-size: 0.875rem;
}

/* Social Links */
.social-links {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #262626;
}

.social-links h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.5s ease-out 3.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

@media (min-width: 768px) {
    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: #262626;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.8s ease;
    /* opacity: 0; */
}

.social-link:hover {
    background-color: #404040;
    transform: scale(1.05) translateY(-8px);
    animation: socialWiggle 0.3s ease;
}

@keyframes socialWiggle {

    0%,
    100% {
        transform: scale(1.05) translateY(-8px) rotate(0deg);
    }

    33% {
        transform: scale(1.05) translateY(-8px) rotate(-5deg);
    }

    66% {
        transform: scale(1.05) translateY(-8px) rotate(5deg);
    }
}

.social-link:active {
    transform: scale(0.95);
}

.social-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #9ca3af;
    transition: color 0.3s ease;
    animation: socialIconSpin 4s ease-in-out infinite;
}

@keyframes socialIconSpin {

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

    25% {
        transform: rotate(10deg) scale(1.1);
    }

    50% {
        transform: rotate(-10deg) scale(1);
    }

    75% {
        transform: rotate(0deg) scale(1.1);
    }
}

.social-link:hover .social-icon {
    color: #fff;
    animation-play-state: paused;
    opacity: 1;
}

.social-label {
    font-size: 0.875rem;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.social-link:hover .social-label {
    color: #fff;
}

.social-handle {
    font-size: 0.75rem;
    color: #6b7280;
}

/* Contact Form */
.form-container {
    background-color: #171717;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid #262626;
}

.form-container h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.success-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: rgba(22, 101, 52, 0.3);
    border: 1px solid #15803d;
    color: #86efac;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    animation: successSlideDown 0.3s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-message.hidden {
    display: none;
}

.success-icon {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    animation: fieldSlideIn 0.5s ease-out forwards;
}

.form-field[data-index="0"] {
    animation-delay: 2.8s;
}

.form-field[data-index="1"] {
    animation-delay: 2.9s;
}

.form-field[data-index="2"] {
    animation-delay: 3s;
}

.form-field[data-index="3"] {
    animation-delay: 3.1s;
}

@keyframes fieldSlideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-field label {
    color: #d1d5db;
    font-size: 0.875rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.75rem;
    background-color: #262626;
    border: 1px solid #404040;
    border-radius: 0.375rem;
    color: #fff;
    font-family: inherit;
    font-size: 0.875rem;
    transition: border-color 0.3s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #6b7280;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #6b7280;
}

.form-field textarea {
    resize: none;
}

.form-submit {
    opacity: 0;
    animation: buttonSlideUp 0.5s ease-out 3.2s forwards;
}

@keyframes buttonSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #404040;
    color: #fff;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #525252;
}

.submit-btn:active {
    transform: scale(0.98);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-icon {
    width: 1rem;
    height: 1rem;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid #1f2937;
    padding: 48px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-box {
    width: 45px;
    height: 45px;
    font-size: 12px;
    margin: 0;
}

.footer-description {
    color: #6b7280;
    font-size: 14px;
}

.footer-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #1f2937;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}

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

    .subtitle {
        font-size: 1rem;
    }

    .loading-logo {
        font-size: 2.5rem;
    }
}