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

html {
    scroll-behavior: smooth;

}

a {
    text-decoration: none;
    color: #fff;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
    line-height: 1.2;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
    color: #000;
}

.section-title.white {
    color: #fff;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.accent-text {
    color: #ea580c;
}

.accent {
    color: #ea580c;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background: #ea580c;
    color: white;
}

.btn-primary:hover {
    background: #c2410c;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: black;
    transform: scale(1.05);
}

.btn.full-width {
    width: 100%;
    justify-content: center;
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(4px);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-img {
    height: 48px;
    width: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 900;
    color: white;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link.active {
    color: #ea580c;

}

.nav-link.active::before {
    transform: translateX(0);
}

.contact-btn {
    background: #ea580c;
    color: white !important;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
}

.contact-btn:hover {
    background: #c2410c;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}


section {
    padding: 2rem 0;
}

.section-header {
    margin-bottom: 4rem;
}

/* About Section */
.about {
    background: #f9fafb;
}

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

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

.about-item.reverse {
    flex-direction: row-reverse;
}

.about-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.about-content p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.value-list {
    list-style: none;
    padding: 0;
}

.value-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #666;
}

.value-list li::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #ea580c;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.about-image {
    position: relative;
    padding: 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, #ea580c, #c2410c);
}

.about-image.rotated-left {
    transform: rotate(-3deg);
    background: linear-gradient(135deg, #374151, #000);
}

.about-image.rotated-right {
    transform: rotate(3deg);
}

.about-image.green-bg {
    background: linear-gradient(135deg, #059669, #047857);
}

.about-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
    transform: rotate(-3deg);
}

.about-image.rotated-left img {
    transform: rotate(3deg);
}

/* Services Section */
.services {
    background: #000;
    color: white;
}

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

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

.service-card {
    background: #1f1f1f;
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: linear-gradient(135deg, #7c2d12, #1f1f1f);
    transform: translateY(-8px);
}

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

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.service-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #999;
}

.service-features li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ea580c;
    border-radius: 50%;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.service-card:hover .service-features li {
    color: #ccc;
}

/* Portfolio Section */
.portfolio {
    background: white;
}

.portfolio-grid {
    display: grid;
    flex-direction: row;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #000;
}

.portfolio-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

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

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

.portfolio-category {
    display: inline-block;
    background: #ea580c;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.portfolio-overlay h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-overlay p {
    font-size: 0.875rem;
    color: #ccc;
}

.preview-footer {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Team Section */
.team {
    background: white;
}

.team-hero {
    position: relative;
    margin-bottom: 4rem;
    border-radius: 24px;
    overflow: hidden;
    background: #f3f4f6;
    padding: 2rem;
}

.team-hero img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
}

.team-hero-overlay {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
}

.team-hero-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.team-hero-overlay p {
    color: #666;
}

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

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
}

.member-avatar {
    width: 128px;
    height: 128px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ea580c;
    transition: transform 0.3s ease;
}

.team-member:hover .member-avatar {
    transform: scale(1.05);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.member-position {
    color: #ea580c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-description {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
}

/* Blog Section */
.blog {
    background: #f9fafb;
}

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

.blog-post {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-post h2 a {
    color: #000;
}


.blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.post-content h3 a {
    color: #000;
}

.post-image {
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.1);
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #ea580c;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.post-content {
    padding: 1.5rem;
}

.post-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #000;
    line-height: 1.4;
}

.post-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: #ea580c;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #c2410c;
}

.blog-sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 4rem;
}

.sidebar-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #000;
}



.news-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1rem;
    transition: box-shadow 0.3s ease;
}


.news-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.news-item img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.news-content h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
    line-height: 1.4;
}

.news-date {
    font-size: 0.875rem;
    color: #666;
}

.news-title {
    color: black;
    text-decoration: none;
    transition: all 0.5s;
}

.news-title:hover {
    color: #ea580c;
}

.trend-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.trend-item h3 a {
    color: #000;
}

.trend-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.trend-item h4 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #000;
}

.trend-item p {
    color: #666;
    line-height: 1.6;
}

/* Awards Section */
.awards {
    background: white;
}

.agency-slogan {
    font-size: 1.5rem;
    color: #ea580c;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
}

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

.award-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.award-item:nth-child(2) {
    animation-delay: 0.2s;
}

.award-item:nth-child(3) {
    animation-delay: 0.4s;
}

.award-icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #ea580c, #c2410c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.award-icon svg {
    width: 48px;
    height: 48px;
}

