/* CSS Variables & Tokens */
:root {
    --primary: #1B3B5F;
    --primary-dark: #0f233a;
    --primary-light: #2c5282;
    --accent: #C5A572;
    --accent-hover: #b39360;
    --accent-light: rgba(197, 165, 114, 0.1);

    --bg-light: #F7F8FA;
    --bg-white: #FFFFFF;

    --text-dark: #1F2937;
    --text-body: #4B5563;
    --text-light: #F9FAFB;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    --transition-fast: 0.2s ease-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --footer-bg: #0b1a2a;
    --footer-text: #94a3b8;
    --success: #10B981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-body);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.text-gold {
    color: var(--accent);
}

.text-white {
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1.5rem;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 140px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.header.scrolled {
    height: 100px;
    background: rgba(255, 255, 255, 0.98);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-fast);
}

.logo:hover {
    opacity: 0.9;
}

.logo-image {
    height: 130px;
    width: auto;
    max-width: 480px;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Removes the white background */
}

/* Footer specific logo styles */
.footer-brand .logo {
    display: inline-flex;
    background-color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.footer-logo {
    height: 72px;
    mix-blend-mode: normal;
    /* Keep it normal inside the white box */
}

.nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav a:not(.btn-primary-small) {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav a:not(.btn-primary-small):hover {
    color: var(--accent);
}

.nav a:not(.btn-primary-small)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition-fast);
}

.nav a:not(.btn-primary-small):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
}

/* Buttons */
.btn-primary,
.btn-primary-small {
    background: var(--accent);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    text-align: center;
    border: 1px solid var(--accent);
}

.btn-primary {
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(197, 165, 114, 0.4);
}

.btn-primary:hover,
.btn-primary-small:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 165, 114, 0.5);
}

.btn-primary-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    color: var(--text-light);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
    background: rgba(27, 59, 95, 0.4);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('hero-bg.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(27, 59, 95, 0.85) 50%, rgba(27, 59, 95, 0.5) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-content {
    max-width: 700px;
    margin-bottom: 4rem;
    padding-top: 4rem;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.badge-outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.hero-title {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

/* Stats */
.stats-wrapper {
    display: flex;
    background: rgba(15, 35, 58, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    max-width: 900px;
    box-shadow: var(--shadow-lg);
    transform: translateY(2rem);
    /* subtle overlap setup if we want, currently just floating */
}

.stat-card {
    flex: 1;
    text-align: center;
    color: var(--text-light);
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 2rem;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number .plus {
    font-size: 2rem;
    color: var(--text-light);
    margin-left: 2px;
}

.stat-number .icon-lg {
    width: 2.5rem;
    height: 2.5rem;
}

.stat-text {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Services */
.services {
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.services-grid-more {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.services-grid-more .service-card p {
    margin-bottom: 1rem;
}

.service-card {
    background: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    background: var(--accent-light);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.service-card:hover .icon-wrapper {
    background: var(--primary);
    color: var(--accent);
}

.icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.icon-wrapper i {
    font-size: 28px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-body);
    margin-bottom: 2rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition-fast);
}

.service-link svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-fast);
}

.service-link i {
    font-size: 15px;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--accent);
}

.service-link:hover svg,
.service-link:hover i {
    transform: translateX(4px);
}

/* Industries */
.industries {
    background: var(--primary);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.industries::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--accent);
    opacity: 0.05;
    border-radius: 50%;
    right: -200px;
    top: -100px;
    z-index: 1;
}

.industries .container {
    position: relative;
    z-index: 2;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
    backdrop-filter: blur(4px);
}

.industry-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(197, 165, 114, 0.5);
    /* gold accent border */
}

.industry-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(197, 165, 114, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.industry-icon-wrapper svg {
    width: 36px;
    height: 36px;
}

.industry-icon-wrapper i {
    font-size: 32px;
}

.industry-item span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Trust Section */
.trust-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trust-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.trust-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.trust-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-white);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 4px solid var(--accent);
}

.trust-badge svg,
.trust-badge i {
    color: var(--accent);
    width: 32px;
    height: 32px;
    font-size: 28px;
}

/* Floating animation for badge */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.trust-content {
    padding-left: 2rem;
}

