* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --secondary: #64748b;
    --accent: #06d6a0;
    --text: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --bg: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text);
}

.logo-icon {
    font-size: 2rem;
    margin-right: 0.5rem;
}

.logo-text {
    font-size: 0.9rem;
    line-height: 1.2;
}

.logo-text strong {
    font-size: 1.1rem;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.header-phone:hover {
    background: var(--primary);
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--text);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.feature i {
    color: var(--accent);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-visual {
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: clamp(360px, 40vw, 560px);
    aspect-ratio: 5 / 4;
    max-height: 72vh;
}




.hero-photo {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 40px;
    object-fit: cover;
}
.floating-card {
    position: absolute;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

.floating-card i {
    color: var(--primary);
    font-size: 1.25rem;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: 10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Portfolio (Photo Gallery) */
.portfolio {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
}

.photo-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.filter-btn {
    border: 1px solid var(--border);
    background: white;
    color: var(--text);
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.photo-grid {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    scroll-snap-type: x proximity;
}

.photo-item {
    flex: 0 0 auto;
    width: clamp(290px, 24vw, 260px);
    aspect-ratio: 3 / 4;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: #f8fafc;
    scroll-snap-align: start;
}

.photo-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease, filter .5s ease;
}

.photo-item::after {
    content: attr(data-caption);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0.75rem 1rem;
    color: #fff;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 80%);
    font-size: 0.95rem;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(5px);
    transition: var(--transition);
}

.photo-item:hover img {
    transform: scale(1.05);
    filter: saturate(1.1);
}

.photo-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
}

.lightbox.open {
    display: flex;
}

.lightbox-image {
    max-width: min(1200px, 95vw);
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.lightbox-caption {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2.5rem;
    color: #e2e8f0;
    background: rgba(15, 23, 42, 0.65);
    padding: 0.6rem 1rem;
    border-radius: 999px;
    font-size: 0.95rem;
    backdrop-filter: blur(6px);
    max-width: 90vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,.2);
    transform: translateY(-2px);
}

.lightbox-close {
    top: 1.5rem;
    right: 1.5rem;
}

.lightbox-prev {
    left: 1.5rem;
}

.lightbox-next {
    right: 1.5rem;
}

/* Services */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: .5rem;
    color: var(--text);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.service-list {
    list-style: none;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 600;
}

/* Advantages */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.advantage-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 1rem;
    line-height: 1;
}

.advantage-card h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.advantage-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Process */
.process {
    background: var(--bg-light);
}

.process-steps {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	max-width: 100%;
	margin: 0 auto;
	justify-content: center;
}

.process-step {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.8rem;
	padding: 1.5rem;
	background: white;
	border-radius: 12px;
	box-shadow: var(--shadow);
	border: 1px solid var(--border);
	flex: 1 1 280px;
	min-width: 260px;
	max-width: 360px;
	transition: var(--transition);
	white-space: normal;
}

.process-step:hover {
	transform: translateY(-2px);
	border-color: var(--primary);
	box-shadow: var(--shadow-lg);
}

.process-step .step-number {
	width: 28px;
	height: 28px;
	background: var(--primary);
	color: white;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	font-weight: 700;
	flex-shrink: 0;
}
.process-step .step-content h3 {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	color: var(--text);
}
.process-step .step-content p {
	margin: 0;
	color: var(--text-light);
	font-size: 0.95rem;
	line-height: 1.4;
	display: block;
	overflow: visible;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
}

.about-stats {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature i {
    color: var(--accent);
}

.about-visual {
    display: flex;
    justify-content: center;
}

.certificate-card {
    background: white;
    padding: .5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 2px solid var(--primary-light);
    max-width: 460px;
}

.certificate-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.certificate-icon {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
}

.certificate-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.certificate-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary);
}

.reviewer-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.reviewer-info span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.review-rating {
    color: #fbbf24;
}

.review-text {
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
}

/* FAQ */
.faq {
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Contacts */
.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--primary);
    font-size: 1.25rem;
}

.contact-details h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-details a:hover {
    color: var(--primary-dark);
}

.contact-details p {
    color: var(--text-light);
}

.contact-action {
    background: white;
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: center;
    border: 2px solid var(--primary-light);
}

.contact-action h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.contact-action p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-icon {
    font-size: 2rem;
}

.footer-logo .logo-text {
    font-size: 1rem;
    color: white;
}

.footer-logo .logo-text strong {
    color: var(--accent);
}

.footer-section h4 {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
}

.rc-web{
    font-size: 20px!important;
    color: #ff6c11!important;
    font-weight: 300!important;
    text-decoration: underline!important;
}

.footer-legal{
    font-size: 11px;
    line-height: 1.5;
    margin-top: 0.5rem;
    color: #64748b;
}

/* Fixed Buttons */
.fixed-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.fixed-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    min-width: 160px;
}

