:root {
    --primary: #0f4c81;
    --secondary: #1e88e5;
    --accent: #f5a623;
    --dark: #1b1b1b;
    --white: #ffffff;
    --light: #f8f9fa;
    --text: #5f6b7a;
    --border: rgba(15, 76, 129, 0.12);
    --shadow: 0 20px 50px rgba(15, 76, 129, 0.12);
    --shadow-soft: 0 12px 30px rgba(27, 27, 27, 0.08);
    --radius: 24px;
    --radius-sm: 18px;
    --transition: all 0.35s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background:
        radial-gradient(circle at top left, rgba(30, 136, 229, 0.09), transparent 32%),
        linear-gradient(180deg, #fefefe 0%, #f6faff 46%, #ffffff 100%);
    line-height: 1.7;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

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

.section {
    padding: 100px 0;
    position: relative;
}

.section-tag,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-heading h2,
.section-intro h2,
.inner-hero h1,
.hero-content h1,
.hero-content h2 {
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 18px;
}

.section-heading p,
.section-intro p,
.hero-content p {
    color: var(--text);
}

.topbar {
    background: linear-gradient(90deg, var(--primary), #16385d);
    color: var(--white);
    font-size: 0.84rem;
}

.topbar-inner,
.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.topbar-inner {
    justify-content: space-between;
    padding: 8px 0;
}

.topbar a,
.topbar span {
    color: rgba(255, 255, 255, 0.92);
}

.topbar a:hover,
.social-links a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

.social-links {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.82rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 24px rgba(15, 76, 129, 0.08);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.96);
}

.navbar {
    padding: 9px 0;
    flex-wrap: nowrap;
}

.navbar-brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    color: var(--white);
    font-weight: 800;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    box-shadow: var(--shadow-soft);
}

.brand-text strong,
.brand-text small {
    display: block;
}

.brand-text strong {
    color: var(--primary);
    font-size: 1.02rem;
    line-height: 1.2;
}

.brand-text small {
    color: var(--text);
    font-size: 0.78rem;
}

.main-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 12px 16px !important;
    position: relative;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 16px;
    bottom: 6px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--secondary));
    transition: var(--transition);
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
    width: calc(100% - 32px);
}

.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.dropdown-menu {
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 12px;
}

.dropdown-item {
    border-radius: 12px;
    padding: 10px 14px;
}

.dropdown-item:hover {
    background: rgba(30, 136, 229, 0.08);
    color: var(--primary);
}

.btn {
    border: none;
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-gradient {
    color: var(--white);
    background: linear-gradient(135deg, var(--accent), #f18f01 45%, var(--secondary));
    box-shadow: 0 12px 28px rgba(30, 136, 229, 0.25);
}

.btn-gradient:hover {
    color: var(--white);
    transform: translateY(-4px);
}

.btn-soft {
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
}

.custom-toggler {
    border: none;
    box-shadow: none !important;
    padding: 0;
    display: grid;
    gap: 6px;
}

.custom-toggler span {
    display: block;
    width: 32px;
    height: 3px;
    background: var(--primary);
    border-radius: 999px;
}

.mobile-menu {
    background: linear-gradient(180deg, #0f2740, var(--primary));
    color: var(--white);
}

.site-alert-wrap {
    padding-top: 18px;
}

.site-alert {
    padding: 16px 20px;
    border-radius: 18px;
    font-weight: 500;
    box-shadow: var(--shadow-soft);
}

.site-alert-success {
    background: rgba(34, 197, 94, 0.14);
    border: 1px solid rgba(34, 197, 94, 0.22);
    color: #166534;
}

.site-alert-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.18);
    color: #991b1b;
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mobile-links {
    display: grid;
    gap: 10px;
}

.mobile-links a,
.mobile-nav-toggle {
    color: var(--white);
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font: inherit;
    font-weight: 500;
    text-align: left;
}

.mobile-nav-toggle i {
    font-size: 0.9rem;
    transition: var(--transition);
}

.mobile-nav-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mobile-nav-group {
    display: grid;
    gap: 10px;
}

.mobile-submenu {
    display: grid;
    gap: 8px;
    padding: 8px 0 4px 16px;
}

.mobile-submenu a {
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.mobile-contact-links {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.mobile-contact-links a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.94);
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    line-height: 1.5;
}

.mobile-contact-links i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--accent);
    text-align: center;
    background: rgba(245, 166, 35, 0.14);
    border: 1px solid rgba(245, 166, 35, 0.18);
}

