@import url('https://fonts.googleapis.com/css2?family=Jost:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600&display=swap');

:root {
    --primary: #f37321;
    --primary-hover: #d96215;
    --dark: #1b1d22;
    --dark-alt: #1e2026;
    --text-color: #6a6e77;
    --light-bg: #f5f6f8;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --font-heading: 'Jost', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.dark-bg {
    background-color: var(--dark-alt);
    color: var(--white);
}

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

/* Typography & Headings */
.subtitle {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px;
}

.subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.subtitle-white {
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

.center-heading .subtitle {
    padding-left: 0;
}

.center-heading .subtitle::before {
    display: none;
}

.title {
    font-size: 42px;
    margin-bottom: 25px;
}

.light-heading .title {
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    border-radius: 0; /* Square edges */
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--dark);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--dark);
}

.btn-white:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-dark {
    background-color: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--white);
    color: var(--dark);
}

/* Top Bar */
.top-bar {
    background-color: var(--dark);
    color: #a0a4ab;
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-left span {
    display: flex;
    align-items: center;
}

.top-bar-left span i {
    color: var(--primary);
    margin-right: 8px;
}

.top-bar-left .divider {
    margin: 0 15px;
    color: #4a4d55;
}

.top-bar-right .hours {
    margin-right: 20px;
}

.top-bar-right .hours i {
    color: var(--primary);
    margin-right: 8px;
}

.top-social {
    background-color: var(--primary);
    display: flex;
}

.top-social a {
    color: var(--white);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.top-social a:first-child {
    border-left: none;
}

.top-social a:hover {
    background-color: var(--dark);
}

/* Navbar */
.header {
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark);
    font-size: 16px;
    padding: 35px 0;
    display: flex;
    align-items: center;
}

.nav-links a .small-icon {
    font-size: 10px;
    margin-left: 6px;
    color: #999;
}

.nav-links a.active, .nav-links a:hover {
    color: var(--primary);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(27,29,34,0.95) 0%, rgba(27,29,34,0.7) 40%, rgba(27,29,34,0) 100%);
    z-index: -1;
}

.hero-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    max-width: 650px;
}

.hero-subtitle {
    display: inline-block;
    padding: 6px 20px;
    background-color: rgba(255,255,255,0.1);
    border-left: 3px solid var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 72px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 18px;
    color: #d5d7dc;
    margin-bottom: 40px;
}

.hero-dots {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dots .dot.active {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* About Section */
.about-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
    padding-left: 40px;
    padding-bottom: 40px;
}

.bg-shape {
    position: absolute;
    top: -20px;
    left: 0;
    width: 300px;
    height: 80%;
    background-color: var(--light-bg);
    border-radius: 500px 0 0 500px;
    z-index: -1;
}

.about-img {
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: -30px;
    background-color: var(--primary);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 10px solid var(--white);
    box-shadow: 0 10px 30px rgba(243, 115, 33, 0.3);
}

.badge-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.badge-content .num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    position: absolute;
    z-index: 2;
}

