/* Reset და საბაზო სტილები */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans Georgian', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #1f2937;
    background-color: #f8fafc;
}

/* კონტეინერი */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ღილაკები */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #3b82f6;
}

.btn-outline {
    background-color: transparent;
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.btn-success {
    background-color: #25D366;
    color: white;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-full {
    width: 100%;
}

/* სექციები - კომპაქტური */
.section {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 25px;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.4;
}

/* ჰედერი */
.header {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(30, 41, 59, 0.2);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.brand-tagline {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.2;
}

/* ნავიგაცია */
.nav-desktop {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    font-size: 15px;
}

.nav-link:hover {
    color: #60a5fa;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ჰედერის ღილაკები */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cta-btn {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 10px 18px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.25);
}

.cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(59, 130, 246, 0.4);
}

/* მობილური მენიუს ღილაკი */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* მობილური ნავიგაცია */
.nav-mobile {
    display: none;
    background: linear-gradient(135deg, #334155, #475569);
    border-top: 1px solid #475569;
}

.nav-mobile.active {
    display: block;
}

.nav-mobile-menu {
    list-style: none;
    padding: 20px 0;
}

.nav-mobile-menu li {
    border-bottom: 1px solid #475569;
}

.nav-mobile-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 15px;
}

.nav-mobile-link:hover {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

/* WhatsApp ღილაკი */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* ჰერო სექცია - ახალი დიზაინი */
.hero {
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    color: white;
    padding: 120px 0 80px;
    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><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 8px 20px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 10px 16px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    font-size: 1.2rem;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    justify-content: center;
}

.btn-primary.btn-large {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.btn-primary.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-outline.btn-large {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.btn-outline.btn-large:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* სიახლეების სექცია - კომპაქტური */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.news-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.02);
}

.news-content {
    padding: 15px;
}

.news-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.news-date {
    color: #64748b;
    font-size: 0.75rem;
}

.news-category {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
}

.news-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1e293b;
    line-height: 1.3;
}

.news-excerpt {
    color: #64748b;
    margin-bottom: 10px;
    line-height: 1.4;
    font-size: 0.8rem;
}

.news-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.news-link:hover {
    color: #1d4ed8;
}

/* მომსახურეობის სექცია - კომპაქტური */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    padding: 20px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.service-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: white;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.service-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
    line-height: 1.3;
}

.service-description {
    color: #64748b;
    margin-bottom: 15px;
    line-height: 1.4;
    font-size: 0.85rem;
}

/* კატალოგის სექცია - კომპაქტური */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.catalog-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.catalog-image {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.catalog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(30, 41, 59, 0.9));
    color: white;
    padding: 12px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.catalog-item:hover .catalog-image img {
    transform: scale(1.02);
}

.catalog-item:hover .catalog-overlay {
    transform: translateY(0);
}

.catalog-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.catalog-cta {
    text-align: center;
    margin-top: 20px;
}

/* ბლოგის სექცია - კომპაქტური */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.blog-image {
    width: 100%;
    height: 120px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.02);
}

.blog-content {
    padding: 15px;
}

.blog-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.blog-date {
    color: #64748b;
    font-size: 0.75rem;
}

.blog-category {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 500;
}

.blog-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1e293b;
    line-height: 1.3;
}

.blog-excerpt {
    color: #64748b;
    margin-bottom: 10px;
    line-height: 1.4;
    font-size: 0.8rem;
}

.blog-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.blog-link:hover {
    color: #7c3aed;
}

/* კონტაქტის სექცია - კომპაქტური */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-info {
    display: grid;
    gap: 15px;
}

.contact-card {
    background: white;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(59, 130, 246, 0.1);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-card-icon {
    color: #3b82f6;
}

.contact-card-icon.whatsapp {
    color: #25D366;
}

.contact-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
}

.contact-card p {
    color: #64748b;
    margin-bottom: 10px;
    line-height: 1.3;
    font-size: 0.85rem;
    word-wrap: break-word;
    white-space: normal;
    overflow-wrap: break-word;
}

/* ფორმის სტილები - კომპაქტური */
.contact-form-wrapper {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.form-group {
    margin-bottom: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #374151;
    font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #f9fafb;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background-color: white;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 80px;
}

/* ფორმის შეტყობინება */
.form-message {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-message.success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    border: 2px solid #6ee7b7;
}

.form-message.error {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
    border: 2px solid #f87171;
}

/* ფუტერი - მაქსიმალურად შემცირებული სიმაღლე */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 8px 0 5px;
}

.footer .container {
    max-width: 100%;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 15px;
    margin-bottom: 6px;
    width: 100%;
}

.footer-section {
    padding: 0;
}

.footer-title {
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.footer-logo {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.1;
}

.footer-tagline {
    color: #cbd5e1;
    font-size: 0.7rem;
    margin: 0;
    line-height: 1.1;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.3;
    font-size: 0.75rem;
    margin-top: 3px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 2px;
}

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.75rem;
}

.footer-link:hover {
    color: #60a5fa;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 6px;
}

.contact-info span,
.contact-info a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 6px;
}

.social-link {
    background-color: #475569;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.7rem;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #475569;
    padding-top: 4px;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.7rem;
    margin: 0;
    line-height: 1.2;
}

/* Scroll to Top ღილაკი */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 3px 12px rgba(59, 130, 246, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.5);
}

/* Responsive Design */

/* Tablet */
@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .hero-title {
        font-size: 4rem;
    }

    .trust-badges {
        gap: 40px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .section {
        padding: 80px 0;
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }
}

/* Mobile Optimization */
@media (max-width: 767px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        padding: 12px 0;
    }

    .brand-name {
        font-size: 1rem;
    }

    .brand-tagline {
        font-size: 0.75rem;
    }

    .cta-btn {
        display: none;
    }

    .hero {
        height: 80vh;
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-contact {
        justify-content: center;
        gap: 15px;
    }

    .footer-social {
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 25px;
        right: 25px;
    }

    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }

    .scroll-to-top {
        bottom: 90px;
        right: 25px;
        width: 45px;
        height: 45px;
    }
}