.mobile-contact-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.hero-slider-section {
    position: relative;
}

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 550px;
    display: none;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide.active {
    display: flex;
    animation: fadeIn 0.9s ease;
}

.hero-slide .overlay,
.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.page-about .inner-hero::before {
    background: rgba(0, 0, 0, 0.6);
}

.page-blogs .inner-hero::before,
.page-contact .inner-hero::before,
.page-interiors .inner-hero::before,
.page-projects .inner-hero::before,
.page-services .inner-hero::before {
    background: rgba(0, 0, 0, 0.6);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    color: var(--white);
    padding: 54px 0 104px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.84);
    max-width: 620px;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    z-index: 2;
}

.slider-arrow.prev {
    left: 24px;
}

.slider-arrow.next {
    right: 24px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 64px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.38);
}

.slider-dot.active {
    background: var(--accent);
    transform: scale(1.15);
}

.hero-scroll-down {
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    z-index: 2;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(8px);
}

.hero-scroll-down:hover {
    color: var(--white);
    transform: translateX(-50%) translateY(4px);
}

.hero-scroll-down i {
    font-size: 0.95rem;
}

.welcome-section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.glass-card,
.info-card,
.service-card,
.project-card,
.blog-card,
.counter-card,
.mission-card,
.team-card,
.contact-panel,
.contact-form-wrap,
.sidebar-box,
.service-detail-card,
.interior-card,
.testimonial-item,
.process-step {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}

.quote-trigger {
    cursor: pointer;
}

.image-stack {
    position: relative;
    padding-right: 60px;
}

.img-main,
.rounded-image,
.service-card img,
.project-card img,
.blog-card img,
.team-card img,
.service-detail-card img,
.interior-card img {
    border-radius: var(--radius);
    width: 100%;
    object-fit: cover;
}

.img-main,
.rounded-image {
    min-height: 480px;
}

.floating-card {
    position: absolute;
    right: 0;
    bottom: 35px;
    max-width: 240px;
    padding: 24px;
}

.floating-card strong {
    display: block;
    color: var(--primary);
    font-size: 2rem;
}

.about-visual-block {
    position: relative;
}

.about-visual-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    max-width: 260px;
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.96), rgba(30, 136, 229, 0.9));
    color: var(--white);
    box-shadow: var(--shadow);
}

.about-visual-badge strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 8px;
}

.about-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.about-pill-row span {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(30, 136, 229, 0.08);
    color: var(--primary);
    font-weight: 600;
}

.why-choose-shell {
    padding: 44px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(245, 166, 35, 0.12), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.98));
    border: 1px solid rgba(15, 76, 129, 0.08);
    box-shadow: var(--shadow);
}

.why-choose-points {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.why-choose-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(15, 76, 129, 0.04);
}

.why-choose-point i {
    color: var(--accent);
    margin-top: 4px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-choose-card {
    height: 100%;
    padding: 28px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 76, 129, 0.09);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.why-choose-card:hover {
    transform: translateY(-8px);
}

.why-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 18px;
    color: var(--white);
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.why-choose-card h4 {
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin: 26px 0 32px;
}

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

.feature-item i,
.info-card i,
.service-card-body i,
.contact-item i {
    color: var(--accent);
}

.parallax-panel {
    background:
        linear-gradient(120deg, rgba(15, 76, 129, 0.96), rgba(30, 136, 229, 0.82)),
        url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80') center/cover fixed;
    color: var(--white);
}

.parallax-panel .section-tag,
.cta-box .section-tag {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.parallax-panel .info-card {
    height: 100%;
    text-align: center;
    padding: 34px 26px;
}

.parallax-panel .info-card h4,
.parallax-panel .info-card p {
    color: var(--dark);
}

.service-card,
.service-detail-card,
.blog-card,
.team-card,
.interior-card {
    overflow: hidden;
    height: 100%;
}

.service-card img,
.service-detail-card img,
.blog-card img,
.interior-card img {
    height: 260px;
}

.service-card-body,
.interior-card-body,
.blog-card-body {
    padding: 28px;
}

.service-card-body h4,
.service-card-body h3,
.project-overlay h4,
.blog-card-body h4,
.interior-card-body h3 {
    margin: 14px 0;
    font-weight: 700;
}

.service-card:hover,
.service-detail-card:hover,
.project-card:hover,
.blog-card:hover,
.team-card:hover,
.interior-card:hover {
    transform: translateY(-10px);
}

.accent-section {
    background: linear-gradient(180deg, rgba(30, 136, 229, 0.06), rgba(245, 166, 35, 0.06));
}

.mini-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 34px;
}

.mini-grid span,
.brand-strip span {
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-soft);
    font-weight: 600;
}