.trust-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.trust-list li {
    display: flex;
    gap: 1.25rem;
}

.trust-icon {
    flex-shrink: 0;
    color: var(--accent);
}

.trust-icon svg {
    width: 28px;
    height: 28px;
}

.trust-icon i {
    font-size: 24px;
}

.trust-list h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.trust-list p {
    color: var(--text-body);
}

/* Inquiry Form */
.inquiry-section {
    position: relative;
    background: var(--primary);
    padding: 6rem 0;
    overflow: hidden;
}

.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(30deg, var(--primary) 12%, transparent 12.5%, transparent 87%, var(--primary) 87.5%, var(--primary)),
        linear-gradient(150deg, var(--primary) 12%, transparent 12.5%, transparent 87%, var(--primary) 87.5%, var(--primary)),
        linear-gradient(30deg, var(--primary) 12%, transparent 12.5%, transparent 87%, var(--primary) 87.5%, var(--primary)),
        linear-gradient(150deg, var(--primary) 12%, transparent 12.5%, transparent 87%, var(--primary) 87.5%, var(--primary)),
        linear-gradient(60deg, var(--primary-dark) 25%, transparent 25.5%, transparent 75%, var(--primary-dark) 75%, var(--primary-dark)),
        linear-gradient(60deg, var(--primary-dark) 25%, transparent 25.5%, transparent 75%, var(--primary-dark) 75%, var(--primary-dark));
    background-size: 40px 70px;
    background-position: 0 0, 0 0, 20px 35px, 20px 35px, 0 0, 20px 35px;
    opacity: 0.4;
    z-index: 1;
}

.inquiry-container {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.inquiry-info {
    color: var(--text-light);
}

.inquiry-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(197, 165, 114, 0.2);
    transition: var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(197, 165, 114, 0.5);
}

.cb-icon {
    width: 48px;
    height: 48px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.cb-icon i, .cb-icon svg {
    font-size: 20px;
}

.cb-text {
    display: flex;
    flex-direction: column;
}

.cb-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.cb-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

/* Form Styles */
.form-wrapper {
    background: rgba(15, 35, 58, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid var(--accent);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header h3 {
    font-size: 1.75rem;
    color: var(--text-light);
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-family: 'Inter', sans-serif;
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    cursor: pointer;
}

.select-wrapper select option {
    background: var(--primary);
    color: var(--text-light);
}

/* Custom File Upload Styling */
.custom-file-upload {
    position: relative;
    width: 100%;
}

.file-input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-label i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.file-label:hover {
    background: rgba(197, 165, 114, 0.05);
    border-color: var(--accent);
}

.form-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #94a3b8;
}

.mt-4 { margin-top: 2rem !important; }
.mt-3 { margin-top: 1.5rem !important; }
.select-icon {
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.btn-submit {
    width: 100%;
    padding: 1.25rem;
    margin-top: 2rem;
    background: var(--accent);
    color: var(--bg-white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.btn-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 165, 114, 0.4);
}

.btn-submit-success {
    background: var(--success) !important;
}

/* Loader spin animation */
.spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand .logo {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.footer-desc {
    max-width: 300px;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--footer-text);
    margin-top: 1rem;
}

.footer-address i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-address div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-rights {
    text-align: center;
    font-size: 0.9rem;
}


/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--transition-slow);
}

.reveal-in {
    opacity: 0;
    transform: scale(0.95);
    transition: var(--transition-slow);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: var(--transition-slow);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: var(--transition-slow);
}

.is-visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* Subpages Additions */
.page-header {
    position: relative;
    padding-top: 200px;
    padding-bottom: 4rem;
    background-color: var(--primary);
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--accent);
    opacity: 0.05;
    border-radius: 50%;
    right: -100px;
    top: -200px;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Service Page */
.service-row {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 3rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition-normal);
}

.service-row:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1.2;
}

.service-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-body);
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
}

