/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #f97316;
    --primary-dark: #ea580c;
    --primary-light: #fbbf24;
    --brand-navy: #133f63;
    --brand-navy-deep: #0f2f4c;
    --brand-orange: #f2941a;
    --brand-orange-deep: #e07e06;
    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-light: #f1f5f9;
    --text-dark: #1e293b;
    --text-light: #e2e8f0;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fff;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-dark);
}

h2, h3 {
    color: var(--brand-navy);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    box-shadow: 0 1px 10px rgba(15, 47, 76, 0.08);
    border-bottom: 1px solid rgba(19, 63, 99, 0.12);
}

header.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 22px rgba(15, 47, 76, 0.14);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 1;
}

.site-logo {
    height: 48px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover .site-logo {
    transform: scale(1.03);
}

.nav {
    display: none;
}

.nav.active {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    border-top: 1px solid rgba(19, 63, 99, 0.12);
    box-shadow: 0 10px 24px rgba(15, 47, 76, 0.12);
}

.nav a:not(.call-button) {
    color: var(--brand-navy);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    display: block;
}

.nav a:not(.call-button):hover {
    background: rgba(242, 148, 26, 0.12);
    color: var(--brand-orange-deep);
}

.nav a.active:not(.call-button) {
    color: var(--brand-orange-deep);
}

.nav-button {
    display: none;
}

.header-socials {
    display: none;
}

.call-button {
    background: var(--brand-orange);
    color: #ffffff;
    padding: 0.625rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.call-button ion-icon {
    font-size: 1rem;
    color: #ffffff;
}

.call-button:hover {
    background: var(--brand-orange-deep);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(242, 148, 26, 0.35);
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-navy);
    background: rgba(19, 63, 99, 0.08);
    transition: all 0.3s ease;
}

.social-link ion-icon,
.social-link svg {
    width: 1.1rem;
    height: 1.1rem;
    fill: currentColor;
}

.social-link:hover {
    color: #ffffff;
    background: var(--brand-navy);
    transform: translateY(-2px);
}

@media (min-width: 1024px) {
    .header-content {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    }

    .logo {
        grid-column: 1;
        justify-self: start;
    }

    .nav {
        display: flex;
        grid-column: 2;
        justify-self: center;
        position: static;
        background: none;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0;
        gap: 0.25rem;
        border: none;
    }

    .nav .call-button {
        margin-left: 1.5rem;
    }

    .header-socials {
        display: inline-flex;
        grid-column: 3;
        justify-self: end;
        align-items: center;
        gap: 0.55rem;
    }

    .nav.active {
        display: flex;
    }

    .nav a:not(.call-button) {
        padding: 0.5rem 1rem;
    }

    .nav-button {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.25rem;
        cursor: pointer;
        display: none;
    }
}

/* Mobile menu button */
.menu-button {
    background: none;
    border: none;
    color: var(--brand-navy);
    font-size: 1.5rem;
    cursor: pointer;
    display: block;
}

.menu-button ion-icon {
    font-size: 1.65rem;
}

@media (min-width: 1024px) {
    .menu-button {
        display: none;
    }
}

/* Hero Section */
.hero {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
    padding-top: 80px;
    padding-left: 3rem;
    padding-right: 3rem;
    margin: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.9) 25%, rgba(15, 23, 42, 0.5) 75%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 3rem 2rem;
    margin-left: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.4);
    color: rgb(254, 197, 45);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
}

