/* Basic CSS Structure - Ready for customization */

/* ========================================
   ANIMATION DEFINITIONS
   ======================================== */

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Down Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Left Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade In Right Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Float Animation (subtle) */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* ========================================
   SCROLL ANIMATION CLASSES
   ======================================== */

/* Base class for scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Up */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Down */
.fade-in-down {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-down.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Left */
.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Fade In Right */
.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Scale In */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Animation Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ========================================
   GLOBAL STYLES
   ======================================== */

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

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Gilroy", -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    line-height: 1.6;
    color: #333;
    font-weight: 300;
    background-color: #f4f6f8;
    overflow-x: hidden;
}

main {
    margin: 0;
    padding: 0;
}

/* Bootstrap Override - Remove all default margins/paddings */
.row {
    margin: 0 !important;
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-auto,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-auto,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-auto,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-auto,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-auto {
    padding: 0 !important;
    margin-bottom: 0 !important;
}

/* Responsive Container - Wider design */
.container {
    max-width: 100%;
    padding-left: 80px;
    padding-right: 80px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0 !important;
}

/* Medium screens (1400px+) - Increased content width */
@media (min-width: 1400px) {
    .container {
        padding-left: 100px;
        padding-right: 100px;
    }
}

/* Large screens (1600px+) - More content space */
@media (min-width: 1600px) {
    .container {
        padding-left: 120px;
        padding-right: 120px;
    }
}

/* Extra large screens (1920px+) - Maximum content width */
@media (min-width: 1920px) {
    .container {
        max-width: 2200px;
        padding-left: 200px;
        padding-right: 200px;
    }
}

/* Ultra wide screens (2400px+) - Very wide content */
@media (min-width: 2400px) {
    .container {
        max-width: 2600px;
        padding-left: 300px;
        padding-right: 300px;
    }
}

/* Header Styles */
.header {
    background: transparent;
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.logo {
    height: 40px;
}

.contact-btn {
    background: #000000;
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    padding: 100px 0 80px; /* Top padding azaltıldı */
    position: relative;
    z-index: 1;
    min-height: 600px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Slide Content Animations */
.slide .hero-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s, 
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.slide .hero-visual {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, 
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.slide.active .hero-visual {
    opacity: 1;
    transform: translateY(0);
}

.slide .hero-title {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s, 
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.slide.active .hero-title {
    opacity: 1;
    transform: translateY(0);
}

.slide .hero-description {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s, 
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.slide.active .hero-description {
    opacity: 1;
    transform: translateY(0);
}

.slide .hero-actions {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s, 
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.4s;
}

.slide.active .hero-actions {
    opacity: 1;
    transform: translateY(0);
}

.slide .dashboard-preview {
    opacity: 0;
    transform: translateY(25px) scale(0.98);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.15s, 
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0.15s;
}

.slide.active .dashboard-preview {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.slider-nav {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.slider-arrow:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px) scale(1.05);
}

.slider-arrow:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s ease;
}

.slider-arrow img {
    width: 20px;
    height: 20px;
}

.hero-content {
    width: 100%;
    max-width: 580px;
}

.hero-title {
    font-family: "Gilroy", sans-serif;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1px;
    color: #1c1e1f;
    margin-bottom: 24px;
}

.hero-description {
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0;
    color: #828486;
    margin-bottom: 36px;
    max-width: 500px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    overflow: visible;
}

.services-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.services-slider {
    overflow: hidden;
    width: 100%;
}

.services-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 38px;
    justify-content: flex-start;
}

.service-slide {
    min-width: 420px;
    max-width: 420px;
    flex-shrink: 0;
    padding-top: 72px;
}

.service-card-figma {
    width: 420px;
    height: 240px;
    background: #f8fafb;
    border: 1px solid #ffffff;
    border-radius: 16px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.service-icon-figma {
    width: 172px;
    height: 172px;
    position: absolute;
    top: -72px;
    left: 50%;
    transform: translateX(-50%);
    object-fit: contain;
}

.service-icon-figma--fa {
    width: 120px;
    height: 120px;
    top: -60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    border: 1px solid #eef0f2;
    box-shadow: 0 10px 30px rgba(28, 30, 31, 0.08);
    color: #1c1e1f;
    font-size: 36px;
}

.service-title-figma {
    font-family: "Gilroy", sans-serif;
    font-size: 20px;
    font-weight: 900;
    line-height: 20px;
    letter-spacing: 0%;
    color: #2c2c2c;
    margin-top: 56px;
    margin-bottom: 16px;
}

.service-description-figma {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0%;
    color: #828486;
    text-align: center;
}

.services-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    z-index: 10;
    position: relative;
}

.services-arrow {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.services-arrow:hover {
    background: rgba(28, 30, 31, 0.1);
    transform: scale(1.05);
}

.services-arrow:active {
    transform: scale(0.98);
    transition: all 0.1s ease;
}

.services-arrow img {
    width: 20px;
    height: 20px;
}

.services-indicators {
    display: none;
}

/* Desktop contact button normal görünürlük */
.contact-btn {
    opacity: 1;
    transform: scale(1);
}

/* About Section */
.about-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-family: "Gilroy", sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: #1c1e1f;
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    color: #828486;
    max-width: 600px;
    margin: 0 auto;
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.projects-subtitle {
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0%;
    color: #828486;
    margin-bottom: 58px;
}

.projects-slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.projects-slider {
    overflow: hidden;
    width: 100%;
}

.projects-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    width: 300%; /* 3 sayfa için */
    flex-wrap: nowrap;
    gap: 0;
    justify-content: flex-start;
}

.project-slide {
    flex: 0 0 calc(100% / 9); /* 9 kart için her biri tam 1/9 */
    max-width: calc(100% / 9);
    padding: 0 15px;
    position: relative;
    overflow: visible;
    box-sizing: border-box;
}

.project-card-figma {
    width: 100%;
    border-radius: 16px;
    overflow: visible;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
    margin: 0 5px; /* Kartlar arası boşluk */
}

.project-card-figma:hover {
    transform: translateY(-8px);
}

.project-image-figma {
    position: relative;
    width: 100%;
    height: 268px;
    overflow: hidden;
    border-radius: 16px;
    z-index: 1;
}

.project-img {
    width: 100%;
    height: 268px;
    object-fit: cover;
    border-radius: 16px;
}

.project-date {
    position: absolute;
    top: 80px;
    left: -16px;
    background-color: #f8fafb;
    color: #2c2c2c;
    padding: 8px 4px;
    border-radius: 8px;
    font-family: "Gilroy", sans-serif;
    font-size: 12px;
    font-weight: 600;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    height: auto;
    min-height: 102px;
    width: 30px;
    text-align: center;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ffffff;
    transform: translateZ(0);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-content-figma {
    padding: 24px 0px;
}

.project-title-figma {
    font-family: "Gilroy", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #2c2c2c;
    margin-bottom: 12px;
}

.project-description-figma {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #828486;
    margin-bottom: 16px;
}

.project-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.project-tag {
    background: #f8fafb;
    border: 1px solid #ffffff;
    color: #828486;
    padding: 6px 12px;
    border-radius: 26px;
    font-family: "Gilroy", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: 0%;
}

.project-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.project-card-link:hover {
    color: inherit;
    text-decoration: none;
}

.project-img,
.project-image img {
    object-position: top center;
}

/* Projects Navigation - Hide side arrows, use only dots */
.projects-nav {
    display: none; /* Figma tasarımında sadece dots var */
}

.projects-arrow {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.projects-arrow:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px) scale(1.05);
}

.projects-arrow:active {
    transform: translateY(0) scale(0.98);
    transition: all 0.1s ease;
}

.projects-arrow img {
    width: 20px;
    height: 20px;
}

.projects-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.dot.active {
    background: #1c1e1f;
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.dot:hover {
    background: #1c1e1f;
    transform: scale(1.1);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f4f6f8;
}

.contact-title {
    font-family: "Gilroy", sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 40px;
    letter-spacing: 0%;
    color: #2c2c2c;
    margin-bottom: 16px;
}

.contact-subtitle {
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0%;
    color: #828486;
    margin-bottom: 48px;
}

.contact-form-figma {
    max-width: 920px;
    margin: 0 auto;
}

/* Contact form specific overrides */
.contact-form-figma .row {
    display: flex !important;
    gap: 40px !important;
    margin-bottom: 20px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.contact-form-figma .row > div {
    flex: 1 !important;
    margin-bottom: 0px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.contact-form-figma .mb-3 {
    margin-bottom: 0px !important;
}

.contact-form-figma .mb-4 {
    margin-bottom: 60px !important;
}

.form-control-figma {
    width: 100%;
    height: 48px;
    background: #f8fafb;
    border: 1px solid #ffffff;
    border-radius: 26px;
    padding: 0 16px;
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 16px;
    color: #828486;
    transition: all 0.3s ease;
}

.form-control-figma:focus {
    outline: none;
    border-color: #01a2ec;
    box-shadow: none;
}

.form-control-figma::placeholder {
    color: #828486;
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.textarea-figma {
    height: 144px;
    resize: none;
    padding: 16px;
}

.contact-btn-figma {
    width: 180px;
    height: 48px;
    background: #1c1e1f;
    border: none;
    border-radius: 26px;
    color: #ffffff;
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn-figma:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
}

/* Footer Modern */
.footer-modern {
    font-family: "Gilroy", sans-serif;
    margin: 0;
    padding: 0;
    display: block;
}

.footer-main-modern {
    background: #0f1114;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 2;
    min-height: 280px;
}

.footer-links-section {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 140px;
}

.footer-column-title {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column-links li {
    margin-bottom: 14px;
}

.footer-column-links a {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-column-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Big PODI Text */
.footer-brand-big {
    position: absolute;
    right: 40px;
    bottom: -30px;
    z-index: 1;
    pointer-events: none;
}

.podi-text {
    font-family: "Techovier", sans-serif;
    font-size: 280px;
    font-weight: 700;
    color: rgba(45, 55, 72, 0.3);
    line-height: 0.8;
    letter-spacing: -8px;
    user-select: none;
    text-shadow: 0 0 80px rgba(99, 102, 241, 0.08);
}

/* Bottom Footer Modern */
.footer-bottom-modern {
    background: #0f1114;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.footer-copyright-modern {
    font-family: "Gilroy", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
}

.footer-copyright-modern a {
    color: #6b7280;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-copyright-modern a:hover {
    color: #ffffff;
}

/* Footer Responsive */
@media (max-width: 1399px) {
    .podi-text {
        font-size: 220px;
    }
    
    .footer-brand-big {
        right: 30px;
        bottom: -20px;
    }
}

@media (max-width: 1199px) {
    .podi-text {
        font-size: 180px;
    }
    
    .footer-links-section {
        gap: 50px;
    }
    
    .footer-brand-big {
        right: 20px;
        bottom: -15px;
    }
}

@media (max-width: 991px) {
    .footer-brand-big {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 50px;
        text-align: center;
    }
    
    .podi-text {
        font-size: 140px;
        letter-spacing: -3px;
    }
    
    .footer-content-wrapper {
        flex-direction: column;
    }
    
    .footer-links-section {
        gap: 40px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .footer-main-modern {
        padding: 50px 0 40px;
    }
    
    .footer-links-section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-column {
        min-width: auto;
    }
    
    .podi-text {
        font-size: 100px;
        letter-spacing: -2px;
    }
    
    .footer-copyright-modern {
        font-size: 12px;
        text-align: center;
    }
    
    .footer-bottom-content {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .podi-text {
        font-size: 70px;
        letter-spacing: -1px;
    }
    
    .footer-links-section {
        gap: 24px;
    }
    
    .footer-column-title {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .footer-column-links a {
        font-size: 13px;
    }
}

/* Responsive Design */

/* Services navigation artık ortada olduğu için margin-right ayarları kaldırıldı */

/* Tablet and medium screen styles moved to tablet.css */

/* Mobile styles moved to mobile.css */

.footer-title {
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
}

.navbar-nav .nav-link {
    font-family: "Gilroy", sans-serif;
    font-weight: 700;
    color: #1c1e1f;
    line-height: 16px;
    margin: 0 20px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #1c1e1f;
    transition: width 0.3s ease, left 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
    left: 0;
}

.navbar-nav .nav-link:hover {
    color: #1c1e1f;
}

.btn {
    font-family: "Gilroy", sans-serif;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.btn-primary {
    background: #000000;
    border-color: #000000;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    background: #333333;
    border-color: #333333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.text-primary {
    color: #01a2ec !important;
}

.hero-cta-link {
    display: inline-flex;
    align-items: center;
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 900;
    line-height: 16px;
    letter-spacing: 0%;
    color: #1c1e1f;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-cta-link:hover {
    text-decoration: none;
}

.arrow-icon {
    width: 24px;
    height: 24px;
    margin-left: 16px;
    transition: transform 0.3s ease;
}

.hero-cta-link:hover .arrow-icon {
    transform: translateX(5px);
}

.about-title {
    font-family: "Gilroy", sans-serif;
    font-size: 127px;
    font-weight: 900;
    line-height: 24px;
    letter-spacing: 0%;
    color: #1c1e1f;
    background: transparent;
    margin-bottom: 16px;
}

.about-description {
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0%;
    color: #828486;
    margin-bottom: 20px;
}

.about-main-image {
    position: relative;
    margin-bottom: 30px;
}

.about-image {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: none;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
}

/* Hero Visual Styles */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: start;
    align-items: flex-start;
}

.dashboard-preview {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

.dashboard-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(244, 246, 248, 0.4) 0%,
        rgba(244, 246, 248, 0.2) 50%,
        rgba(244, 246, 248, 0.4) 100%
    );
    pointer-events: none;
    z-index: 1;
    border-radius: 12px;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg);
}

.dashboard-image {
    width: 100%;
    height: 500px;
    object-fit: contain;
    display: block;
    mix-blend-mode: multiply;
    filter: contrast(1.02) saturate(1.05);
    border-radius: 12px;
}

/* About Page Hero Image - Stronger effect */
.about-hero-image {
    mix-blend-mode: multiply;
    filter: contrast(1.05) saturate(1.08) brightness(1.02);
}

.about-image-preview {
    background: #f4f6f8;
}

.about-image-preview::after {
    background: linear-gradient(
        135deg,
        rgba(244, 246, 248, 0.5) 0%,
        rgba(244, 246, 248, 0.3) 50%,
        rgba(244, 246, 248, 0.5) 100%
    );
}

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

.social-link {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #007bff;
}

/* Responsive Navigation Overrides */
@media (max-width: 1199px) {
    /* Tablet and below - move navigation to bottom */
    .slider-nav {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 40px;
    }

    /* Services nav stays at bottom for all screen sizes */
    .services-nav {
        position: relative;
        flex-direction: row;
        justify-content: center;
        margin-top: 40px;
    }

    .projects-nav {
        display: none; /* Hide side arrows on all screens */
    }

    .projects-dots {
        display: flex; /* Keep dots on all screens */
    }
}

@media (min-width: 1200px) {
    /* Desktop - always show dots for projects, hide side arrows */
    .projects-dots {
        display: flex; /* Figma tasarımında dots her zaman görünür */
    }

    .projects-nav {
        display: none; /* Side arrows tamamen gizli */
    }

    /* Services nav stays at bottom even on desktop */
    .services-nav {
        position: relative;
        flex-direction: row;
        justify-content: center;
        margin-top: 40px;
    }
}

/* About Page Styles */
.about-story-section {
    padding: 80px 0;
    background: #ffffff;
}

.about-story-text {
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #666;
    margin-bottom: 24px;
}

.values-section {
    padding: 80px 0;
    background: #f8fafb;
}

.value-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon img {
    width: 40px;
    height: 40px;
}

.value-title {
    font-family: "Gilroy", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1c1e1f;
    margin-bottom: 16px;
}

.value-description {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
}

.team-section {
    padding: 80px 0;
    background: #ffffff;
}

.team-subtitle {
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin-bottom: 0;
}

.team-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

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

.team-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 24px;
}

.team-name {
    font-family: "Gilroy", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1c1e1f;
    margin-bottom: 8px;
}

.team-position {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1c1e1f;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-description {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
    margin-bottom: 0;
}

.stats-section {
    padding: 80px 0;
    background: #1c1e1f;
}

.stats-section .row {
    row-gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: scale(1.05);
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-number {
    font-family: "Gilroy", sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.stat-label {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #828486;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Hero Section - Modern Design */
.about-hero-section {
    padding: 120px 0 100px;
    background: #f4f6f8;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-badge {
    display: inline-block;
    margin-bottom: 24px;
}

.about-hero-badge span {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1c1e1f;
    background: rgba(28, 30, 31, 0.08);
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-hero-title {
    font-family: "Gilroy", sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    color: #1c1e1f;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
}

.about-hero-title .highlight {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-description {
    font-family: "Gilroy", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-hero-actions .btn {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-hero-actions .btn-dark {
    background: #1c1e1f;
    border-color: #1c1e1f;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-hero-actions .btn-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.about-hero-actions .btn-dark:hover {
    background: #2d3748;
    border-color: #2d3748;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(28, 30, 31, 0.25);
}

.about-hero-actions .btn-dark:hover::before {
    left: 100%;
}

.about-hero-actions .btn-dark:active {
    transform: translateY(-1px);
}

.about-hero-actions .btn-outline-dark {
    background: transparent;
    border: 2px solid #1c1e1f;
    color: #1c1e1f;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-hero-actions .btn-outline-dark:hover {
    background: #1c1e1f;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(28, 30, 31, 0.2);
}

.about-hero-actions .btn-outline-dark:active {
    transform: translateY(-1px);
}

/* About Hero Responsive */
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 48px;
    }
    
    .about-hero-description {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .about-hero-section {
        padding: 100px 0 80px;
    }
    
    .about-hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .about-hero-description {
        font-size: 16px;
    }
    
    .about-hero-actions .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* About Story Section */
.about-story-section {
    padding: 80px 0;
    background: #f4f6f8;
}

.story-content {
    text-align: center;
}

.story-content .about-description {
    max-width: 800px;
    margin: 0 auto 24px;
}

/* About Values Section */
.about-values-section {
    padding: 100px 0;
    background: #f4f6f8;
}

.about-values-section > .container > .row:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.about-values-section > .container > .row:last-child > [class*="col-"] {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    margin-bottom: 0 !important;
    padding: 0 !important;
}

@media (max-width: 991px) {
    .about-values-section > .container > .row:last-child > [class*="col-"] {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
}

@media (max-width: 767px) {
    .about-values-section > .container > .row:last-child > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.value-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1c1e1f 0%, #2d3748 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 28px;
    color: #ffffff;
}

.value-title {
    font-family: "Gilroy", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1c1e1f;
    margin-bottom: 12px;
}

.value-description {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #828486;
    line-height: 1.6;
    margin: 0;
}

/* Vision Mission Section */
.vision-mission-section {
    padding: 100px 0;
    background: #f4f6f8;
}

.vision-mission-section > .container > .row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.vision-mission-section > .container > .row > [class*="col-"] {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
    margin-bottom: 0 !important;
    padding: 0 !important;
}

@media (max-width: 991px) {
    .vision-mission-section > .container > .row > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.vision-card,
.mission-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 48px;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.vm-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1c1e1f 0%, #2d3748 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.vm-icon i {
    font-size: 24px;
    color: #ffffff;
}

.vm-title {
    font-family: "Gilroy", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1c1e1f;
    margin-bottom: 16px;
}

.vm-description {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #828486;
    line-height: 1.7;
    margin: 0;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: #f4f6f8;
}

.why-choose-section > .container > .row:last-child {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.why-choose-section > .container > .row:last-child > [class*="col-"] {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
    margin-bottom: 0 !important;
    padding: 0 !important;
}

@media (max-width: 991px) {
    .why-choose-section > .container > .row:last-child > [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #ffffff;
    border-radius: 16px;
    padding: 36px;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.why-number {
    font-family: "Gilroy", sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #1c1e1f;
    line-height: 1;
    opacity: 0.15;
    min-width: 70px;
}

.why-content {
    flex: 1;
}

.why-title {
    font-family: "Gilroy", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1c1e1f;
    margin-bottom: 12px;
}

.why-description {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #828486;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    padding: 80px 0;
    background: #f4f6f8;
}

.cta-title {
    font-family: "Gilroy", sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #1c1e1f;
    margin-bottom: 24px;
}

.cta-description {
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    line-height: 28px;
    color: #666;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid #1c1e1f;
    color: #1c1e1f;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-primary:hover {
    background: #1c1e1f;
    border-color: #1c1e1f;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline-primary:active {
    transform: translateY(0);
}

/* Services Page Styles */
.services-detail-section {
    padding: 80px 0;
    background: #f4f6f8;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card-wrapper {
    width: 100%;
}

@media (max-width: 991px) {
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
}

.service-detail-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.service-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.service-detail-card:hover .service-detail-icon {
    transform: scale(1.1);
}

.service-detail-card:hover .service-detail-icon i {
    transform: rotate(5deg);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    background: #f4f6f8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.4s ease;
}

.service-detail-icon i {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail-icon img {
    width: 40px;
    height: 40px;
}

.service-detail-icon i {
    font-size: 32px;
    color: #1c1e1f;
}

.service-detail-content {
    flex: 1;
}

.service-detail-title {
    font-family: "Gilroy", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1c1e1f;
    margin-bottom: 16px;
}

.service-detail-description {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
    margin-bottom: 20px;
}

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

.service-detail-features li {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1c1e1f;
    padding: 4px 0;
    position: relative;
    padding-left: 20px;
}

.service-detail-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1c1e1f;
    font-weight: 700;
}

.process-section {
    padding: 80px 0;
    background: #f8fafb;
}

.process-section .row {
    row-gap: 30px;
}

.process-step {
    text-align: center;
    padding: 24px;
}

.process-number {
    width: 80px;
    height: 80px;
    background: #1c1e1f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Gilroy", sans-serif;
    font-size: 24px;
    font-weight: 900;
    margin: 0 auto 24px;
}

.process-title {
    font-family: "Gilroy", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1c1e1f;
    margin-bottom: 12px;
}

.process-description {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
}

/* Projects Page Styles */
.projects-gallery-section {
    padding: 48px 0 72px;
    background: #f4f6f8;
}

#projects-hero.about-hero-section {
    padding-bottom: 56px;
}

.projects-section-head {
    margin-bottom: 36px;
}

.projects-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card-wrapper {
    width: 100%;
}

@media (max-width: 991px) {
    .projects-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .projects-cards-grid {
        grid-template-columns: 1fr;
    }
}

.project-filters-wrap {
    margin-top: 0;
    margin-bottom: 0;
}

.project-filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    row-gap: 12px;
    margin-top: 16px;
    margin-bottom: 64px;
}

.filter-btn {
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #666;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0;
}

.filter-btn:hover,
.filter-btn.active {
    background: #1c1e1f;
    border-color: #1c1e1f;
    color: #ffffff;
}

.project-card-detail {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.project-card-detail:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.project-card-detail:hover .project-image img {
    transform: scale(1.05);
}

.project-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    height: auto;
    overflow: hidden;
    background: #f4f6f8;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Placeholder for missing images */
.project-image img[src*="project"] {
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card-detail:hover .project-overlay {
    opacity: 1;
}

.project-info {
    padding: 24px;
}

.project-info--center {
    text-align: center;
}

.project-info--center .project-tech {
    justify-content: center;
}

.project-category {
    font-family: "Gilroy", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1c1e1f;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.project-name {
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1c1e1f;
    margin-bottom: 12px;
}

.projects-references-section {
    background: #ffffff;
    padding-top: 56px;
}

.projects-references-section .projects-section-head {
    margin-bottom: 24px;
}

.projects-references-section .project-filters {
    margin-top: 16px;
    margin-bottom: 64px;
}

.project-description {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #666;
    margin-bottom: 16px;
}

.project-tech {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tech-tag {
    background: #f4f6f8;
    color: #1c1e1f;
    font-family: "Gilroy", sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
}

/* Blog Page Styles */
.featured-post-section {
    padding: 80px 0;
    background: #f4f6f8;
}

.featured-post {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.featured-post-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post-content {
    padding: 40px;
}

.post-category {
    font-family: "Gilroy", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1c1e1f;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.featured-post-title {
    font-family: "Gilroy", sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #1c1e1f;
    margin-bottom: 16px;
}

.featured-post-excerpt {
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #666;
    margin-bottom: 24px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.post-date,
.post-read-time {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.blog-posts-section {
    padding: 80px 0;
    background: #f4f6f8;
}

.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card-wrapper {
    width: 100%;
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-link:hover {
    text-decoration: none;
    color: inherit;
}

@media (max-width: 991px) {
    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .blog-cards-grid {
        grid-template-columns: 1fr;
    }
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.category-btn {
    background: transparent;
    border: 2px solid #e5e7eb;
    color: #666;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-btn:hover,
.category-btn.active {
    background: #1c1e1f;
    border-color: #1c1e1f;
    color: #ffffff;
}

.blog-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card:hover .blog-read-more {
    transform: translateX(5px);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #1c1e1f;
    color: #ffffff;
    font-family: "Gilroy", sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
}

.blog-content {
    padding: 24px;
}

.blog-title {
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1c1e1f;
    margin-bottom: 12px;
    line-height: 24px;
}

.blog-excerpt {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #666;
    margin-bottom: 16px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.blog-date,
.blog-read-time {
    font-family: "Gilroy", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #666;
}

.blog-read-more {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1c1e1f;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.blog-read-more:hover {
    color: #2d3748;
}

/* Blog Detail Page Styles */
.blog-detail-hero {
    padding: 100px 0 60px;
    background: #f4f6f8;
}

.blog-detail-header {
    text-align: center;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 24px;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: #1c1e1f;
}

.blog-detail-category {
    display: inline-block;
    background: #1c1e1f;
    color: #ffffff;
    font-family: "Gilroy", sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.blog-detail-title {
    font-family: "Gilroy", sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #1c1e1f;
    line-height: 1.2;
    margin-bottom: 24px;
}

.blog-detail-meta {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.blog-detail-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
}

.blog-detail-meta .meta-item i {
    color: #1c1e1f;
}

.blog-detail-image-section {
    padding: 0 0 60px;
    background: #f4f6f8;
}

.blog-detail-featured-image {
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

.blog-detail-featured-image img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.blog-detail-content-section {
    padding: 60px 0;
    background: #ffffff;
}

.blog-detail-content {
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.blog-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1c1e1f;
    margin: 40px 0 20px;
}

.blog-detail-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1c1e1f;
    margin: 32px 0 16px;
}

.blog-detail-content p {
    margin-bottom: 20px;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 20px 0;
    padding-left: 24px;
}

.blog-detail-content li {
    margin-bottom: 12px;
}

.blog-detail-content blockquote {
    border-left: 4px solid #1c1e1f;
    padding: 20px 24px;
    margin: 32px 0;
    background: #f4f6f8;
    font-style: italic;
    font-size: 20px;
    color: #555;
}

.blog-detail-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.tags-label {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1c1e1f;
}

.tag-item {
    background: #f4f6f8;
    color: #1c1e1f;
    font-family: "Gilroy", sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
}

.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.share-label {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1c1e1f;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6f8;
    color: #1c1e1f;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.share-btn:hover {
    background: #1c1e1f;
    color: #ffffff;
}

.author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding: 24px;
    background: #f4f6f8;
    border-radius: 12px;
}

.author-avatar {
    font-size: 60px;
    color: #1c1e1f;
}

.author-info {
    flex: 1;
}

.author-name {
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1c1e1f;
    margin-bottom: 8px;
}

.author-bio {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    color: #666;
    margin: 0;
}

.related-posts-section {
    padding: 80px 0;
    background: #f4f6f8;
}

.related-posts-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
    .blog-detail-title {
        font-size: 36px;
    }

    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .blog-detail-title {
        font-size: 28px;
    }

    .blog-detail-meta {
        gap: 16px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .author-box {
        flex-direction: column;
        text-align: center;
    }
}

.newsletter-section {
    padding: 80px 0;
    background: #1c1e1f;
}

.newsletter-title {
    font-family: "Gilroy", sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
}

.newsletter-description {
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #828486;
    margin-bottom: 40px;
}

.newsletter-input-group {
    display: flex;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto 16px;
}

.newsletter-input-group .form-control {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #374151;
    background: #374151;
    color: #ffffff;
    border-radius: 12px;
}

.newsletter-input-group .form-control:focus {
    border-color: #1c1e1f;
    background: #4b5563;
    box-shadow: none;
}

.newsletter-note {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    color: #9ca3af;
}

/* Contact Page Styles */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #f0f9ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 24px;
    height: 24px;
}

.contact-details h4 {
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1c1e1f;
    margin-bottom: 4px;
}

.contact-details p {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.contact-form-section {
    padding: 80px 0;
    background: #f8fafb;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #e5e7eb;
}

.contact-info-section {
    padding: 64px 0 48px;
    background: #ffffff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 420px));
    gap: 30px;
    justify-content: center;
}

.contact-card-wrapper {
    width: 100%;
}

@media (max-width: 991px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

.contact-detail-card {
    text-align: center;
    padding: 40px 24px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-detail-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.contact-detail-card:hover .contact-detail-icon {
    transform: scale(1.1);
    background: #1c1e1f;
}

.contact-detail-card:hover .contact-detail-icon i {
    color: #ffffff;
}

.contact-detail-icon {
    width: 80px;
    height: 80px;
    background: #f4f6f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.4s ease;
}

.contact-detail-icon img {
    width: 40px;
    height: 40px;
}

.contact-detail-icon i {
    font-size: 32px;
    color: #1c1e1f;
    transition: color 0.4s ease;
}

.contact-detail-title {
    font-family: "Gilroy", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1c1e1f;
    margin-bottom: 16px;
}

.contact-detail-text {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
    margin: 0;
}

.contact-detail-text a {
    color: #1c1e1f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail-text a:hover {
    color: #666;
}

.map-section {
    padding: 0;
}

.map-wrapper {
    width: 100%;
    height: 400px;
}

.faq-section {
    padding: 80px 0;
    background: #f4f6f8;
}

.accordion-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px !important;
    margin-bottom: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.accordion-button {
    background: #ffffff;
    border: none;
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1c1e1f;
    padding: 20px 24px;
    border-radius: 12px !important;
}

.accordion-button:not(.collapsed) {
    background: #f8fafb;
    color: #1c1e1f;
    box-shadow: none;
}

.accordion-body {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #666;
    padding: 0 24px 24px;
}

/* Policy Pages Styles */
.policy-header {
    padding: 160px 0 60px;
    background: #f4f6f8;
    text-align: center;
}

.policy-title {
    font-family: "Gilroy", sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #1c1e1f;
    margin-bottom: 16px;
}

.policy-subtitle {
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #828486;
    margin: 0;
}

.policy-content {
    padding: 80px 0;
    background: #ffffff;
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 48px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    font-family: "Gilroy", sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1c1e1f;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.policy-section h3 {
    font-family: "Gilroy", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 24px;
    margin-bottom: 16px;
}

.policy-section p {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #666;
    margin-bottom: 16px;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.policy-section ul li {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #666;
    padding: 8px 0 8px 28px;
    position: relative;
}

.policy-section ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #1c1e1f;
    font-weight: 700;
    font-size: 18px;
}

.policy-section a {
    color: #1c1e1f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.policy-section a:hover {
    color: #2d3748;
    text-decoration: underline;
}

.contact-info-box {
    background: #f8fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
}

.contact-info-box p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.contact-info-box i {
    color: #1c1e1f;
    width: 20px;
    text-align: center;
}

/* Cookie Table Styles */
.cookie-table {
    margin: 24px 0;
}

.cookie-table h3 {
    margin-bottom: 16px;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cookie-table thead {
    background: #f8fafb;
}

.cookie-table th {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1c1e1f;
    padding: 16px;
    text-align: left;
    border-bottom: 2px solid #e5e7eb;
}

.cookie-table td {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-table tbody tr:hover {
    background: #fafafa;
}

/* Footer Contact Icons */
.footer-contact-figma p i {
    margin-right: 10px;
    color: #1c1e1f;
    width: 16px;
}

/* Error Pages */
.error-page-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 100px;
    background: #f4f6f8;
}

.error-page-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.error-page-badge {
    display: inline-block;
    margin-bottom: 28px;
}

.error-page-badge span {
    font-family: "Gilroy", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1c1e1f;
    background: rgba(28, 30, 31, 0.08);
    padding: 10px 22px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.error-page-title {
    font-family: "Gilroy", sans-serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -1px;
    color: #1c1e1f;
    margin-bottom: 20px;
}

.error-page-description {
    font-family: "Gilroy", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
    color: #828486;
    margin: 0 auto 36px;
    max-width: 520px;
}

.error-page-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.error-page-actions .btn {
    font-family: "Gilroy", sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
}

.error-page-links {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-page-links a {
    font-family: "Gilroy", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1c1e1f;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, color 0.25s ease;
}

.error-page-links a:hover {
    border-bottom-color: #1c1e1f;
}

@media (max-width: 767px) {
    .error-page-section {
        padding: 120px 0 80px;
        min-height: auto;
    }

    .error-page-title {
        font-size: 32px;
    }

    .error-page-description {
        font-size: 16px;
    }
}

/* Old responsive styles moved to tablet.css and mobile.css */
