/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #fafbfc;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.header:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
}

.navbar {
    padding: 1.2rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.4));
}

.nav-logo i {
    margin-right: 12px;
    font-size: 2.2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
    transition: all 0.3s ease;
}

.nav-logo:hover i {
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 20%, 60%, 100% { transform: translateY(0); }
    40% { transform: translateY(-8px); }
    80% { transform: translateY(-4px); }
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-item {
    margin-left: 2rem;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 12px 20px;
    border-radius: 30px;
    overflow: hidden;
    display: inline-block;
    z-index: 1;
}

/* Enhanced hover effects for navigation links */
.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 30px;
    transform: scale(0);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    z-index: -1;
}

.nav-link:hover {
    color: #667eea;
    transform: translateY(-3px);
    text-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.nav-link:hover::before {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

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

/* Active state for current page */
.nav-link.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.nav-link.active::after {
    width: 70%;
}

/* Shimmer effect on hover */
.nav-link:hover {
    position: relative;
    overflow: hidden;
}

.nav-link:hover::before {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    }
    50% {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    }
    100% {
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    }
}

/* Ripple effect for navigation links */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.3);
    transform: scale(0);
    animation: ripple-nav 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-nav {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.translate-btn {
    margin-left: 1.5rem;
    position: relative;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.bar {
    width: 28px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 4px 0;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.hamburger:hover .bar:nth-child(1) {
    transform: translateY(2px);
}

.hamburger:hover .bar:nth-child(3) {
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    color: white;
    padding: 140px 0 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="300" cy="800" r="120" fill="url(%23a)"/></svg>');
    animation: float-bg 20s ease-in-out infinite;
}

@keyframes float-bg {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

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

.hero-content {
    transition: all 0.6s ease;
}

.hero-content:hover {
    transform: translateX(10px);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: default;
    transition: all 0.4s ease;
}

.hero-title:hover {
    text-shadow: 0 6px 30px rgba(255,255,255,0.5);
    transform: scale(1.02);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    cursor: default;
}

.hero-subtitle:hover {
    opacity: 1;
    transform: translateY(-2px);
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

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

.btn {
    padding: 16px 36px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn::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:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #667eea;
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,255,255,0.5);
    letter-spacing: 2px;
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255,255,255,0.3);
    letter-spacing: 2px;
}

.btn-secondary:active {
    transform: translateY(-2px) scale(1.02);
}

.hero-image {
    text-align: center;
    position: relative;
}

.hero-icon {
    font-size: 18rem;
    opacity: 0.4;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    cursor: pointer;
    transition: all 0.4s ease;
}

.hero-icon:hover {
    opacity: 0.6;
    transform: scale(1.1) rotate(10deg);
    filter: drop-shadow(0 15px 40px rgba(255,255,255,0.4));
    animation: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    cursor: default;
    transition: all 0.4s ease;
}

.section-title:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 15px rgba(102, 126, 234, 0.3));
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.section-title:hover::after {
    width: 120px;
    height: 6px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f8ff 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23667eea" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23764ba2" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    border-radius: 50%;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover::after {
    width: 300px;
    height: 300px;
}

.service-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.service-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 6px 15px rgba(102, 126, 234, 0.5));
}

.service-card h3 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.4rem;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

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

.service-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover p {
    color: #555;
    transform: translateY(-3px);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.gallery-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-image i {
    font-size: 4rem;
    color: rgba(255,255,255,0.8);
    transition: all 0.4s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery-item:hover .gallery-image i {
    transform: translate(-50%, -50%) scale(1.2) rotate(10deg);
    color: rgba(255,255,255,1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Prices Section */
.prices {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f8ff 100%);
    position: relative;
}

.prices::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23667eea" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23764ba2" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    margin-bottom: 3rem;
}

.price-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.price-card.featured {
    transform: scale(1.05);
    border: 2px solid #667eea;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.price-card:hover::before {
    transform: scaleX(1);
}

.price-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.price-card.featured:hover {
    transform: translateY(-15px) scale(1.07);
}

.price-header {
    padding: 2.5rem 2rem 1.5rem;
    text-align: center;
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.price-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
    transition: all 0.4s ease;
}

.price-card:hover .price-icon {
    transform: scale(1.1) rotate(10deg);
    filter: drop-shadow(0 6px 15px rgba(102, 126, 234, 0.5));
}

.price-header h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.price-card:hover .price-header h3 {
    color: #667eea;
    transform: translateY(-3px);
}

.price-list {
    padding: 0 2rem 2.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

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

.price-item:hover {
    background: rgba(102, 126, 234, 0.05);
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 10px;
    transform: translateX(5px);
}

.service-name {
    color: #666;
    font-weight: 500;
    transition: all 0.3s ease;
}

.price-item:hover .service-name {
    color: #333;
    font-weight: 600;
}

.price {
    color: #667eea;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.price-item:hover .price {
    transform: scale(1.1);
    color: #764ba2;
}

.price-note {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.price-note p {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price-note p:last-child {
    margin-bottom: 0;
}

.price-note i {
    color: #667eea;
    font-size: 1.1rem;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f8ff 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.team-member::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.team-member:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(-45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(-45deg); }
}

.team-member:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.3);
}

.member-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.5s ease;
    cursor: pointer;
}

.member-image::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.team-member:hover .member-image {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.team-member:hover .member-image::before {
    animation: pulse-fast 1s ease-in-out infinite;
}

@keyframes pulse-fast {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

.member-image i {
    font-size: 4rem;
    color: #fff;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
}

.team-member:hover .member-image i {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
}

.team-member h3 {
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.team-member:hover h3 {
    transform: translateY(-5px);
    filter: drop-shadow(0 2px 8px rgba(102, 126, 234, 0.3));
}

.member-title {
    font-weight: 600;
    color: #888;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.team-member:hover .member-title {
    color: #667eea;
    transform: translateY(-3px);
    letter-spacing: 2px;
}

.member-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.team-member:hover .member-description {
    color: #555;
    transform: translateY(-2px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f8ff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.contact-info h3,
.contact-form h3 {
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.8rem;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: default;
}

.contact-info h3:hover,
.contact-form h3:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 3px 10px rgba(102, 126, 234, 0.3));
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.8);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.contact-item:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
    background: rgba(255,255,255,0.95);
}

.contact-item i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-right: 1.5rem;
    margin-top: 0.2rem;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.5));
}

.contact-item h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.contact-item:hover h4 {
    color: #667eea;
}

.contact-item p {
    color: #666;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.contact-item:hover p {
    color: #555;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}

.contact-form {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
    background: rgba(255,255,255,0.95);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 16px 20px;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.8);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
    border-color: rgba(102, 126, 234, 0.4);
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
    background: rgba(255,255,255,0.98);
    transform: translateY(-3px);
}

/* Full Width Map Section */
.map-section-full {
    padding: 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.map-header {
    text-align: center;
    padding: 60px 20px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.map-header h3 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.map-header h3:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 3px 10px rgba(102, 126, 234, 0.3));
}

.map-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.map-container-full {
    position: relative;
    width: 100%;
    max-width: none;
}

.interactive-map-full {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.interactive-map-full iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1);
    transition: all 0.3s ease;
}

.interactive-map-full:hover iframe {
    filter: grayscale(0%) contrast(1.2);
}

.map-overlay-full {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    max-width: 350px;
    transition: all 0.4s ease;
    z-index: 10;
}

.map-overlay-full:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.map-info-full {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.map-marker-full {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.map-overlay-full:hover .map-marker-full {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.map-marker-full i {
    color: white;
    font-size: 1.4rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.map-details-full h4 {
    color: #333;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.map-overlay-full:hover .map-details-full h4 {
    color: #667eea;
}

.map-details-full p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.map-overlay-full:hover .map-details-full p {
    color: #555;
}

.map-actions-full {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.map-btn-full {
    padding: 10px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.map-btn-full:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.map-btn-full i {
    font-size: 0.8rem;
}

.map-features-full {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
}

.feature-item-full {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 280px;
}

.feature-item-full:hover {
    transform: translateX(-10px) scale(1.02);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.2);
    background: rgba(255, 255, 255, 0.98);
}

.feature-item-full i {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.feature-item-full:hover i {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.5);
}

.feature-item-full h5 {
    color: #333;
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.feature-item-full:hover h5 {
    color: #667eea;
}

.feature-item-full p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.feature-item-full:hover p {
    color: #555;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 60px 0 30px;
    position: relative;
    transition: all 0.3s ease;
}

.footer:hover {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo i {
    margin-right: 12px;
    color: #667eea;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.5));
    transition: all 0.3s ease;
}

.footer-logo:hover i {
    transform: rotate(360deg);
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.7));
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #667eea;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: default;
}

.footer-section h4:hover {
    transform: translateY(-2px);
    filter: drop-shadow(0 2px 6px rgba(102, 126, 234, 0.4));
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.footer-section a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #667eea;
    transition: width 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
    transform: translateX(8px);
}

.footer-section a:hover::before {
    width: 100%;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.social-links a::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 ease;
}

.social-links a:hover::before {
    left: 100%;
}

.social-links a:hover {
    transform: translateY(-8px) scale(1.15) rotate(10deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #bdc3c7;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.footer-bottom:hover {
    color: #ecf0f1;
    transform: translateY(-2px);
}

/* Fixed Messenger Button */
.messenger-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0084ff 0%, #00c6ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 132, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    animation: messenger-pulse 3s ease-in-out infinite;
    border: none;
    outline: none;
}

.messenger-btn::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 ease;
    border-radius: 50%;
}

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

@keyframes messenger-pulse {
    0%, 100% { 
        box-shadow: 0 8px 30px rgba(0, 132, 255, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 8px 30px rgba(0, 132, 255, 0.6), 0 0 0 10px rgba(0, 132, 255, 0.1);
        transform: scale(1.05);
    }
}

.messenger-btn:hover {
    transform: scale(1.2) translateY(-8px) rotate(10deg);
    box-shadow: 0 20px 50px rgba(0, 132, 255, 0.7);
    animation: none;
}

.messenger-btn:active {
    transform: scale(1.1) translateY(-4px);
}

.messenger-btn i {
    font-size: 1.8rem;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
}

.messenger-btn:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

/* Enhanced Google Translate Styles */
#google_translate_element {
    display: inline-block;
    position: relative;
}

.goog-te-gadget {
    font-family: inherit !important;
    font-size: 0 !important;
    color: transparent !important;
    white-space: nowrap;
    position: relative;
}

.goog-te-gadget .goog-te-combo {
    margin: 0 !important;
    padding: 12px 16px !important;
    border: 2px solid rgba(102, 126, 234, 0.3) !important;
    border-radius: 25px !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.9) 100%) !important;
    backdrop-filter: blur(10px) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #333 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1) !important;
    cursor: pointer !important;
    min-width: 140px !important;
    text-align: center !important;
}

.goog-te-gadget .goog-te-combo:hover {
    border-color: #667eea !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(240,248,255,0.95) 100%) !important;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.25) !important;
    transform: translateY(-4px) scale(1.05) !important;
}

.goog-te-gadget .goog-te-combo:focus {
    outline: none !important;
    border-color: #667eea !important;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15), 0 8px 30px rgba(102, 126, 234, 0.25) !important;
    background: rgba(255,255,255,0.98) !important;
    transform: translateY(-4px) scale(1.05) !important;
}

.goog-te-gadget .goog-te-combo:active {
    transform: translateY(-2px) scale(1.02) !important;
}

.goog-te-gadget::before {
    content: '🌐';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    z-index: 10;
    pointer-events: none;
    transition: all 0.3s ease;
}

.goog-te-gadget:hover::before {
    transform: translateY(-50%) scale(1.2) rotate(180deg);
}

.translate-wrapper {
    position: relative;
    display: inline-block;
}

.translate-wrapper::after {
    content: 'Translate';
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    color: #667eea;
    pointer-events: none;
    z-index: 5;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.translate-wrapper:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(2px);
}

.goog-te-gadget > span > a {
    display: none !important;
}

.goog-te-gadget .goog-te-combo option {
    background: #fff !important;
    color: #333 !important;
    padding: 8px 12px !important;
}

.goog-te-gadget .goog-te-combo option:hover {
    background: rgba(102, 126, 234, 0.1) !important;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        padding: 3rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 1.5rem 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-icon {
        font-size: 12rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .map-overlay-full {
        position: static;
        margin: 20px;
        max-width: none;
    }
    
    .map-features-full {
        position: static;
        margin: 20px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .feature-item-full {
        max-width: 250px;
    }
    
    .services-grid,
    .gallery-grid,
    .prices-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services,
    .gallery,
    .team,
    .contact,
    .prices {
        padding: 80px 0;
    }
    
    .translate-btn {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .goog-te-gadget .goog-te-combo {
        min-width: 120px !important;
        font-size: 0.8rem !important;
        padding: 10px 14px !important;
    }
    
    .translate-wrapper::after {
        font-size: 0.8rem;
        left: 30px;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .services,
    .gallery,
    .team,
    .contact,
    .prices {
        padding: 60px 0;
    }
    
    .service-card,
    .gallery-item,
    .team-member,
    .contact-form,
    .price-card {
        padding: 2rem 1.5rem;
    }
    
    .messenger-btn {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
    
    .messenger-btn i {
        font-size: 1.5rem;
    }
    
    .map-features-full {
        flex-direction: column;
        align-items: center;
    }
    
    .interactive-map-full {
        height: 400px;
    }
    
    .map-header h3 {
        font-size: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: scaleY(1.2);
}

/* Selection Color */
::selection {
    background: rgba(102, 126, 234, 0.3);
    color: #333;
}

::-moz-selection {
    background: rgba(102, 126, 234, 0.3);
    color: #333;
}

/* Focus Effects for Accessibility */
.btn:focus,
.nav-link:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.messenger-btn:focus,
.map-btn-full:focus {
    outline: 2px solid rgba(102, 126, 234, 0.5);
    outline-offset: 2px;
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
/* Responsive Design */

/* Large Tablets and Small Desktops */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-container {
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .prices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        gap: 3rem;
    }
    
    .map-features-full {
        bottom: 20px;
        right: 20px;
    }
}

/* Tablets */
@media screen and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hamburger {
        display: flex;
        z-index: 10;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px);
        width: 100%;
        text-align: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        padding: 2rem 0;
        border-bottom: 1px solid rgba(102, 126, 234, 0.2);
        max-height: calc(100vh - 75px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
        margin: 0.5rem 0;
        width: 100%;
        border-radius: 0;
    }
    
    .nav-link:hover {
        transform: translateX(10px);
        background: rgba(102, 126, 234, 0.1);
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
    }
    
    .hero-icon {
        font-size: 10rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .services,
    .gallery,
    .team,
    .contact,
    .prices {
        padding: 70px 0;
    }
    
    .services-grid,
    .prices-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
    }
    
    .contact-form {
        padding: 2.5rem;
    }
    
    .map-header {
        padding: 50px 20px 30px;
    }
    
    .map-header h3 {
        font-size: 2rem;
    }
    
    .map-header p {
        font-size: 1rem;
    }
    
    .interactive-map-full {
        height: 400px;
    }
    
    .map-overlay-full {
        position: relative;
        top: auto;
        left: auto;
        margin: 20px;
        max-width: none;
    }
    
    .map-features-full {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .feature-item-full {
        max-width: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .translate-btn {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }
    
    .goog-te-gadget .goog-te-combo {
        min-width: 100% !important;
        font-size: 0.85rem !important;
    }
}

/* Mobile Phones */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        font-size: 1.5rem;
    }
    
    .nav-logo i {
        font-size: 1.8rem;
        margin-right: 8px;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        max-width: none;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .hero-icon {
        font-size: 8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }
    
    .services,
    .gallery,
    .team,
    .contact,
    .prices {
        padding: 50px 0;
    }
    
    .service-card {
        padding: 2.5rem 2rem;
    }
    
    .service-icon {
        font-size: 3.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 220px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-member {
        padding: 2.5rem 2rem;
    }
    
    .member-image {
        width: 120px;
        height: 120px;
    }
    
    .member-image i {
        font-size: 3.5rem;
    }
    
    .team-member h3 {
        font-size: 1.4rem;
    }
    
    .member-title {
        font-size: 0.85rem;
    }
    
    .member-description {
        font-size: 0.95rem;
    }
    
    .prices-grid {
        gap: 2rem;
    }
    
    .price-card {
        padding: 0;
    }
    
    .price-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .price-icon {
        font-size: 3rem;
    }
    
    .price-header h3 {
        font-size: 1.3rem;
    }
    
    .price-list {
        padding: 0 1.5rem 2rem;
    }
    
    .price-item {
        padding: 0.8rem 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .price-item:hover {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }
    
    .service-name {
        font-size: 0.95rem;
    }
    
    .price {
        font-size: 1rem;
        align-self: flex-end;
    }
    
    .price-note {
        padding: 1.5rem;
        margin: 0 15px;
    }
    
    .price-note p {
        font-size: 0.9rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    
    .contact-item {
        padding: 1.2rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 0.8rem;
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .map-header {
        padding: 40px 15px 25px;
    }
    
    .map-header h3 {
        font-size: 1.8rem;
    }
    
    .map-header p {
        font-size: 0.95rem;
    }
    
    .interactive-map-full {
        height: 350px;
    }
    
    .map-overlay-full {
        margin: 15px;
        padding: 1.5rem;
    }
    
    .map-info-full {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .map-marker-full {
        width: 60px;
        height: 60px;
    }
    
    .map-details-full h4 {
        font-size: 1.2rem;
    }
    
    .map-details-full p {
        font-size: 0.95rem;
    }
    
    .map-actions-full {
        justify-content: center;
        width: 100%;
    }
    
    .map-btn-full {
        flex: 1;
        justify-content: center;
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .map-features-full {
        margin: 15px;
        gap: 0.8rem;
    }
    
    .feature-item-full {
        padding: 1rem 1.2rem;
    }
    
    .feature-item-full i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .feature-item-full h5 {
        font-size: 0.95rem;
    }
    
    .feature-item-full p {
        font-size: 0.8rem;
    }
    
    .footer {
        padding: 50px 0 25px;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-logo {
        font-size: 1.6rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
    }
    
    .footer-section p {
        font-size: 0.95rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
    
    .messenger-btn {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .messenger-btn i {
        font-size: 1.4rem;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 360px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .service-card,
    .team-member,
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .btn {
        padding: 11px 20px;
        font-size: 0.9rem;
    }
    
    .map-overlay-full {
        padding: 1.2rem;
    }
    
    .map-btn-full {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
}