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

:root {
    --primary-color: #E63946;
    --secondary-color: #A4161A;
    --accent-color: #F1FAEE;
    --dark-color: #1D3557;
    --light-color: #F8F9FA;
    --gold: #FFB703;
    --green: #06A77D;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

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

/* HEADER STYLES */
.header {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0;
    line-height: 1;
}

.logo p {
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-top: 0.3rem;
}

.navigation {
    flex: 1;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    justify-content: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

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

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}


.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.55rem 0.7rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: all 0.25s ease;
}

.hamburger-menu span {
    width: 22px;
    height: 2.5px;
    background-color: white;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 76px;
    left: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    padding: 0.25rem 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
    z-index: 1200;
    border-radius: 16px;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.mobile-nav-menu li {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav-menu a {
    display: block;
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 1.5rem;
    transition: all 0.25s ease;
}

.mobile-nav-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.ai-chat-toggle,
.booking-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.ai-chat-toggle {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.ai-chat-toggle:hover {
    background-color: white;
    color: var(--primary-color);
    transform: scale(1.05);
}

.booking-btn {
    background-color: var(--gold);
    color: var(--dark-color);
}

.booking-btn:hover {
    background-color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 183, 3, 0.4);
}

/* HERO SECTION */
.hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, #FFF5EE 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-weight: 300;
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.5);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

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

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.2);
    transition: all 0.3s ease;
    object-fit: cover;
}

.hero-img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(230, 57, 70, 0.3);
}

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

/* SECTIONS */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* SERVICES */
.services {
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: linear-gradient(135deg, var(--accent-color) 0%, #FFF5EE 100%);
    padding: 1.5rem 1rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.2);
    border-color: var(--primary-color);
}

.service-card:hover::before {
    opacity: 0.1;
    left: 0;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.service-card p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.price {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
}

/* GALLERY */
.gallery {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.gallery .section-title {
    color: white;
    -webkit-text-fill-color: white;
    background: none;
}

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

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.gallery-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    transition: all 0.3s ease;
}

.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
}

.gallery-grid-preview .gallery-img {
    height: 180px;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.1);
    filter: brightness(1.2);
}

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

.gallery-item h4 {
    padding: 1.5rem;
    background-color: rgba(29, 53, 87, 0.9);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    text-align: center;
}

.gallery-grid-preview .gallery-item h4 {
    padding: 1rem;
    font-size: 1rem;
}

/* ABOUT */
.about {
    background-color: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #555;
}

.features-list {
    list-style: none;
}

.features-list li {
    padding: 0.7rem 0;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.05rem;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(230, 57, 70, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 1px 2px rgba(0, 0, 0, 0.05);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
}

.stat::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(230, 57, 70, 0.05) 50%, 
        transparent 70%);
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.stat:hover::before {
    left: 100%;
}

.stat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        var(--primary-color) 0%, 
        var(--accent-color) 50%, 
        var(--secondary-color) 100%);
    border-radius: 20px 20px 0 0;
}

.stat:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(230, 57, 70, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat h4 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    filter: drop-shadow(0 2px 8px rgba(230, 57, 70, 0.2));
    position: relative;
    z-index: 1;
}

.stat:hover .stat-number {
    transform: scale(1.1) rotateY(5deg);
    filter: drop-shadow(0 5px 15px rgba(230, 57, 70, 0.4));
}