.award-item h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.award-year {
    color: #ea580c;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.award-org {
    font-size: 0.875rem;
    color: #666;
}

.company-info {
    background: #f9fafb;
    border-radius: 24px;
    padding: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.company-info h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000;
}

.company-info p {
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.clients-section h3 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(200px, 20%));
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.client-logo {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
}


.client-logo:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.client-logo img {
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* Testimonials Section */
.testimonials {
    background: #f9fafb;
}

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

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.star {
    color: #ea580c;
    font-size: 1.25rem;
}

.testimonial-card blockquote {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-weight: 700;
    color: #000;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.875rem;
    color: #ea580c;
    font-weight: 600;
}

/* Contact Section */
.contact {
    background: #000;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.contact-info h2 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.contact-info p {
    font-size: 1.25rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #ea580c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-item p {
    margin: 0;
    line-height: 1.4;
}

.contact-item strong {
    color: white;
}

.contact-form {
    background: #1f1f1f;
    border-radius: 16px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ea580c;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem;
    background: #1f1f1f;
    border-radius: 16px;
}

.contact-footer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        transform: translate3d(0, -30px, 0);
    }

    70% {
        transform: translate3d(0, -15px, 0);
    }

    90% {
        transform: translate3d(0, -4px, 0);
    }
}

.blog-post {
    padding: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-grid.page {
        grid-template-columns: repeat(1, 1fr);
    }

    .mobile-menu-btn {
        color: #fff;
        background-color: #fff;
    }

    .contact-footer-item {
        flex-direction: column;
    }

    .contact-footer {
        padding: 15px 0;
    }

    .contact-footer .address {
        width: 90%;
        text-align: center;
    }

    .client-logo {
        height: 200px;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        align-items: stretch;
    }

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

    .about-item,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-item.reverse {
        direction: ltr;
    }

    .about-image {
        order: -1;
    }

    .services-grid,
    .portfolio-grid,
    .team-grid,
    .blog-grid,
    .awards-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-info h2 {
        font-size: 2.5rem;
    }

    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .contact-footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

    .contact-info h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* WordPress Integration Helpers */
.wp-block-group {
    margin: 0;
}

.wp-block-columns {
    display: grid;
    gap: 2rem;
}

.wp-block-column {
    flex-basis: auto !important;
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Print styles */
@media print {

    .navbar,
    .scroll-indicator,
    .contact-form {
        display: none;
    }

    section {
        page-break-inside: avoid;
        padding: 2rem 0;
    }
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000 0%, #1f1f1f 50%, #7c2d12 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.pattern-circle {
    position: absolute;
    border: 2px solid #ea580c;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.pattern-1 {
    top: 5rem;
    left: 5rem;
    width: 8rem;
    height: 8rem;
}

.pattern-2 {
    bottom: 8rem;
    right: 8rem;
    width: 6rem;
    height: 6rem;
    border-color: white;
    animation-delay: 1s;
}

.pattern-dot {
    position: absolute;
    top: 50%;
    left: 25%;
    width: 4rem;
    height: 4rem;
    background: #ea580c;
    border-radius: 50%;
    animation: bounce 1s infinite;
    animation-delay: 0.5s;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 0 2rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 12px;
    background: white;
    border-radius: 2px;
    animation: pulse 2s infinite;
}

/* Адаптивные стили для планшетов и мобильных устройств */

/* До 1024px — планшеты */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

/* До 768px — мобильные устройства */
@media (max-width: 768px) {
    .team-hero {
        display: none;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

    .about-item,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid,
    .portfolio-grid,
    .team-grid,
    .blog-grid,
    .awards-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .contact-footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* До 480px — маленькие экраны */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 1rem;
    }

    .contact-info h2 {
        font-size: 1.75rem;
    }
}

.phones {
    display: flex;
    flex-direction: column;
}

.phones a {
    color: #ccc;
    font-size: 1.25rem;
    text-decoration: none;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-current {
    background: none;
    border: 1px solid #ccc;
    color: #fff;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
}

/* список скрыт по умолчанию */
.lang-list {
    position: absolute;
    top: 110%;
    left: 0;
    margin: 0;
    padding: 4px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    min-width: 100%;
    z-index: 10;

    /* плавное появление */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
}

.lang-list li {
    margin: 0;
}

.lang-list a {
    display: block;
    padding: 6px 12px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: 300ms all ease-in-out;
}

.lang-list a:hover {
    background: #444444;
    color: #fff;

}

/* показываем при ховере */
.lang-dropdown:hover .lang-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.news-content .post-content p {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.news-content .post-content p img {
    width: 100%;
}