.interior-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.interior-collage img {
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.interior-collage img:last-child {
    margin-top: 60px;
}

.project-card {
    position: relative;
    cursor: pointer;
    min-height: 340px;
}

.project-card img {
    height: 340px;
}

.project-overlay {
    position: absolute;
    inset: auto 24px 24px 24px;
    padding: 22px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(12, 29, 48, 0.1), rgba(12, 29, 48, 0.92));
    color: var(--white);
}

.project-overlay span {
    color: var(--accent);
    font-weight: 600;
}

.blog-card-body span {
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-title-link {
    color: var(--dark);
}

.blog-title-link:hover {
    color: var(--primary);
}

.blog-article {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.blog-article-full {
    padding: 40px;
}

.blog-article-top {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 34px;
    align-items: center;
}

.blog-article-top-content {
    min-width: 0;
}

.blog-article-media {
    width: 100%;
}

.blog-article-image {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: var(--shadow-soft);
}

.blog-article-body {
    padding: 40px 0 0;
    max-width: 980px;
    overflow-wrap: anywhere;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.blog-article-meta span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(30, 136, 229, 0.08);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-article-intro {
    font-size: 1.08rem;
    color: var(--text);
    margin-bottom: 18px;
}

.blog-article-section + .blog-article-section,
.blog-article-conclusion {
    margin-top: 28px;
}

.blog-article-section h2,
.blog-article-conclusion h2,
.blog-article-faqs h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--primary);
    overflow-wrap: anywhere;
}

.blog-article-tip {
    margin-top: 14px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(30, 136, 229, 0.07);
    border-left: 4px solid var(--accent);
    color: var(--dark);
    font-weight: 500;
}

.blog-article-faqs {
    margin-top: 32px;
}

.blog-faq-item + .blog-faq-item {
    margin-top: 20px;
}

.blog-faq-item h3 {
    font-size: 1.08rem;
    margin-bottom: 8px;
    color: var(--dark);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    display: none;
    padding: 48px;
    text-align: center;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

.testimonial-item p {
    font-size: 1.12rem;
    color: var(--text);
}

.counter-section {
    background: linear-gradient(120deg, #0d3154, var(--primary));
}

.counter-card {
    text-align: center;
    padding: 34px 20px;
    height: 100%;
}

.counter-card strong {
    display: block;
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 800;
}

.counter-card span {
    color: var(--text);
    font-weight: 500;
}

.process-grid,
.timeline {
    display: grid;
    gap: 24px;
}

.process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.timeline {
    grid-template-columns: repeat(4, 1fr);
}

.process-step,
.timeline-item {
    padding: 30px;
}

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

.timeline-rich .timeline-item {
    position: relative;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(15, 76, 129, 0.12);
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.mission-panel {
    position: relative;
    overflow: hidden;
    padding: 34px;
}

.mission-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 18px;
    color: var(--white);
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
}

.about-highlight-strip {
    padding-top: 0;
}

.about-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-highlight-card {
    padding: 34px 28px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.96));
    border: 1px solid rgba(15, 76, 129, 0.08);
    box-shadow: var(--shadow-soft);
}

.about-highlight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.about-process-band {
    background: linear-gradient(180deg, rgba(15, 76, 129, 0.04), rgba(245, 166, 35, 0.04));
}

.about-process-list {
    display: grid;
    gap: 18px;
}

.about-process-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 76, 129, 0.1);
    box-shadow: var(--shadow-soft);
}