.fixed-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #128c7e;
}

.call-btn {
    background: var(--primary);
}

.call-btn:hover {
    background: var(--primary-dark);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-visual { height: auto; }
    .main-visual { width: clamp(340px, 60vw, 520px); max-height: 52vh; }
    .faq-list { grid-template-columns: 1fr; }
    
    .hero-features {
        justify-content: center;
    }
    .faq-item { flex-basis: 100%; }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contacts-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 84px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 3rem;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        gap: 2rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .header-phone {
        display: none;
    }
    
    /* Hero Section Mobile */
    .hero {
        padding: 110px 0 70px;
    }
    .hero-visual { height: auto; }
    .main-visual { width: clamp(320px, 82vw, 520px); max-height: 48vh; }
    
    .hero-title {
        font-size: 2.4rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 1.75rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    
    /* Floating Cards Mobile */
    .floating-card {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .card-1 {
        top: 15%;
        left: 5%;
    }
    
    .card-2 {
        top: 45%;
        right: 5%;
    }
    
    .card-3 {
        bottom: 15%;
        left: 15%;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .service-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 1.25rem;
    }
    
    .service-icon i {
        font-size: 1.35rem;
    }
    
    /* Advantages Mobile */
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .advantage-card {
        padding: 1.5rem;
    }
    
    .advantage-card h3 {
        font-size: 1rem;
        margin-bottom: 0.875rem;
    }
    
    .advantage-number {
        font-size: 2.75rem;
        margin-bottom: 0.875rem;
    }
    
    /* Process Mobile */
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1.25rem;
        padding: 1.75rem;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.15rem;
        margin: 0 auto;
    }
    
    .step-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    /* General Section Adjustments */
    section {
        padding: 70px 0;
    }
    
    .section-header {
        margin-bottom: 3.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    /* About Mobile */
    .about-stats {
        gap: 2.5rem;
        margin: 2rem 0;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    /* Reviews Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .review-card {
        padding: 1.75rem;
    }
    
    /* Contacts Mobile */
    .contact-action {
        padding: 2.5rem;
    }
    
    /* Fixed Buttons Mobile */
    .fixed-buttons {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .fixed-btn {
        min-width: 150px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .back-to-top {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    .hero-photo { border-radius: 40px; margin-top: 0; }
    /* Hero Section Small Mobile */
    .hero {
        padding: 150px 0 40px;
    }

    .photo-item {
        width: clamp(295px, 24vw, 260px);
        aspect-ratio: 11 / 15;
    }
    .hero-visual{
        height: auto;
    }
    .main-visual { width: 94vw; max-height: 44vh; }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.75rem;
        border-radius: var(--radius);
    }
    
    /* Floating Cards Small Mobile */
    .floating-card {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
        min-width: 120px;
    }
    
    .card-1 {
        top: 10%;
        left: 2%;
    }
    
    .card-2 {
        top: 40%;
        right: 2%;
    }
    
    .card-3 {
        bottom: 10%;
        left: 10%;
    }
    
    
    .visual-circle {
        width: 140px;
        height: 140px;
    }
    
    /* Services Small Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.75rem;
    }
    
    .service-card h3 {
        font-size: 1.15rem; 
    }
    
    /* Advantages Small Mobile */
    .advantage-card {
        padding: 1.5rem;
    }
    
    .advantage-card h3 {
        font-size: 1rem;
    }
    
    .advantage-number {
        font-size: 2.5rem;
    }
    
    /* Process Small Mobile */
    .process-step {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .step-content h3 {
        font-size: 1.15rem;
    }
    
    /* General Small Mobile */
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Footer Small Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer {
        padding: 3.5rem 0 2rem;
    }

    .footer-bottom{
        padding-bottom: 70px;
    }

    .footer-bottom p{
        font-size: 13px;
    }
    
    /* Fixed Buttons Small Mobile */
    .fixed-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        flex-direction: row;
        justify-content: space-around;
        background: white;
        padding: 1rem;
        box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
        gap: 0.75rem;
    }
    
    .fixed-btn {
        min-width: auto;
        flex: 1;
        margin: 0;
        justify-content: center;
        padding: 1rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 50px;
    }
    
    .back-to-top {
        bottom: 5rem;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 360px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .advantage-card,
    .review-card {
        padding: 1.5rem;
    }
    
    .process-step {
        padding: 1.25rem;
    }
    
    .fixed-btn {
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
    }
    
    /* Floating Cards Extra Small */
    .floating-card {
        padding: 0.625rem 0.875rem;
        font-size: 0.75rem;
        min-width: 110px;
    }
    
    .card-1 {
        top: 8%;
        left: 1%;
    }
    
    .card-2 {
        right: 1%;
    }
    
    .card-3 {
        bottom: 8%;
        left: 8%;
    }
}