.stat p {
    color: #555;
    font-weight: 700;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

/* СТРАНИЦА ХЕДЪР */
.page-header {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin-top: 20px;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* УСЛУГИ - РАЗШИРЕНО */
.services-grid-full {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card-full {
    background: white;
    padding: 1.8rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.1);
    border-top: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card-full:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(230, 57, 70, 0.2);
}

.service-icon-large {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.service-card-full h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
}

.service-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.service-details {
    text-align: left;
    background: var(--light-color);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-details h4 {
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    font-weight: 700;
    font-size: 0.95rem;
}

.service-details ul {
    list-style: none;
    padding: 0;
}

.service-details li {
    padding: 0.5rem 0;
    color: #555;
    padding-left: 1.5rem;
    position: relative;
}

.service-details li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* ГАЛЕРИЯ - РАЗШИРЕНО */
.gallery {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    padding: 5rem 0;
}

.gallery .section-title {
    color: white;
    -webkit-text-fill-color: white;
    background: none;
}

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

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
    display: block;
}

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

.gallery-item h4 {
    padding: 1.5rem;
    background-color: rgba(29, 53, 87, 0.95);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    text-align: center;
    color: white;
    font-weight: 700;
}

/* ЗА НАС РАЗШИРЕНО */
.about {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.about-text {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.1);
}

.about-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* СТАТИСТИКА СЕКЦИЯ */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffcf4d 0%, var(--gold) 45%, #f5a800 100%);
    color: var(--dark-color);
}

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

/* ЕКИП СЕКЦИЯ */
.team-section {
    padding: 5rem 0;
    background: var(--light-color);
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.2);
}

.member-image {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.team-member h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #666;
    margin-bottom: 0.5rem;
}

.specialization {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
}

/* КОНТАКТ РАЗШИРЕНО */
.contact {
    padding: 5rem 0;
    background-color: white;
}

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

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

.info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.info-item:hover {
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.1);
    transform: translateX(5px);
}

.info-item .icon {
    font-size: 2rem;
    min-width: 50px;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.info-item a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.info-item a:hover {
    color: var(--primary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.2);
}

/* КАРТА */
.map-section {
    padding: 5rem 0;
    background: var(--light-color);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

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

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

.info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.info-item .icon {
    font-size: 2rem;
    min-width: 50px;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.2);
}

/* FOOTER */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
    padding-left: 5px;
}

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

.social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
}

.social-link:hover {
    background-color: var(--gold);
    color: var(--dark-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* AI CHAT MODAL */
.modal {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    width: 350px;
    max-height: 500px;
    overflow: hidden;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    transform: scale(1.2);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    max-height: 350px;
}

.chat-message {
    margin-bottom: 1rem;
    animation: messageSlide 0.3s ease;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-message.user {
    text-align: right;
}

.chat-message.ai {
    text-align: left;
}

.message-text {
    display: inline-block;
    padding: 0.7rem 1rem;
    border-radius: 15px;
    max-width: 85%;
    word-wrap: break-word;
}

.user .message-text {
    background: var(--primary-color);
    color: white;
    border-bottom-right-radius: 3px;
}

.ai .message-text {
    background: #E0E0E0;
    color: var(--dark-color);
    border-bottom-left-radius: 3px;
}

.chat-input {
    display: flex;
    border-top: 1px solid #E0E0E0;
    padding: 1rem;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    padding: 0.6rem 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.chat-input input:focus {
    outline: none;
    border-color: var(--primary-color);
}

#sendChatBtn {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
}

#sendChatBtn:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* SCROLL TO TOP BUTTON */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.6);
}

.scroll-to-top.show {
    opacity: 1;
    pointer-events: auto;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 768px) {
    .header {
        position: sticky;
        top: 0;
    }

    .header-content {
        flex-direction: row;
        gap: 1rem;
    }

    .logo h1 {
        font-size: 1.8rem;
    }

    .logo p {
        font-size: 0.7rem;
    }

    .navigation {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .services-grid-full,
    .team-grid,
    .about-stats {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero .container {
        grid-template-columns: 1fr;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

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

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .modal {
        width: 90%;
        right: 5%;
        left: 5%;
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.8rem;
    }

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

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
    }

    .services-grid {
        grid-template-columns: 2fr 2fr;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat h4 {
        font-size: 2rem;
    }
}

/* UTILITY CLASSES */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.team-intro {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.map-iframe {
    border: 0;
    display: block;
    width: 100%;
}