.about-process-item strong {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--white);
    font-size: 1.1rem;
}

.about-process-item h4 {
    margin-bottom: 8px;
}

.process-step span,
.timeline-item span {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
    font-weight: 700;
    margin-bottom: 18px;
}

.brand-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.cta-banner {
    padding-top: 40px;
}

.cta-box {
    padding: 44px 48px;
    border-radius: 32px;
    background: linear-gradient(120deg, rgba(15, 76, 129, 0.98), rgba(30, 136, 229, 0.85));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: var(--shadow);
}

.map-section iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

.inner-hero {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    padding: 82px 0 58px;
    text-align: center;
    color: var(--white);
    background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80') center/cover;
}

.inner-hero h1 {
    font-size: 1.7rem;
    font-weight: 500;
}

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

.breadcrumb-item,
.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
}

.breadcrumb-item.active {
    color: var(--accent);
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-bottom: 34px;
}

.filter-controls button {
    border: 1px solid var(--border);
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--white);
    font-weight: 600;
}

.filter-controls button.active {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    color: var(--white);
}

.project-item.hidden {
    display: none;
}

.lightbox-modal {
    position: fixed;
    inset: 0;
    background: rgba(8, 18, 32, 0.88);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1060;
    padding: 30px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-modal img {
    max-width: min(1000px, 100%);
    max-height: 80vh;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.lightbox-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.sidebar {
    display: grid;
    gap: 24px;
}

.sidebar-box,
.contact-panel,
.contact-form-wrap {
    padding: 30px;
}

.sidebar-box ul,
.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-box li,
.footer-widget li {
    margin-bottom: 12px;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 24px;
}

.contact-item i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(30, 136, 229, 0.08);
    font-size: 1.2rem;
}

.form-control {
    border-radius: 18px;
    border: 1px solid var(--border);
    padding: 15px 18px;
    min-height: 56px;
    box-shadow: none !important;
}

textarea.form-control {
    min-height: 160px;
}

.site-footer {
    position: relative;
    background: linear-gradient(180deg, #102338, #081220);
    color: rgba(255, 255, 255, 0.84);
    padding: 90px 0 30px;
    overflow: hidden;
}

.quote-modal .modal-content {
    border: none;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #f5faff);
    box-shadow: 0 30px 80px rgba(8, 18, 32, 0.25);
}

.quote-modal .modal-header {
    padding: 28px 30px 14px;
    align-items: flex-start;
    border-bottom: none;
}

.quote-modal .modal-header .section-tag {
    margin-bottom: 10px;
}

.quote-modal .modal-header h3 {
    margin: 0;
    font-weight: 800;
    color: var(--primary);
}

.quote-modal .modal-body {
    padding: 12px 30px 32px;
}

.quote-form .form-control,
.quote-form .form-select {
    background: rgba(255, 255, 255, 0.95);
}

.quote-form .form-select {
    min-height: 56px;
}

.footer-shape {
    position: absolute;
    inset: auto -160px -180px auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.3), transparent 68%);
}

.footer-widget h5,
.newsletter-box h6 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-widget p {
    color: rgba(255, 255, 255, 0.78);
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 24px;
}

.footer-badges span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
}

.footer-widget a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-widget a:hover {
    color: var(--accent);
}

.footer-widget ul li a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-widget ul li a::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.1);
}

.footer-contact li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.footer-contact i {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact span {
    display: grid;
    gap: 4px;
    color: rgba(255, 255, 255, 0.78);
    min-width: 0;
}

.footer-contact strong {
    color: var(--white);
    font-size: 0.92rem;
}

.footer-contact a::before {
    display: none !important;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.newsletter-form .form-control {
    min-height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 36px;
    padding-top: 24px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--white);
    font-weight: 600;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: var(--transition);
    z-index: 1030;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    background: rgba(255, 255, 255, 0.45);
    pointer-events: none;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}