.hero-badge span {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: rgb(251, 146, 60);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.hero h1 .highlight {
    background: linear-gradient(to right, rgb(251, 146, 60), rgb(249, 115, 22), rgb(253, 224, 71));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    color: rgb(203, 213, 225);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn ion-icon {
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--bg-dark);
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

section.light {
    background: white;
}

section.dark {
    background: var(--bg-dark);
    color: white;
}

section.light-bg {
    background: var(--bg-light);
}

.gallery-page-section {
    padding-top: 8rem;
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.55rem 1.1rem;
    border: 1px solid rgba(19, 63, 99, 0.25);
    background: rgba(255, 255, 255, 0.86);
    color: var(--brand-navy);
    border-radius: 9999px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.filter-btn:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange-deep);
    transform: translateY(-1px);
}

.filter-btn.active {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: white;
}

.filter-btn.active:hover {
    background: var(--brand-orange-deep);
    border-color: var(--brand-orange-deep);
    color: white;
}

.gallery-grid-wrap {
    margin-bottom: 4rem;
}

.gallery-grid .gallery-item {
    padding: 1.25rem;
}

.gallery-grid .gallery-item h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.gallery-grid .gallery-item p {
    margin: 0;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgb(254, 237, 207);
    color: rgb(180, 83, 9);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-badge.dark {
    background: rgba(249, 115, 22, 0.2);
    color: rgb(254, 197, 45);
}

.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--brand-navy);
}

.section-header.dark h2,
.section-header-dark h2 {
    color: white !important;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
}

.section-header-dark p {
    color: rgb(203, 213, 225) !important;
    max-width: 600px;
    margin: 0 auto;
}

.section-header.dark p {
    color: rgb(203, 213, 225);
}

/* Grid */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: 1fr;
}

.grid-3 {
    grid-template-columns: 1fr;
}

.grid-4 {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Card Styles */
.card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card.dark {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(249, 115, 22, 0.2);
    color: white;
}

.card.dark:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(249, 115, 22, 0.4);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(249, 115, 22, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.card-icon ion-icon {
    font-size: inherit;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.card.dark p {
    color: rgb(203, 213, 225);
}

/* Footer */
footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.footer-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-logo {
    height: 46px;
    width: auto;
    display: block;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-line {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-contact-line ion-icon {
    color: var(--brand-orange);
    font-size: 1.05rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.footer-contact-line a,
.footer-contact-line span {
    color: rgb(203, 213, 225);
}

.footer-contact-line a {
    display: inline;
    margin: 0;
}

.footer-section a {
    color: rgb(203, 213, 225);
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(249, 115, 22, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgb(148, 163, 184);
}

/* Contact Form */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-submit-button {
    justify-content: center;
    position: relative;
}

.contact-submit-button:disabled {
    opacity: 0.9;
    cursor: wait !important;
}

.contact-submit-button.is-submitting {
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.28);
}

.contact-submit-spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    border-radius: 9999px;
    display: none;
    animation: contact-submit-spin 0.75s linear infinite;
}

.contact-submit-button.is-submitting .contact-submit-spinner {
    display: inline-block;
}

.contact-submit-button.is-submitting [data-contact-submit-label] {
    min-width: 5.5rem;
}

#contactForm.is-submitting {
    cursor: wait;
}

#contactForm.is-submitting input,
#contactForm.is-submitting textarea,
#contactForm.is-submitting select {
    cursor: wait;
}

@keyframes contact-submit-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-white {
    color: white;
}

.text-primary {
    color: var(--primary-color);
}

.text-muted {
    color: var(--text-muted);
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-primary {
    background: rgba(249, 115, 22, 0.1);
    color: var(--primary-color);
}

.badge-success {
    background: rgba(34, 197, 94, 0.1);
    color: rgb(22, 163, 74);
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgb(34, 197, 94);
    color: rgb(22, 163, 74);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgb(239, 68, 68);
    color: rgb(185, 28, 28);
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgb(59, 130, 246);
    color: rgb(37, 99, 235);
}

.contact-confirmation-backdrop {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.55);
    z-index: 1500;
}

.contact-confirmation-backdrop[hidden] {
    display: none !important;
}

.contact-confirmation-modal {
    width: min(440px, 100%);
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}

.contact-confirmation-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    border-radius: 9999px;
    display: grid;
    place-items: center;
    background: rgba(249, 115, 22, 0.12);
    color: var(--primary-color);
}

.contact-confirmation-icon ion-icon {
    font-size: 2rem;
}

.contact-confirmation-modal h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.contact-confirmation-modal p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.feature-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-icon ion-icon {
    font-size: inherit;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--brand-navy);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

section.light-bg.additional-services-section {
    background:
        linear-gradient(rgba(241, 245, 249, 0.92), rgba(241, 245, 249, 0.92)),
        url("../assets/ps-welding-services-selct-maintenane.jpeg") center / cover no-repeat;
}

section.light-bg.additional-services-section .card {
    background: rgba(255, 255, 255, 0.94);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 6rem 2rem !important;
    background: #0f172a !important;
    color: white !important;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.why-choose-us h2,
.why-choose-us h3,
.why-choose-us p,
.why-choose-us a {
    color: inherit !important;
}

.why-choose-us-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.15), transparent 50%);
    opacity: 1;
    z-index: 0;
}

