:root {
    --bg-dark: #2C3E50;
    --white: #FFFFFF;
    --orange: #D35400;
    --cyan: #19C9F5;
    --main-gradient: linear-gradient(182.54deg, #2C3E50 28.59%, #D35400 100%);
    --accent-gradient: linear-gradient(90deg, #D35400 0%, #2C3E50 65.38%);
    --accent-gradient-berder: linear-gradient(90deg, #2C3E50 32.21%, #D35400 100%);
    ;
    --card-bg: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);


}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--main-gradient);
    background-attachment: scroll;
    min-height: 100vh;
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header & Nav */
header {
    position: relative;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 60px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: inherit;
    z-index: -1;
}

nav.scrolled {
    top: 15px;
    width: calc(95% - 80px); /* Slightly wider on scroll */
    max-width: 1150px; /* More room for long words */
}

.logo img {
    height: 80px;
    object-fit: contain;
    transition: var(--transition);
}

/* Hamburger Menu Style */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

nav.scrolled .logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px; /* Reduced gap to fit long translations */
    
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem; /* Slightly smaller font */
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

.nav-links a.active {
    color: var(--orange);
}

.lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.lang-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.6;
    transition: all 0.3s ease;
    padding: 5px;
}

.lang-btn:hover {
    opacity: 1;
    color: var(--orange);
}

.lang-btn.active {
    opacity: 1;
    color: var(--cyan);
    text-decoration: underline;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.nav-links a:hover {
    color: var(--orange);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: var(--transition);
}

nav.scrolled .nav-links a.active::after {
    width: 100%;
}

nav:not(.scrolled) .nav-links a.active {
    color: var(--white);
}

nav:not(.scrolled) .nav-links a.active::after {
    width: 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2.8rem, 7vw, 4.5rem); /* Responsive size, fits long words */
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px; /* Reduced letter spacing */
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 14px 45px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    padding: 15px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline {
    position: relative;
    background: transparent;
    color: var(--white);
    padding: 15px 40px;
    border-radius: 12px;
    border: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 5px;
    /* border qalinligi */
    border-radius: 12px;

    background: linear-gradient(90deg, #2C3E50, #D35400);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;

    mask-composite: exclude;

    z-index: -1;
}


/* Section Common */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.5rem); /* Fluid sizing */
    color: var(--orange);
    margin-bottom: 60px;
    font-family: 'Outfit', sans-serif;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: rgba(238, 238, 238, 0.5);
    backdrop-filter: blur(15px);
    padding: 40px 25px;
    border-radius: 30px;
    text-align: center;
    border: none;
    /* Border removed */
    transition: var(--transition);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    max-width: 100%;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px 18px;
    opacity: 0;
    transform: translateY(100%);
    transition: var(--transition);
    text-align: left;
}

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

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

.item-overlay h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--white);
    font-weight: 700;
}

.item-overlay p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

/* Team */
.team-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.team-img-container {
    flex: 1;
    padding: 20px;
    position: relative;
}

.team-img-container::before,
.team-img-container::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 1;
}

.team-img-container::before {
    top: 0;
    left: 0;
    border-top: 5px solid var(--orange);
    border-left: 5px solid var(--cyan);
}

.team-img-container::after {
    bottom: 0;
    right: 0;
    border-bottom: 5px solid var(--orange);
    border-right: 5px solid var(--cyan);
}

.team-img-container img {
    width: 100%;
    border-radius: 10px;
    display: block;
    position: relative;
    z-index: 2;
}

.team-content {
    flex: 1.2;
}

.team-content p {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 20px;
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
    z-index: 1;
}

.stat-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 3px;
    /* border thickness */
    border-radius: 20px;
    background: linear-gradient(90deg, var(--orange), var(--cyan));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.03);
}

