/* Seyit Ammar İnşaat - Özel Stil Dosyası */

:root {
    --brand-primary: #113a66;
    --brand-accent: #14602d;
    --footer-accent: #2d9654;
}

/* Focus Visible (Accessibility) */
:focus-visible {
    outline: 3px solid var(--brand-accent);
    outline-offset: 3px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--brand-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

html {
    overflow-x: hidden;
}

body {
    background-color: #ffffff;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    padding-top: 76px;
    overflow-x: hidden;
}

@media (max-width: 991.98px) {
    body {
        padding-top: 70px;
    }
}

p {
    font-size: 1rem;
    line-height: 1.75;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    max-width: 200px;
    display: block;
}

@media (max-width: 991.98px) {
    .navbar-brand img {
        height: 38px;
        max-width: 160px;
    }
}

/* Navbar Modern */
#mainNav {
    background-color: #ffffff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    transition: all 0.35s ease;
}

.navbar-nav .nav-link {
    position: relative;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #333333 !important;
    padding: 0.5rem 0;
    margin: 0 0.4rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-accent);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--brand-accent) !important;
}

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

/* Hamburger Modern */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2845, 150, 84, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    transform: rotate(90deg);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2845, 150, 84, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M6 24L24 6'/%3e%3c/svg%3e");
}

#heroSlider .carousel-inner {
    position: relative;
    width: 100%;
}

.hero-slide {
    position: relative;
    height: calc(100vh - 76px);
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

@media (max-width: 991.98px) {
    .hero-slide {
        height: calc(100vh - 70px);
        min-height: 520px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 58, 102, 0.95) 0%, rgba(10, 35, 62, 0.88) 50%, rgba(0, 0, 0, 0.72) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

@media (min-width: 1400px) {
    .hero-content {
        max-width: 1320px;
    }
}

.hero-content h2 {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero-content p {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.75;
    margin-bottom: 0.75rem;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.9s ease 0.2s, transform 0.9s ease 0.2s;
}

.hero-content p:last-of-type {
    margin-bottom: 2rem;
}

.hero-content .btn,
.hero-content .hero-buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease 0.4s, transform 0.9s ease 0.4s;
}

.carousel-item.active .hero-content h2,
.carousel-item.active .hero-content p,
.carousel-item.active .hero-content .btn {
    opacity: 1;
    transform: translateY(0);
}

#heroSlider .btn-primary {
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1.6rem;
    border-radius: 8px;
    border: 2px solid transparent;
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.35s ease;
}

#heroSlider .btn-primary:hover {
    background-color: #f5f5f5;
    border-color: #f5f5f5;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

#heroSlider .btn-primary:focus,
#heroSlider .btn-primary:active {
    background-color: #ebebeb;
    border-color: #ebebeb;
    color: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next {
    width: 52px;
    height: 52px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.35s ease;
}

#heroSlider:hover .carousel-control-prev,
#heroSlider:hover .carousel-control-next {
    opacity: 1;
}

#heroSlider .carousel-control-prev:hover,
#heroSlider .carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

#heroSlider .carousel-control-prev {
    left: 24px;
}

#heroSlider .carousel-control-next {
    right: 24px;
}

#heroSlider .carousel-control-prev-icon,
#heroSlider .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: invert(1) brightness(2);
}

#heroSlider .carousel-indicators {
    bottom: 30px;
    gap: 8px;
}

#heroSlider .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.45);
    transition: all 0.35s ease;
}

#heroSlider .carousel-indicators .active {
    width: 32px;
    border-radius: 5px;
    background-color: #ffffff;
}

/* Reduced Motion - Accessibility & Bot Protection */
@media (prefers-reduced-motion: reduce) {
    #heroSlider .carousel-item {
        position: relative !important;
        display: none !important;
    }

    #heroSlider .carousel-item.active {
        display: flex !important;
    }

    #heroSlider .carousel-control-prev,
    #heroSlider .carousel-control-next,
    #heroSlider .carousel-indicators {
        display: none !important;
    }

    #heroSlider .carousel-item.active .hero-content h2,
    #heroSlider .carousel-item.active .hero-content p,
    #heroSlider .carousel-item.active .hero-content .btn {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }

    #testimonialCarousel .carousel-inner {
        transform: none !important;
    }

    #testimonialCarousel .carousel-item {
        position: relative !important;
        display: none !important;
    }

    #testimonialCarousel .carousel-item.active {
        display: block !important;
    }

    #testimonialCarousel .carousel-item .row {
        justify-content: center !important;
    }
}