.service-image {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 350px;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-row:hover .service-image img {
    transform: scale(1.05);
}

/* About Us Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text-body);
    line-height: 1.8;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-values {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 4rem;
    text-align: center;
}

/* Call to Action Banner */
.cta-banner {
    background: var(--primary);
    padding: 5rem 0;
    text-align: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Contact Page specific overrides */
.contact-page-form {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-page-form .form-header h3 {
    color: var(--text-dark);
}

.contact-page-form .form-group label {
    color: var(--text-dark);
}

.contact-page-form .form-group input,
.contact-page-form .form-group select,
.contact-page-form .form-group textarea {
    background: var(--bg-white);
    border: 1px solid #ccc;
    color: var(--text-dark);
}

.contact-page-form .form-group input:focus,
.contact-page-form .form-group select:focus,
.contact-page-form .form-group textarea:focus {
    border-color: var(--primary);
}

.contact-page-form .select-wrapper select option {
    background: var(--bg-white);
    color: var(--text-dark);
}

.contact-page-form .select-icon {
    color: var(--text-dark);
}

/* Angebot page – short form hint */
.angebot-hint {
    font-size: 0.9rem;
    color: var(--text-body);
    margin: -0.5rem 0 1.25rem 0;
}

.label-optional {
    font-weight: 400;
    opacity: 0.7;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-sidebar {
    background: var(--primary);
    color: var(--text-light);
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.contact-sidebar h3 {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Page-specific body background */
body.page-kontakt {
    background: var(--bg-light);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-container {
        padding: 0 2rem;
    }

    .inquiry-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-wrapper {
        padding: 2rem;
    }

    .service-row {
        flex-direction: column !important;
        gap: 2rem;
    }

    .service-image {
        width: 100%;
        height: 250px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 2rem;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        z-index: 999;
        padding: 2rem;
    }

    body.nav-open .nav {
        display: flex;
    }

    body.nav-open .nav a {
        color: var(--text-light);
        font-size: 1.25rem;
    }

    body.nav-open .nav a:hover::after {
        background: var(--accent);
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1001;
        padding: 0.5rem;
    }

    .mobile-menu-btn svg {
        width: 28px;
        height: 28px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .stats-wrapper {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }

    .trust-container {
        grid-template-columns: 1fr;
    }

    .trust-image-wrapper {
        order: -1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-title {
        font-size: 2.5rem;
    }
}

/* ===== Referenzen Page: Vorher & Nachher ===== */
.before-after-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.before-after-section .section-header .badge {
    margin-bottom: 1rem;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.before-after-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-normal);
}

.before-after-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.ba-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.ba-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.before-after-card:hover .ba-item img {
    transform: scale(1.03);
}

.ba-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--text-light);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.ba-caption {
    padding: 1.5rem 2rem;
}

.ba-caption h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.ba-caption p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== Referenzen Page: Kundenstimmen ===== */
.testimonials-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--accent);
    opacity: 0.06;
    border-radius: 50%;
    left: -150px;
    bottom: -150px;
    z-index: 1;
}

.testimonials-section .container {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(197, 165, 114, 0.4);
    transform: translateY(-5px);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
    color: var(--accent);
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
}

.testimonial-quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 0 1.5rem 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-avatar svg {
    width: 24px;
    height: 24px;
}

.testimonial-author strong {
    display: block;
    color: var(--text-light);
    font-size: 1rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .ba-images {
        grid-template-columns: 1fr;
    }

    .ba-caption {
        padding: 1.25rem;
    }
}

/* Floating Contact Sidebar */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.floating-btn svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}


.floating-btn.whatsapp {
    background-color: #25D366;
}

.floating-btn.phone {
    background-color: var(--accent);
}

.floating-btn .tooltip {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 1.5rem;
        right: 1.5rem;
        gap: 0.75rem;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Contact Page Specific Styles */
.page-kontakt .page-header {
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), url('contact-bg.png');
    background-size: cover;
    background-position: center;
    padding: 12rem 0 8rem;
    text-align: center;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
}

.contact-sidebar {
    background: var(--primary-light);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(197, 165, 114, 0.1);
    box-shadow: var(--shadow-xl);
}

.contact-sidebar h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-methods i {
    font-size: 1.25rem;
    width: 20px;
}

.form-wrapper.contact-page-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-2xl);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.form-header h3 {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
}

.text-gold {
    color: var(--accent);
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 0;
    }
    
    .form-wrapper.contact-page-form {
        padding: 2.5rem;
    }
}

