* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4a90e2;
    --primary-dark: #357abd;
    --primary-light: #6ba3e8;
    --accent: #5b9bd5;
    --dark: #0a0a0a;
    --darker: #000000;
    --gray: #a8a8a8;
    --light-gray: #2a2a2a;
    --white: #ffffff;
    --light: #1a1a1a;
    --bg-dark: #0f0f0f;
    --bg-darker: #050505;
    --success: #10b981;
    --danger: #ef4444;
    --danger-light: #f87171;
    --card-bg: #1a1a1a;
    --border-color: #2a2a2a;
    --secondary: #ef4444;
    --secondary-dark: #dc2626;
    --secondary-light: #f87171;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    color: #e0e0e0;
    line-height: 1.6;
    background: var(--darker);
    overflow-x: hidden;
}

*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary);
    color: var(--white);
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 8px 0;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem 0.5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.navbar .logo img {
    height: 60px;
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    box-shadow: 0 0 10px var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 1.5rem;
}

.lang-switcher a {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: var(--light);
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    color: var(--gray);
    text-decoration: none;
}

.lang-switcher a.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.3);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero-section {
    margin-top: 75px;
    padding: 120px 0 0px;
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0%;
    left: -5%;
    width: 800px;
    height: 764px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text h1 .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(74, 144, 226, 0.5));
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(74, 144, 226, 0.4)); }
    50% { filter: drop-shadow(0 0 40px rgba(74, 144, 226, 0.7)); }
}

.hero-text .subtitle {
    font-size: 1.3rem;
    color: #b8b8b8;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1.1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.4);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.btn-primary::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.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.6);
}

.btn-danger {
    background: linear-gradient(135deg, var(--danger), var(--danger-light));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
    font-weight: 700;
    position: relative;
    overflow: hidden;
}

.btn-danger::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.5s;
}

.btn-danger:hover::before {
    left: 100%;
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.6);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 24px;
    height: auto;
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: -70px auto 0;
    padding: 0 3rem;
    position: relative;
    z-index: 10;
}

.stat-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
    border: 1px solid rgba(239, 68, 68, 0.15);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    border-color: var(--secondary);
}

.stat-card .icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.3));
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 500;
}

.section {
    padding: 120px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 5rem;
}

.section-header .label {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.05));
    color: var(--secondary);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: #b8b8b8;
    line-height: 1.8;
}

.about-section {
    background: var(--bg-dark);
    padding-top: 50px!important;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.6);
    border: 2px solid rgba(74, 144, 226, 0.2);
    filter: brightness(0.9) contrast(1.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    opacity: 0.2;
    border-radius: 24px;
    z-index: -1;
    box-shadow: 0 0 60px rgba(239, 68, 68, 0.4);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--secondary-dark), var(--secondary-light));
    opacity: 0.15;
    border-radius: 24px;
    z-index: -1;
    box-shadow: 0 0 60px rgba(239, 68, 68, 0.3);
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.8rem;
    line-height: 1.3;
}

.about-text p {
    color: #b8b8b8;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(239, 68, 68, 0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateX(5px);
}

.feature-item .icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darker);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.feature-item span {
    font-weight: 600;
    color: #e0e0e0;
}

.services-section {
    background: var(--darker);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--card-bg);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(239, 68, 68, 0.15);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    box-shadow: 0 0 20px var(--secondary);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
    border-color: var(--secondary);
    background: linear-gradient(135deg, var(--card-bg), rgba(239, 68, 68, 0.05));
}

.service-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--darker);
    margin-bottom: 1.8rem;
    box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
    transition: all 0.3s ease;
}

.service-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(239, 68, 68, 0.6);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.service-card p {
    color: #b8b8b8;
    line-height: 1.8;
    font-size: 1rem;
}

.valuation-section {
    background: var(--bg-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.valuation-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.valuation-section .section-header .label {
    background: rgba(239, 68, 68, 0.15);
    color: var(--secondary);
    border-color: rgba(239, 68, 68, 0.3);
}

.valuation-section .section-header h2,
.valuation-section .section-header p {
    color: var(--white);
}

.valuation-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: #e0e0e0;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--bg-dark);
    color: #e0e0e0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
    background: rgba(239, 68, 68, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-submit {
    text-align: center;
}

.form-submit .btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.05rem;
}

.g-recaptcha {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.portfolio-section {
    background: var(--darker);
}

.portfolio-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.portfolio-card {
    background: var(--card-bg);
    padding: 3.5rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(239, 68, 68, 0.15);
    position: relative;
    overflow: hidden;
}

.portfolio-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), transparent);
    transform: rotate(45deg) scale(0);
    transition: transform 0.5s ease;
}

.portfolio-card:hover::before {
    transform: rotate(45deg) scale(1);
}