.about-section {
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.py-7 {
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-color: rgba(17, 58, 102, 0.04);
    border-radius: 50%;
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(17, 58, 102, 0.15);
    height: 100%;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px) {
    .about-image-wrapper {
        height: auto;
    }

    .about-image-wrapper img {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background-color: var(--brand-primary);
    border-radius: 16px;
    z-index: -1;
}

.about-image-badge {
    position: absolute;
    bottom: 24px;
    right: -16px;
    background-color: #ffffff;
    color: var(--brand-accent);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.about-image-badge .badge-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.about-image-badge .badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.about-section h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    text-align: left;
    color: var(--brand-primary);
    line-height: 1.2;
}

.about-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333333;
    margin-bottom: 1rem;
}

.about-section p.lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--brand-primary);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.about-values {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem 1.5rem;
}

.about-values li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    font-weight: 600;
    color: #222222;
    font-size: 0.95rem;
}

.about-values li i {
    color: var(--brand-accent);
    font-size: 1.1rem;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #ffffff;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 18px rgba(45, 150, 84, 0.3);
    transition: all 0.35s ease;
}

.about-btn:hover,
.about-btn:focus {
    background-color: #1f7940;
    border-color: #1f7940;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 150, 84, 0.4);
    color: #ffffff;
}

.about-btn i {
    transition: none;
}

@media (max-width: 991.98px) {
    .about-section h2 {
        text-align: center;
    }

    .about-section p {
        text-align: center;
    }

    .about-image-badge {
        display: none;
    }

    .about-values {
        grid-template-columns: repeat(2, 1fr);
        max-width: 400px;
    }

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

.features-section {
    background-color: #f5f5f6;
    position: relative;
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
}

.features-section::before {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background-color: rgba(17, 58, 102, 0.04);
    border-radius: 50%;
    z-index: 0;
}

.features-section .container {
    position: relative;
    z-index: 1;
}

.section-label.light {
    display: inline-block;
    color: var(--brand-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.feature-box {
    background: #ffffff;
    border: 1px solid rgba(17, 58, 102, 0.08);
    border-radius: 16px;
    padding: 40px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-accent);
    transition: width 0.4s ease;
}

.feature-box:hover {
    box-shadow: 0 16px 40px rgba(17, 58, 102, 0.12);
    transform: translateY(-8px);
    border-color: rgba(45, 150, 84, 0.15);
}

.feature-box:hover::before {
    width: 100%;
    opacity: 0.06;
}

.feature-number {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(45, 150, 84, 0.12);
    line-height: 1;
    transition: color 0.4s ease;
}

.feature-box:hover .feature-number {
    color: rgba(45, 150, 84, 0.2);
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: #e9f0f8;
    color: var(--brand-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    transform: scale(1.08);
    background: var(--brand-accent);
    color: #ffffff;
}

.feature-box h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    color: var(--brand-primary);
}

.feature-box p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #444444;
    margin-bottom: 0;
}

.projects-section {
    background-color: #ffffff;
}

.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.project-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    height: 100%;
}

.project-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
}

.project-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.project-info {
    padding: 22px;
    text-align: left;
}

.project-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 0.75rem;
}

.project-info p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #000000;
    margin-bottom: 0.75rem;
}

.project-location {
    font-size: 0.85rem;
    color: var(--brand-accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-footer {
    background-color: #111111;
    color: #ffffff;
    padding: 80px 0 30px;
}

.site-footer h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    color: #ffffff;
    position: relative;
    padding-bottom: 0.75rem;
}

.site-footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--footer-accent);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    height: 45px;
    width: auto;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #cccccc;
    margin-bottom: 1.25rem;
}



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