.stat-num {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.stat-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Process Section - Exact Design */
.process-section {
    position: relative;
    padding: 100px 0;
    background: url('img/header_bg_img.png') no-repeat center center/cover;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.process-container {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-title {
    text-align: center;
    color: var(--orange);
    /* Use established orange */
    font-size: 4rem;
    margin-bottom: 80px;
    font-family: 'Outfit', sans-serif;
}

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.step-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1700px; /* Even wider for longer arrows */
    margin: 0 auto;
}

.step-card {
    background: rgba(255, 255, 255, 0.05); /* Even lighter transparent */
    backdrop-filter: blur(10px);
    border: 5px solid #00BFFF;
    border-radius: 40px;
    padding: 30px 20px; /* Reduced padding */
    width: 380px;
    min-height: 350px; /* Reduced height */
    text-align: center;
    color: var(--white);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px; /* Reduced gap */
}

.step-icon img {
    width: 80px !important;
    /* Larger icons */
}

.step-icon {
    margin-bottom: 10px;
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
}

.step-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
}

.step-arrow {
    font-size: 2.5rem;
    color: var(--white);
}

/* Zigzag Connector Refined */
.step-connector {
    position: relative;
    height: 100px;
    width: 100%;
    max-width: 1700px; /* Matching row width */
    margin: 0 auto;
}

.line-v {
    position: absolute;
    right: 190px;
    top: 0px; /* Closer to Step 3 */
    width: 3px;
    height: 50px;
    background: var(--white);
}

.line-h {
    position: absolute;
    right: 190px;
    top: 50px;
    width: calc(100% - 480px);
    height: 3px;
    background: var(--white);
}

.line-v-end {
    position: absolute;
    left: 290px;
    top: 50px;
    width: 3px;
    height: 100px; /* Touch Step 4 */
    background: var(--white);
}

/* Arrow head for zigzag */
.line-v-end::after {
    content: '';
    position: absolute;
    bottom: -10px; /* Align head with card border */
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid var(--white);
}

.bottom-row {
    margin-top: 60px;
    justify-content: center; /* Closer together */
    gap: 80px; /* Specific gap */
}

.bottom-row .step-card {
    /* Same style */
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    flex: 0.2;
}

.step-arrow i {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

/* Price Table */
.price-table-container {
    background: rgba(44, 62, 80, 0.8);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table th {
    padding: 25px;
    text-align: left;
    color: var(--white);
    font-size: 1.2rem;
}


.price-table td {
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.price-table tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.price-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--cyan);
}

.table-footer {
    padding: 40px;
    text-align: center;
}

.btn-table {
    background: linear-gradient(to right, var(--orange), var(--cyan));
    color: var(--white);
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
}

.btn-table:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Reviews */
.reviews-section {
    padding: 100px 0;
}

.reviews-title {
    color: var(--white);
    margin-bottom: 50px;
    text-align: center;
}

.reviews-grid-wrapper {
    width: 100%;
    margin-bottom: 40px;
    padding: 10px 0;
    overflow: hidden;
}

/* Desktop & Laptop: 3 cards side by side */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.review-card {
    background: rgba(255, 255, 255, 0.405);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 32px 28px 26px;
    border-radius: 24px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--cyan));
    border-radius: 24px 24px 0 0;
}

.review-card:hover {
    transform: translateY(-6px);
}

.review-quote {
    font-size: 2rem;
    color: var(--orange);
    opacity: 0.7;
    line-height: 1;
    margin-bottom: 4px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.88);
    flex: 1;
}

.review-stars {
    display: flex;
    gap: 4px;
}

.review-stars i {
    color: #FFD700;
    font-size: 0.85rem;
}

.review-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    width: 100%;
}

.review-footer {
    display: flex;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: white;
    flex-shrink: 0;
}

.user-info > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.user-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
}