.badge-content svg {
    position: absolute;
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-content {
    flex: 1;
}

.about-content .desc {
    margin-bottom: 35px;
    font-size: 16px;
}

.features-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-box {
    flex: 1;
}

.feature-box .icon-wrap {
    width: 60px;
    height: 60px;
    background-color: rgba(243, 115, 33, 0.1);
    color: var(--primary);
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.feature-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.about-footer {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.call-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.call-box .icon {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.call-box .text span {
    display: block;
    font-size: 13px;
    color: var(--text-color);
}

.call-box .text strong {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--dark);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 4px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary);
    transition: width 0.4s ease;
}

.service-card:hover, .service-card.active {
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    border-color: transparent;
    transform: translateY(-5px);
}

.service-card:hover::after, .service-card.active::after {
    width: 100%;
}

.service-card .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border: 2px dashed var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: var(--primary);
    transition: all 0.4s ease;
}

.service-card:hover .card-icon, .service-card.active .card-icon {
    background-color: var(--primary);
    color: var(--white);
    border-style: solid;
}

.service-card .card-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.service-card .card-title a:hover {
    color: var(--primary);
}

.service-card .card-desc {
    margin-bottom: 25px;
}

.service-card .read-more {
    width: 45px;
    height: 45px;
    background-color: var(--light-bg);
    color: var(--dark);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.service-card:hover .read-more, .service-card.active .read-more {
    background-color: var(--primary);
    color: var(--white);
}

/* Consult & Stats Section */
.consult-stats {
    position: relative;
}

.consult-top {
    padding: 100px 0 150px; /* Extra padding bottom to overlap stats */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.consult-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.consult-text h2 {
    color: var(--white);
    font-size: 36px;
    margin: 0;
}

.stats-bottom {
    background-color: var(--primary);
    position: relative;
    margin-top: -60px; /* Overlap with top */
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 40px 0;
}

.stat-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.stat-box:last-child {
    border-right: none;
}

.stat-box .icon {
    font-size: 45px;
    color: rgba(255,255,255,0.8);
}

.stat-box .info .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.1;
}

.stat-box .info .text {
    font-size: 15px;
    color: var(--white);
    font-weight: 500;
}

/* Portfolio Slider */
.portfolio-slider-wrap {
    position: relative;
    margin-top: 50px;
}

.portfolio-slider {
    display: flex;
    gap: 30px;
}

.portfolio-item {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.portfolio-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.portfolio-card {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--white);
    padding: 30px 40px 30px 30px;
    width: 80%;
}

.portfolio-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-top: 40px solid transparent;
    border-right: 40px solid var(--white);
    transform: rotate(180deg) translate(0, 100%);
    transform-origin: top right;
}

.portfolio-card .category {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.portfolio-card h3 {
    font-size: 24px;
    margin-bottom: 0;
}

.portfolio-card h3 a:hover {
    color: var(--primary);
}

.portfolio-card .read-more {
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(243, 115, 33, 0.4);
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-item:hover .read-more {
    opacity: 1;
    right: 25px;
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--dark);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Why Choose Us */
.why-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}

.why-content {
    flex: 1;
}

.why-list {
    margin-top: 35px;
}

.list-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.list-item .icon {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.list-item h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.why-circles {
    flex: 1;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.circle-wrap {
    text-align: center;
}

.circle {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
}

.circle svg {
    width: 150px;
    height: 150px;
    transform: rotate(-90deg);
}

.circle circle {
    fill: none;
    stroke-width: 8;
    stroke: var(--border-color);
}

.circle .progress {
    stroke: var(--primary);
    stroke-linecap: round;
}

.circle-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
}

.circle-wrap h4 {
    font-size: 18px;
    line-height: 1.3;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background-color: var(--white);
    color: var(--dark);
    text-align: center;
    overflow: hidden;
}

.team-card .img-wrap {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.team-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .img-wrap img {
    transform: scale(1.1);
}

.team-card .social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background-color: rgba(243, 115, 33, 0.9);
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    transition: bottom 0.3s ease;
}

.team-card:hover .social-links {
    bottom: 0;
}

.team-card .social-links a {
    color: var(--white);
}

.team-card .info-wrap {
    padding: 25px 20px;
}

.team-card h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-card .role {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

/* FAQ & Video */
.faq-inner {
    display: flex;
    gap: 60px;
}

.faq-content {
    flex: 1;
}

.accordion {
    margin-top: 40px;
}

.accordion-item {
    margin-bottom: 15px;
}

.accordion-header {
    background-color: var(--light-bg);
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.accordion-header h4 {
    margin: 0;
    font-size: 18px;
}

.accordion-header .icon-box {
    width: 35px;
    height: 35px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--dark);
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-header {
    background-color: var(--primary);
}

.accordion-item.active .accordion-header h4,
.accordion-item.active .accordion-header .icon-box i {
    color: var(--white);
}

.accordion-item.active .accordion-header .icon-box {
    background-color: rgba(255,255,255,0.2);
}

.accordion-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-item.active .accordion-body {
    padding: 20px 25px;
    max-height: 300px;
}

.faq-video {
    flex: 1;
}

.video-grid {
    display: flex;
    gap: 20px;
    height: 100%;
}

.img-large {
    flex: 1.5;
}

.img-large img {
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.img-small-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.img-small {
    flex: 1;
    position: relative;
}

.img-small img {
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.video-play-box .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 0 0 8px rgba(243, 115, 33, 0.3);
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% { box-shadow: 0 0 0 0 rgba(243, 115, 33, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(243, 115, 33, 0); }
    100% { box-shadow: 0 0 0 0 rgba(243, 115, 33, 0); }
}

/* Contact & Form */
.contact-section {
    display: flex;
}

.contact-image-side {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 600px;
}

.contact-card {
    position: absolute;
    bottom: 50px;
    right: 0;
    background-color: var(--white);
    padding: 40px;
    transform: translateX(50%);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    z-index: 2;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-card p {
    margin-bottom: 20px;
}

.contact-card .phone {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form-side {
    flex: 1;
    background-color: var(--primary);
    padding: 100px 50px 100px 150px; /* Space for the overlapping card */
    color: var(--white);
}

.form-inner {
    max-width: 550px;
}

.custom-form {
    margin-top: 40px;
}

.custom-form .input-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.custom-form input, .custom-form textarea {
    width: 100%;
    padding: 16px 20px;
    background-color: var(--white);
    border: none;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
}

.custom-form input::placeholder, .custom-form textarea::placeholder {
    color: #999;
}

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.blog-card .img-wrap {
    position: relative;
    height: 260px;
}

.blog-card .img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 10px 15px;
    border-radius: 4px;
}

.date-badge .day {
    display: block;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

.date-badge .month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
}

.blog-card .content-wrap {
    padding: 30px;
}

.blog-card .meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
}

.blog-card .meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
}

.blog-card .meta span i {
    color: var(--text-color);
}

.blog-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.blog-card h3 a:hover {
    color: var(--primary);
}

.blog-card .read-more {
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.blog-card .read-more:hover {
    color: var(--primary);
}

/* Partners */
.partners {
    border-top: 1px solid var(--border-color);
    padding: 50px 0;
}

.partners-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.partners-title h4 {
    font-size: 20px;
    margin: 0;
    max-width: 250px;
}

.partners-logos {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.partners-logos img {
    height: 40px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partners-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Footer */
.footer {
    background-color: var(--dark-alt);
    color: #a0a4ab;
}

.footer-top {
    padding: 80px 15px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.widget-about .logo .logo-text {
    color: var(--white);
}

.widget-about p {
    margin: 20px 0 30px;
}

.widget-about .social-links a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.05);
    color: var(--white);
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.widget-about .social-links a:hover {
    background-color: var(--primary);
}

.widget-title {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.widget-links ul li {
    margin-bottom: 15px;
}

.widget-links ul li a {
    display: flex;
    align-items: center;
}

.widget-links ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
    font-size: 12px;
}

.widget-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.footer-bottom {
    padding: 25px 0;
    background-color: #1a1c21;
}

.bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.bottom-inner p { margin: 0; }

.bottom-links a {
    margin-left: 20px;
}

.bottom-links a:hover {
    color: var(--primary);
}

.back-to-top {
    position: absolute;
    top: -50px; /* Half outside the bottom bar */
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 20px;
}

.back-to-top:hover {
    background-color: var(--white);
    color: var(--primary);
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-card { transform: none; right: 50px; bottom: 50px; }
    .contact-form-side { padding-left: 50px; }
}

@media (max-width: 992px) {
    .services-grid, .team-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .about-inner, .why-inner, .faq-inner, .partners-inner { flex-direction: column; }
    .about-image-wrapper { padding-left: 0; margin-bottom: 30px; }
    .contact-section { flex-direction: column; }
    .contact-image-side { min-height: 400px; }
    .contact-card { right: 20px; bottom: 20px; }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; border:none;}
    .stat-box { border-right: none; justify-content: flex-start; }
    .stats-bottom { margin-top: 0; }
    .consult-top { padding-bottom: 100px; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 40px; }
    .services-grid, .team-grid, .blog-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .consult-container { flex-direction: column; text-align: center; gap: 30px; }
    .why-circles { flex-direction: column; align-items: center; }
    .video-grid { flex-direction: column; }
}


/* Mobil Menü Tasarımı */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1100;
}

.menu-toggle .bar {
    width: 30px;
    height: 3px;
    background-color: var(--dark);
    transition: 0.3s;
    border-radius: 2px;
}

/* Mobil Ekranlar İçin Özel Dokunuşlar */
@media (max-width: 992px) {
    .menu-toggle { display: flex; }
    
    .d-none-mobile { display: none; }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1050;
        padding: 100px 40px;
    }

    .navbar.active { right: 0; }

    .nav-links {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding-right: 20px;
    }

    .nav-links a {
        padding: 10px 0;
        font-size: 20px;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .call-box{
        display: none;
    }

    .top-bar{
        display: none;
    }


    /* Menü Açıldığında Hamburger İkonu Efekti */
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

    /* Hero Bölümü Mobilde Küçültme */
    .hero { height: 600px; text-align: center; }
    .hero-title { font-size: 42px !important; }
    .hero-container { justify-content: center; }
    .hero-dots { display: none; }

    /* Hakkımızda Badge Ayarı */
    .experience-badge {
        width: 120px;
        height: 120px;
        right: 10px;
        border-width: 5px;
    }
    .badge-content .num { font-size: 32px; }

    /* Servis ve İstatistik Kartları */
    .section-padding { padding: 60px 0; }
    .title { font-size: 30px; }
    
    .stats-grid { padding: 20px; }
    .stat-box { justify-content: center; text-align: center; flex-direction: column; }

    /* Portfolio */
    .portfolio-item img { height: 300px; }
    .portfolio-card { width: 90%; padding: 20px; }
    .portfolio-card h3 { font-size: 18px; }

    /* Contact Section Temizleme */
    .contact-image-side { min-height: 250px; }
    .contact-card {
        position: relative;
        bottom: 0;
        right: 0;
        transform: translateY(-50px);
        margin: 0 20px;
        padding: 30px;
        text-align: center;
    }
    .contact-card .phone { justify-content: center; font-size: 20px; }
    .contact-form-side { padding: 40px 20px; }
    
    /* FAQ Video */
    .video-grid { flex-direction: column; }
    .img-large { height: 250px; }
}

@media (max-width: 576px) {
    .custom-form .input-row { flex-direction: column; gap: 15px; }
    .footer-top { text-align: center; }
    .widget-title::after { left: 50%; transform: translateX(-50%); }
    .widget-links ul li a { justify-content: center; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}