.footer-links li,
.footer-contact li {
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    color: #cccccc;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-links a,
.footer-contact a {
    color: #cccccc;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--footer-accent);
    transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-contact i {
    width: 18px;
    color: var(--footer-accent);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid #2a2a2a;
    margin-top: 50px;
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
    color: #ffffff;
}

.footer-bottom p {
    margin: 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1rem;
    line-height: 1.75;
    color: #000000;
    margin-bottom: 0.5rem;
}

.stats-section {
    background: var(--brand-primary);
    color: #ffffff;
    position: relative;
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.stat-item {
    padding: 30px 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background-color: rgba(255, 255, 255, 0.2);
}

.col-lg-3:last-child .stat-item::after {
    display: none;
}

.stat-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 767.98px) {
    .stat-item {
        padding: 24px 16px;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

.testimonials-section {
    background-color: #f5f5f6;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background-color: var(--brand-accent);
    color: #ffffff;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.testimonial-carousel {
    padding: 0 10px;
}

.testimonial-carousel .carousel-inner {
    align-items: stretch;
}

.testimonial-carousel .carousel-item .row {
    align-items: stretch;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 28px;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    height: 100%;
}

.testimonial-stars {
    color: #f39c12;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-size: 0.97rem;
    line-height: 1.7;
    color: #222222;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.testimonial-author {
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 0.25rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #000;
}

@media (max-width: 767.98px) {
    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
    font-size: 1rem;
    }

    .testimonial-card {
        min-height: 260px;
        padding: 24px;
    }
}

/* Breadcrumb */
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb i {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .current {
    color: #ffffff;
}

/* Page Hero */
.page-hero {
    position: relative;
    background: var(--brand-primary);
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-content {
    text-align: left;
    color: #ffffff;
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.page-hero-text {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 1;
    margin-bottom: 0;
}

/* About Detail Cards */
.about-detail-section {
    background-color: #ffffff;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.about-detail-card {
    padding: 36px 30px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    height: 100%;
    transition: all 0.35s ease;
}

.about-detail-card:hover {
    box-shadow: 0 12px 32px rgba(17, 58, 102, 0.1);
    transform: translateY(-4px);
}

.about-detail-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(45, 150, 84, 0.1);
    color: var(--brand-accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.about-detail-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 0.75rem;
}

.about-detail-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0;
}

/* Story Section */
.story-section {
    background-color: #f9fafb;
    padding: 5rem 0;
}

.story-section h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 1.25rem;
}

.story-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1rem;
}

.story-image {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(17, 58, 102, 0.12);
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Values Section */
.values-section {
    background-color: #ffffff;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.value-item {
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.value-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.value-item:first-of-type {
    padding-top: 0;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-accent);
    color: #ffffff;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.value-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

@media (max-width: 991.98px) {
    .value-item h3,
    .value-item p {
        text-align: center;
    }

    .value-icon {
        margin-bottom: 1rem;
    }
}

/* Projects Detail Section */

.project-detail-item {
    padding: 5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.project-detail-item:nth-child(even) {
    background-color: #f9fafb;
}

.project-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.project-detail-item:first-of-type {
    padding-top: 0;
}

.project-gallery .carousel {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.35s ease;
}

.project-gallery:hover .carousel {
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.13);
}

.project-gallery .carousel-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.project-gallery .carousel-indicators {
    bottom: 12px;
    gap: 6px;
}

.project-gallery .carousel-indicators [data-bs-target] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    border: none;
}

.project-gallery .carousel-indicators .active {
    width: 24px;
    border-radius: 4px;
    background-color: #ffffff;
}

.project-detail-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--brand-primary);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
    position: relative;
    text-align: center;
}

.project-detail-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--brand-accent);
    border-radius: 2px;
}

.project-detail-desc {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #000;
    margin-bottom: 1.5rem;
}

.project-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
}

.project-features li {
    font-size: 0.95rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(20, 96, 45, 0.05);
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
}

.project-features li i {
    color: var(--brand-accent);
    flex-shrink: 0;
}

