:root {
    --bg-color: #0d0f12;
    --card-bg: #161a1e;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --accent-green: #22c55e;
    --accent-yellow: #facc15;
    --font-main: 'Outfit', sans-serif;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    --pattern-color: rgba(255, 255, 255, 0.05);
}

body.light-theme {
    --bg-color: #f8fafc;
    --card-bg: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    --pattern-color: rgba(0, 0, 0, 0.03);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

/* Typography */
.text-green {
    color: var(--accent-green);
}

.text-yellow {
    color: var(--accent-yellow);
}

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

.d-none {
    display: none !important;
}

.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

.service-card.filtering-out {
    opacity: 0;
    transform: translateY(20px);
}



/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 10px;
}

.btn-resume {
    background: linear-gradient(135deg, var(--accent-green), #16a34a);
    color: #fff;
    padding: 10px 24px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    text-decoration: none;
}

.btn-resume:hover {
    background: linear-gradient(135deg, #16a34a, var(--accent-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-pill-green {
    background: linear-gradient(135deg, var(--accent-green), #16a34a);
    color: #fff;
    padding: 14px 32px;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
    text-decoration: none;
}

.btn-pill-green:hover {

    background: linear-gradient(135deg, #16a34a, var(--accent-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(34, 197, 94, 0.4);
}

.theme-toggle {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


.theme-toggle:hover {
    transform: scale(1.1);
    border-color: var(--accent-green);
}


.btn-pill-green:hover {
    background: linear-gradient(135deg, #16a34a, var(--accent-green));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* Background Effects */
.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.glow-1 {
    top: -10%;
    left: -10%;
    background: var(--accent-green);
}

.glow-2 {
    bottom: -10%;
    right: -10%;
    background: var(--accent-yellow);
}

.glow-3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #23a6f0;
}

body.light-theme .glow {
    opacity: 0.1;
}


/* Navbar */

.navbar {
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-color);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

body.light-theme .navbar {
    background: rgba(248, 250, 252, 0.8);
    border-bottom-color: rgba(0, 0, 0, 0.05);
}


.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 800;
}

.logo-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    padding: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}


.nav-links>li {
    position: relative;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-primary);
    opacity: 0.8;
    text-decoration: none;
}


.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--accent-yellow);
}

/* Dropdown */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #d1d5db;
    width: 200px;
    padding: 15px 0;
    border-top: 3px solid var(--accent-green);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
}

.dropdown li a {
    color: #000 !important;
    padding: 10px 20px;
    display: block;
    font-size: 0.9rem;
}

.dropdown li a:hover {
    color: var(--accent-green) !important;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    z-index: 10;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 24px;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 40px;
}

.hero-image-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle-bg {
    width: 480px;
    height: 480px;
    border-radius: 50%;
    position: relative;
}

.person-circle {
    width: 100%;
    height: 100%;
    background: #23a6f0;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
}

.person-circle img {
    max-width: 100%;
    height: auto;
}

/* Floating Elements */
.float-box {
    position: absolute;
    background: #fff;
    color: #000;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.8rem;
    box-shadow: var(--shadow);
    z-index: 20;
}

.box-ps {
    top: 10%;
    left: 0;
}

.box-ai {
    top: 20%;
    right: 0;
}

.float-card {
    position: absolute;
    background: #fff;
    color: #000;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    box-shadow: var(--shadow);
    z-index: 25;
}


.card-projects {
    bottom: 10%;
    left: 0;
}

.card-diamond {
    bottom: 0;
    right: 5%;
    padding: 15px 30px;
}

.hero-bg-patterns {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.circle-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--pattern-color);
}


.pattern-1 {
    width: 600px;
    height: 600px;
}

.pattern-2 {
    width: 900px;
    height: 900px;
}

.pattern-3 {
    width: 1200px;
    height: 1200px;
}

/* Advantages Section */
.advantages {
    padding: 60px 0;
}

.advantages-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.exp-main-box {
    background: #1d1e18;
    padding: 60px;
    border-radius: 24px;
    position: relative;
    text-align: left;
}

.big-number {
    font-size: 10rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-yellow);
}

.exp-label {
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 10px;
}