.portfolio-card:hover {
    background: linear-gradient(135deg, var(--card-bg), rgba(239, 68, 68, 0.05));
    border-color: var(--secondary);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.portfolio-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    filter: drop-shadow(0 0 20px rgba(239, 68, 68, 0.3));
}

.portfolio-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
}

.text-center {
    text-align: center;
}

.contact-section {
    background: var(--bg-dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3.5rem;
}

.contact-info {
    background: var(--card-bg);
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    height: fit-content;
}

.contact-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(239, 68, 68, 0.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateX(5px);
}

.contact-item .icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darker);
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.contact-item-text h4 {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-item-text p {
    font-size: 1.05rem;
    font-weight: 500;
    color: #e0e0e0;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-item-text a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.contact-item-text a:hover {
    color: var(--secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darker);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.6);
}

.map-container {
    margin-top: 2.5rem;
    border-radius: 14px;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: brightness(0.9) contrast(1.1) saturate(0.8);
}

.contact-form-wrapper {
    background: var(--card-bg);
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid rgba(239, 68, 68, 0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.contact-form-wrapper h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

footer {
    background: #000000;
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(239, 68, 68, 0.2);
}

footer p {
    color: rgba(255,255,255,0.5);
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
}

footer .developer-credit {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

footer .developer-credit a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

footer .developer-credit a:hover {
    color: var(--secondary-light);
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    min-width: 44px;
    min-height: 44px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float i {
    display: block;
    margin-bottom: 2px;
}

.whatsapp-float span {
    font-size: 0.65rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 1;
    margin-top: -2px;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.sahibinden-float {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 65px;
    height: 65px;
    min-width: 44px;
    min-height: 44px;
    background: linear-gradient(135deg, #FFE800, #FFC800);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 232, 0, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 8px;
}

.sahibinden-float img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    margin-bottom: 2px;
}

.sahibinden-float span {
    font-size: 0.6rem;
    font-weight: 700;
    text-align: center;
    color: #333;
    letter-spacing: 0.2px;
    line-height: 1;
    margin-top: -2px;
}

.sahibinden-float:hover,
.sahibinden-float:focus {
    transform: scale(1.15);
    box-shadow: 0 12px 35px rgba(255, 232, 0, 0.6);
}

.floating-contact-bar {
    position: fixed;
    bottom: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 998;
    animation: slideInRight 0.5s ease-out;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}

.floating-contact-bar.hidden {
    opacity: 0;
    transform: translateX(120px);
    visibility: hidden;
    pointer-events: none;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 50px;
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    min-width: 240px;
}

.floating-bar-item i {
    font-size: 1.5rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.floating-bar-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--white);
    padding: 4px;
    flex-shrink: 0;
}

.whatsapp-item {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.95), rgba(18, 140, 126, 0.95));
    border-color: rgba(37, 211, 102, 0.3);
}

.whatsapp-item i {
    background: rgba(255, 255, 255, 0.2);
}

.whatsapp-item:hover,
.whatsapp-item:focus {
    transform: translateX(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    border-color: rgba(37, 211, 102, 0.6);
}

.sahibinden-item {
    background: linear-gradient(135deg, rgba(255, 232, 0, 0.95), rgba(255, 200, 0, 0.95));
    border-color: rgba(255, 232, 0, 0.3);
    color: #1a1a1a;
}

.sahibinden-item:hover,
.sahibinden-item:focus {
    transform: translateX(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 232, 0, 0.5);
    border-color: rgba(255, 232, 0, 0.6);
}

@media (max-width: 768px) {
    .floating-contact-bar {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-bar-item {
        padding: 10px 16px;
        min-width: 200px;
        font-size: 1.1rem;
    }
    
    .floating-bar-item i,
    .floating-bar-item img {
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .floating-contact-bar {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-bar-item {
        padding: 8px 12px;
        min-width: 170px;
        font-size: 1.15rem;
        gap: 8px;
    }
    
    .floating-bar-item i,
    .floating-bar-item img {
        width: 30px;
        height: 30px;
        font-size: 1.5rem;
    }
}

.alert {
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: none;
    font-weight: 500;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.alert.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.alert-error {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.field-error {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1200px) {
    .navbar-container,
    .hero-content,
    .container {
        padding: 1rem 2rem;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-content,
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .portfolio-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-bar {
        grid-template-columns: 1fr;
        margin-top: 3rem;
        margin-bottom: 3rem;
        gap: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: var(--card-bg);
        width: 100%;
        padding: 2rem;
        border-bottom: 1px solid rgba(74, 144, 226, 0.2);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        transition: left 0.3s ease;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .lang-switcher {
        margin-left: 0;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text .subtitle {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .portfolio-cards {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info,
    .contact-form-wrapper,
    .valuation-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
}

.grecaptcha-badge {
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