@media (max-width: 991.98px) {
    .project-detail-item {
        padding: 3rem 0;
    }

    .project-detail-title,
    .project-detail-desc,
    .project-features li {
        text-align: left;
    }

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

/* Contact Main Section */
.contact-main-section {
    background-color: #ffffff;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.contact-section-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.contact-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--brand-accent);
    border-radius: 2px;
}

.contact-section-desc {
    font-size: 0.95rem;
    color: #000000;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    background-color: #f9fafb;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background-color: #f0f0f0;
}

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

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-accent);
    color: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 4px 12px rgba(20, 96, 45, 0.2);
}

.contact-info-content h3 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--brand-primary);
    margin-bottom: 0.25rem;
}

.contact-info-content p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: #444;
    margin: 0;
}

.contact-info-content a {
    color: #444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--brand-accent);
}

.contact-info-content .closed {
    color: #c0392b;
    font-weight: 600;
}

/* Contact Form */
.contact-form {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form .form-label {
    font-size: 1rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 0.4rem;
}

.contact-form .form-label .required {
    color: #dc3545;
}

.contact-form .form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #fafafa;
}

.contact-form .form-control:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 3px rgba(20, 96, 45, 0.1);
    background-color: #ffffff;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 130px;
}

/* Google Maps */
.contact-map-section {
    background-color: #f9fafb;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.contact-map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991.98px) {
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-icon {
        margin: 0 auto 0.5rem;
    }

    .contact-section-title {
        text-align: center;
    }

    .contact-section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-section-desc {
        text-align: center;
    }

    .contact-form {
        padding: 24px;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    background: none;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 6rem !important;
    padding-bottom: 6rem !important;
    overflow: hidden;
}

.cta-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 0;
}

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

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.cta-section p {
    font-size: 1.05rem;
    opacity: 1;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 1.25rem;
}

.cta-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.cta-separator::before,
.cta-separator::after {
    content: '';
    width: 60px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.cta-buttons .about-btn {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #000000;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
    padding: 0.65rem 1.5rem;
    font-size: 0.95rem;
    transition: all 0.35s ease;
}

.cta-buttons .about-btn:hover,
.cta-buttons .about-btn:focus {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.cta-whatsapp {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: #000000 !important;
}

.cta-whatsapp:hover,
.cta-whatsapp:focus {
    background-color: var(--brand-accent) !important;
    border-color: var(--brand-accent) !important;
    color: #ffffff !important;
}

@media (max-width: 991.98px) {
    .about-detail-card,
    .story-section h2 {
        text-align: center;
    }

    .about-detail-icon {
        margin: 0 auto 1.25rem;
    }
}

/* Contact Toast */
.contact-toast {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    min-width: 340px;
    max-width: 600px;
    animation: ctIn 0.4s ease;
    font-family: "Inter", sans-serif;
}

.contact-toast-success {
    background-color: #14602d;
    color: #ffffff;
}

.contact-toast-validation {
    background-color: #e67e22;
    color: #ffffff;
}

.contact-toast-error {
    background-color: #dc3545;
    color: #ffffff;
}

.contact-toast-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-toast-body {
    flex: 1;
}

.contact-toast-message {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

.contact-toast-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0;
    line-height: 1;
}

.contact-toast-close:hover {
    color: #ffffff;
}

    @keyframes ctIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 575.98px) {
    .contact-toast {
        left: 12px;
        right: 12px;
        transform: none;
        min-width: unset;
    }

@keyframes ctIn {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

/* 404 Not Found */
.notfound-hero {
    position: relative;
    background: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
}

.notfound-hero-content {
    text-align: center;
    color: #ffffff;
    padding: 2rem 0;
}

.notfound-hero-content h1 {
    font-size: clamp(4rem, 10vw, 7rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.04em;
}

.notfound-hero-content h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.notfound-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.notfound-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.55rem 1.25rem;
    border-radius: 8px;
    background-color: #ffffff;
    border: 2px solid #ffffff;
    color: var(--brand-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.35s ease;
}

.notfound-btn:hover {
    background-color: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(45, 150, 84, 0.4);
}