.satisfaction-mini-card {
    position: absolute;
    bottom: 40px;
    right: -40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.satisfaction-mini-card .text-green {
    font-size: 2.2rem;
    font-weight: 800;
}

.mini-label {
    font-size: 0.8rem;
    line-height: 1.2;
    color: var(--text-secondary);
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-desc {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.skill-card {
    background: var(--card-bg);
    padding: 40px 20px;
    border-radius: 16px;
    text-align: center;
    border-top: 4px solid transparent;
}

.sk-percent {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.sk-name {
    font-size: 1rem;
    font-weight: 500;
}

.sk-figma {
    border-color: #facc15;
}

.sk-figma .sk-name {
    color: #facc15;
}

.sk-sketch {
    border-color: #2dd4bf;
}

.sk-sketch .sk-name {
    color: #2dd4bf;
}

.sk-ps {
    border-color: #f87171;
}

.sk-ps .sk-name {
    color: #f87171;
}

.sk-ai {
    border-color: #fb923c;
}

.sk-ai .sk-name {
    color: #fb923c;
}

.sk-wp {
    border-color: #38bdf8;
}

.sk-wp .sk-name {
    color: #38bdf8;
}

.sk-react {
    border-color: #a855f7;
}

.sk-react .sk-name {
    color: #a855f7;
}

/* Popular Services */
.services {
    padding: 60px 0;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.tab-btn {
    padding: 12px 40px;
    background: #1e2226;
    color: #fff;
    border: 1px solid transparent;
    border-radius: 40px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.tab-btn.active {
    background: transparent;
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

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

.service-card {
    background: var(--card-bg);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid var(--pattern-color);
}


.service-card:hover {
    transform: translateY(-10px);
}

.service-icon-yellow {
    width: 70px;
    height: 70px;
    background: var(--accent-yellow);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 30px;
}

.service-card h4 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.learn-more {
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Work Experience */
.experience {
    padding: 60px 0;
}

.experience-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.experience-item {
    background: var(--card-bg);
    padding: 40px 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-theme .experience-item {
    border-color: rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.exp-date {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.exp-details {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    margin-left: 100px;
}

.exp-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-yellow);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-theme .exp-logo-img {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.05);
}

.exp-details h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.exp-details p {
    color: var(--text-secondary);
    font-size: 1rem;
}


.go-website {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Recent Work */
.recent-work {
    padding: 60px 0;
}

.work-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.running-man-icon {
    width: 80px;
    height: 80px;
    background: #1d1e18;
    color: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.work-img-wrapper {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.work-img-wrapper img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.work-details-elito h4 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.work-details-elito p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Testimonial */
.testimonial {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.01);
}

.testimonial-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.network-circle {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.network-circle::before,
.network-circle::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.network-circle::before {
    width: 66%;
    height: 66%;
}

.network-circle::after {
    width: 100%;
    height: 100%;
}

.center-person img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #facc15;
    padding: 5px;
    object-fit: cover;
}

.orbit-person {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    background: #161a1e;
    transition: var(--transition);
}

.orbit-1 { top: 5%; left: 15%; }
.orbit-2 { top: 20%; right: 5%; }
.orbit-3 { bottom: 20%; left: 5%; }
.orbit-4 { bottom: 10%; right: 15%; }
.orbit-5 { top: 45%; left: -5%; }

@media (max-width: 768px) {
    .orbit-person { width: 45px; height: 45px; }
    .orbit-5 { display: none; }
}



.testi-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 24px;
}

.testi-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.testi-author {
    margin-bottom: 30px;
}

.testi-author strong {
    font-size: 1.2rem;
}

.testi-author span {
    color: var(--text-secondary);
}

.testi-nav {
    display: flex;
    gap: 15px;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

body.light-theme .nav-arrow {
    border-color: rgba(0, 0, 0, 0.1);
}


.nav-arrow.active {
    background: var(--accent-green);
    border-color: var(--accent-green);
}

/* Footer */
.footer {
    padding: 100px 0 30px;
    background: var(--bg-color);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

body.light-theme .footer {
    border-top-color: rgba(0, 0, 0, 0.05);
}


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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 18px;
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

body.light-theme .contact-form input,
body.light-theme .contact-form textarea {
    border-color: rgba(0, 0, 0, 0.05);
}


.contact-form input:hover,
.contact-form textarea:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(34, 197, 94, 0.3);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.1);
    transform: translateY(-1px);
}

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

/* Custom placeholder color */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-form .btn {
    align-self: flex-start;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-col h4 {
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.brand-info p {
    margin: 25px 0;
    color: var(--text-secondary);
    max-width: 320px;
}

.social-icons-footer {
    display: flex;
    gap: 15px;
}

.social-icons-footer a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-icons-footer a:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
}

}

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

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

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

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

.newsletter-box p {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.input-with-icon {
    position: relative;
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-theme .input-with-icon {
    border-color: rgba(0, 0, 0, 0.05);
}


.input-with-icon input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    outline: none;
}


.input-with-icon i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

/* Pricing Plan */
.pricing {
    padding: 60px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--card-bg);
    padding: 60px 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--pattern-color);
    transition: var(--transition);
    box-shadow: var(--shadow);
}


.pricing-card.active-plan {
    border-color: var(--accent-green);
    transform: scale(1.05);
    z-index: 10;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-secondary);
}

.plan-desc {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.plan-features li {
    margin-bottom: 15px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i {
    color: var(--accent-green);
}

/* Latest News */
.news {
    padding: 100px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid var(--pattern-color);
}


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

.news-content {
    padding: 30px;
}

.news-date {
    font-size: 0.9rem;
    color: var(--accent-green);
    margin-bottom: 15px;
}

.news-card h4 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

/* Page Layouts */
.main-content {
    padding-top: 120px;
}

.contact-page {
    padding: 180px 0 100px;
    min-height: 100vh;
    background: radial-gradient(circle at top right, rgba(34, 197, 94, 0.05), transparent),
                radial-gradient(circle at bottom left, rgba(250, 204, 21, 0.05), transparent);
}

.contact-header {
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .contact-page { padding: 120px 0 60px; }
    .contact-header h1 { font-size: 2.5rem; }
}

.contact-box {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background: var(--card-bg);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-info h3 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff, #a1a1aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.info-item span {
    font-weight: 500;
    color: #fff;
}

@media (max-width: 991px) {
    .contact-box {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .contact-box {
        padding: 30px 20px;
    }
    
    .contact-info h3 {
        font-size: 1.8rem;
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: #16a34a;
}


/* --- RESPONSIVE IMPROVEMENTS --- */

/* Extra Large Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Tablets and Desktops */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-circle-bg {
        width: 400px;
        height: 400px;
    }

    .pattern-2 { width: 700px; height: 700px; }
    .pattern-3 { width: 900px; height: 900px; }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

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

    .section-title {
        font-size: 2.8rem;
    }

    .advantages-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .advantages-left {
        display: flex;
        justify-content: center;
    }

    .services-grid, 
    .works-grid, 
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .testimonial-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .network-circle {
        margin: 0 auto;
        width: 100%;
        max-width: 400px;
        height: 400px;
    }

    .network-circle::after {
        width: 100%;
        height: 100%;
    }

    .center-person img {
        width: 140px;
        height: 140px;
    }

    .orbit-person {
        width: 50px;
        height: 50px;
    }

    .testi-nav {
        justify-content: center;
    }
}

/* Small Laptops and Large Tablets */
@media (max-width: 991px) {
    .nav-links {
        display: none; 
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        order: 1;
    }
    
    .hero-image-area {
        order: 2;
        margin-top: 60px;
    }
    
    .hero-desc {
        max-width: 600px;
    }
    
    .hero-actions {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .experience-item {
        padding: 30px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .exp-details {
        margin-left: 0;
        flex-direction: column;
    }
}

/* Tablets and Mobile Devices */
@media (max-width: 768px) {
    .navbar {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 1.1rem;
        gap: 8px;
    }
    
    .logo-avatar img {
        width: 30px;
        height: 30px;
    }

    .nav-actions {
        gap: 10px;
    }

    .service-tabs {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 30px;
    }

    .tab-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .mobile-nav-toggle {
        display: block;
        margin-left: 0;
    }



    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-color);
        padding: 120px 40px;
        display: flex !important; 
        flex-direction: column;
        gap: 30px;
        transition: 0.5s ease;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }

    .btn-resume {
        display: none; 
    }

    .hero {
        padding: 120px 0 60px !important;
        overflow: hidden !important;
        width: 100% !important;
        display: block !important;
    }

    .hero-container {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 0 15px !important;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-title {
        font-size: 2.8rem !important;
        margin-bottom: 15px !important;
        width: 100% !important;
    }

    .hero-subtitle {
        font-size: 1.4rem !important;
        margin-bottom: 25px !important;
        width: 100% !important;
    }

    .hero-desc {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto 35px !important;
        text-align: center !important;
        padding: 0 !important;
        line-height: 1.6 !important;
        display: block !important;
    }

    .hero-actions {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-bottom: 60px !important;
    }

    .hero-image-area {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
        position: relative !important;
    }

    .hero-circle-bg {
        width: 280px !important;
        height: 280px !important;
        margin: 0 auto !important;
        position: relative !important;
        display: block !important;
    }

    .person-circle {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: flex-end !important;
    }
    
    .person-circle img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .float-box, .float-card, .hero-bg-patterns {
        display: none !important; 
    }


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

    .services-grid, 
    .works-grid, 
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .newsletter-box {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .social-icons-footer {
        justify-content: center;
    }
    
    .pricing-card.active-plan {
        transform: scale(1);
    }
    
    .exp-main-box {
        padding: 40px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .big-number {
        font-size: 7rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .big-number {
        font-size: 5rem;
    }

    .exp-main-box {
        padding: 30px 20px;
    }

    .satisfaction-mini-card {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
        width: 100%;
        justify-content: center;
        background: rgba(255, 255, 255, 0.03);
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card, .work-card, .pricing-card {
        padding: 40px 20px;
    }
    
    .hero-circle-bg {
        width: 240px;
        height: 240px;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
}


/* Touch Device Optimizations */
@media (hover: none) {
    .btn:hover, .service-card:hover, .work-card:hover, .pricing-card:hover {
        transform: none !important;
    }
    
    .nav-links a:active {
        color: var(--accent-yellow);
    }
}