.why-choose-us > .container {
    position: relative;
    z-index: 1;
}

.section-header-dark {
    text-align: center !important;
    margin-bottom: 4rem !important;
    color: white !important;
}

.section-header-dark .badge-dark {
    margin-bottom: 1.5rem !important;
}

.section-header-dark h2 {
    color: white !important;
    font-size: 2.75rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
    font-weight: 900 !important;
}

.section-header-dark p {
    color: rgb(203, 213, 225) !important;
    font-size: 1.125rem !important;
    max-width: 700px !important;
    margin: 0 auto !important;
    line-height: 1.6 !important;
}

.badge-dark {
    display: inline-block !important;
    background: rgba(249, 115, 22, 0.2) !important;
    border: 1px solid rgba(249, 115, 22, 0.4) !important;
    color: rgb(254, 197, 45) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 9999px !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}

.benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    width: 100% !important;
}

.benefit-card {
    background: rgba(30, 41, 59, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(71, 85, 105, 0.5) !important;
    border-radius: 1rem !important;
    padding: 2rem !important;
    transition: all 0.3s ease !important;
    color: white !important;
    text-align: left !important;
}

.benefit-card:hover {
    border-color: var(--primary-color) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2) !important;
}

.benefit-icon {
    font-size: 2.5rem !important;
    margin-bottom: 1.5rem !important;
    display: block !important;
    transition: transform 0.3s ease !important;
}

.benefit-icon ion-icon {
    font-size: inherit;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) !important;
}

.benefit-card h3 {
    color: white !important;
    font-size: 1.25rem !important;
    margin-bottom: 0.75rem !important;
    font-weight: 900 !important;
    line-height: 1.3 !important;
}

.benefit-card p {
    color: rgb(148, 163, 184) !important;
    line-height: 1.6 !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background-image:
        linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(26, 41, 73, 0.84) 100%),
        url("../assets/ps-welding-services-selct-10.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.cta-content p {
    color: rgb(203, 213, 225);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.inline-info-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.inline-check-icon {
    color: var(--primary-color);
    font-size: 1.35rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.list-check-icon {
    color: var(--primary-color);
    margin-right: 0.35rem;
    vertical-align: middle;
}

.table-check-icon {
    color: var(--primary-color);
    vertical-align: middle;
}

.trust-check-icon {
    color: var(--primary-color);
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.lightbox-close ion-icon {
    font-size: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .site-logo {
        height: 42px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero {
        padding-top: 80px;
    }

    .hero-content {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .container {
        padding: 0 1rem;
    }

    .features-section {
        padding: 3rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .gallery-filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 0.25rem 0.35rem;
        scrollbar-width: thin;
    }

    .filter-btn {
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .why-choose-us {
        padding: 4rem 2rem;
    }

    .section-header-dark h2 {
        font-size: 2rem;
    }

    .section-header-dark p {
        font-size: 1rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    .cta-section {
        padding: 4rem 0;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