.review-date {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

/* Dots — hidden on desktop, shown on mobile */
.slider-dots {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.35);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active-long {
    width: 50px;
    height: 12px;
    background: black;
    border-radius: 8px;
}

.contact-title {
    color: var(--white);
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: flex-start;
    width: 100%;
    overflow: hidden;
}

.contact-map {
    height: 450px;
    border-radius: 40px;
    overflow: hidden;
    border: none;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-card {
    background: #D1A78B;
    padding: 40px 30px;
    border-radius: 40px;
    color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    box-sizing: border-box;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
}

.contact-icon {
    width: 40px;
    display: flex;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--bg-dark);
}

.contact-item p {
    font-size: 1.2rem;
    font-weight: 500;
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 25px;
    padding-left: 20px;
}

.social-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 2.5rem;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.telegram {
    background: #1DA1F2;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.facebook {
    background: #1877F2;
}

.whatsapp {
    background: #25D366;
}

.social-icon:hover {
    transform: scale(1.1) translateY(-5px);
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p  { font-size: 1rem; }

    /* Hamburger show */
    .hamburger { display: flex; }

    nav {
        padding: 10px 25px; /* Less padding on mobile */
        width: 95% !important; /* Keep width consistent */
    }

    nav.scrolled {
        width: 95% !important; /* Don't shrink width on mobile scroll */
    }

    .logo img {
        height: 60px; /* Smaller logo on mobile */
    }

    /* Mobile nav dropdown */
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: none;
        height: auto;
        background: rgba(255, 255, 255, 0.1); /* Slightly lighter for better blur effect */
        backdrop-filter: blur(30px); /* Much more "hraro" (foggy/blurred) */
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border-radius: 30px; 
        border: 1px solid rgba(255, 255, 255, 0.1); 
        margin-top: 15px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        display: flex;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); /* Stronger shadow for depth */
    }
    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Services: 2 columns on tablet */
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }

    .team-flex { flex-direction: column; }

    /* Contact: stack map + card vertically */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    .contact-map {
        height: 350px;
        width: 100%;
        max-width: 100%;
    }
    .contact-info-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    .contact-card {
        width: 100%;
        box-sizing: border-box;
    }
    .social-icons {
        justify-content: center;
        padding-left: 0;
        flex-wrap: wrap;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }

    /* Reviews → slider on mobile */
    .reviews-grid-wrapper { overflow: hidden; padding: 10px; }
    .reviews-grid {
        display: flex;
        gap: 20px;
        transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .review-card { flex: 0 0 100%; }
    .slider-dots { display: flex; }

    .hero-content h1 { font-size: 1.9rem; }
    .hero-content p  { font-size: 0.9rem; margin-bottom: 28px; }
    .hero-btns { flex-direction: column; align-items: center; gap: 12px; }

    .section-title { font-size: 1.8rem; margin-bottom: 40px; }

    /* Process Mobile: 1 card per row, no design/arrows */
    .step-row, .bottom-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .step-arrow, .step-connector {
        display: none !important;
    }
    .step-card {
        width: 100%;
        max-width: 350px;
        min-height: auto;
        padding: 30px 20px;
    }

    /* Price Table Mobile: No Scroll, Fit Content */
    .price-table-container {
        overflow-x: visible;
        margin: 0;
        width: 100%;
    }
    .price-table {
        min-width: 0;
        width: 100%;
    }
    .price-table th, .price-table td {
        padding: 12px 8px;
        font-size: 0.8rem; /* Small text to fit */
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-map {
        height: 280px;
        border-radius: 20px;
        width: 100%;
    }
    .contact-info-wrapper { width: 100%; }
    .contact-card {
        padding: 25px 20px;
        border-radius: 25px;
        width: 100%;
        box-sizing: border-box;
    }
    .contact-item { gap: 12px; }
    .contact-item p {
        font-size: 0.9rem;
        word-break: break-word;
    }
    .contact-link {
        font-size: 0.9rem;
        word-break: break-word;
        overflow-wrap: break-word;
    }
    .contact-icon { font-size: 1.5rem; width: 30px; }
    .social-icons {
        flex-wrap: wrap;
        justify-content: center;
        padding-left: 0;
        gap: 12px;
    }
    .social-icon {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }

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

/* Call Modal */
.call-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}
.call-modal-overlay.active {
    display: flex;
}
.call-modal-box {
    background: #1a2533;
    border-radius: 24px;
    padding: 45px 50px 40px;
    text-align: center;
    position: relative;
    max-width: 360px;
    width: 90%;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    animation: modalPop 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@keyframes modalPop {
    from { transform: scale(0.8); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}
.call-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.4rem;
    cursor: pointer;
    transition: color 0.2s;
}
.call-modal-close:hover { color: white; }
.call-modal-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #D35400, #e8672a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 8px 25px rgba(211, 84, 0, 0.45);
}
.call-modal-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.call-modal-number {
    display: block;
    color: white;
    font-size: 1.7rem;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 6px;
    transition: color 0.2s;
}
.call-modal-number:hover { color: var(--orange); }
.call-modal-or {
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
    margin: 16px 0 12px;
}
.call-modal-tg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1DA1F2;
    color: white;
    text-decoration: none;
    padding: 11px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
}
.call-modal-tg:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29,161,242,0.4);
}

/* Contact clickable links */
.contact-link {
    color: var(--bg-dark);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
.contact-link:hover {
    color: var(--orange);
    text-decoration: underline;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    right: 30px;
    bottom: 40px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #D35400, #e8672a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.7rem;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(211, 84, 0, 0.5);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: callPulse 2.2s infinite;
}
.floating-call-btn:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 14px 35px rgba(211, 84, 0, 0.7);
}
@keyframes callPulse {
    0%   { box-shadow: 0 6px 25px rgba(211,84,0,0.5), 0 0 0 0 rgba(211,84,0,0.35); }
    60%  { box-shadow: 0 6px 25px rgba(211,84,0,0.5), 0 0 0 18px rgba(211,84,0,0); }
    100% { box-shadow: 0 6px 25px rgba(211,84,0,0.5), 0 0 0 0 rgba(211,84,0,0); }
}

/* Small phones */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.55rem; }
    .hero-content p  { font-size: 0.82rem; }
    .btn { padding: 10px 20px; font-size: 0.85rem; }
    .section { padding: 50px 0; }
    .contact-card { padding: 20px 15px; }
    .social-icon { width: 46px; height: 46px; font-size: 1.3rem; }
    
    .step-card {
        max-width: 100%;
    }
    .floating-call-btn {
        right: 18px;
        bottom: 28px;
        width: 54px;
        height: 54px;
        font-size: 1.4rem;
    }
}
