/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #87CEEB;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

/* Buttons */
.btn {
    background: #FF6B6B;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}

.btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    font-size: 16px;
    padding: 15px 30px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95)), url('/img/image-3.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.4);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    display: block;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 400;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-button {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF8E8E 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    border: 2px solid transparent;
}

.hero-button:hover {
    background: linear-gradient(135deg, #FF5252 0%, #FF7575 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-links-hero {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    font-size: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-links-hero::before {
    content: 'Jesteśmy w social mediach:';
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    margin-right: 1rem;
}

/* Section Title */
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

/* Advantages Section */
.advantages {
    padding: 80px 0;
    background: #f8f9fa;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1rem;
}

.advantage-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Types Section */
.types {
    padding: 80px 0;
}

.types-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.types-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.types-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.types-list {
    display: grid;
    gap: 1.5rem;
}

.type-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
}

.type-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-info {
    padding: 1.5rem;
}

.gallery-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Services Section */
.services {
    padding: 80px 0;
}

.services-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.services-list {
    display: grid;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2rem;
    color: #667eea;
    min-width: 40px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8f9fa;
}

.pricing-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 3rem;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.pricing-table th {
    background: #667eea;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.pricing-table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
}

.reviews-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: #667eea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Process Section */
.process {
    padding: 80px 0;
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.step-icon {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
    padding: 80px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #ccc;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-links a:hover {
    background: #764ba2;
}

.footer-bottom {
    border-top: 1px solid #555;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

.footer-bottom small {
    display: block;
    margin-top: 1rem;
    font-size: 0.75rem;
    line-height: 1.4;
    color: #999;
    opacity: 0.8;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Tag Tiles Section */
.tag-tiles {
    --tile-bg: #fff;
    --tile-border: #e6e8ec;
    --tile-text: #333;
    --tile-hover: #667eea;
    --tile-badge-bg: #f1f5f9;
    --tile-badge-text: #667eea;
    --shadow: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.tag-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    list-style: none;
    margin: 3rem 0 0 0;
    padding: 0;
}

.tag-grid a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border: 1px solid var(--tile-border);
    border-radius: 15px;
    background: var(--tile-bg);
    color: var(--tile-text);
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--tile-hover);
}

.tag-grid a:focus-visible {
    outline: 3px solid rgba(102, 126, 234, 0.3);
    outline-offset: 2px;
}

.tag-grid a:hover {
    transform: translateY(-5px);
    border-color: var(--tile-hover);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02), rgba(118, 75, 162, 0.02));
}

.tag-grid .left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.tag-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: grid;
    place-items: center;
    font-size: 18px;
    color: white;
}

.tag-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--tile-text);
}

.tag-badge {
    min-width: 40px;
    padding: 6px 12px;
    border-radius: 20px;
    background: var(--tile-badge-bg);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--tile-badge-text);
    text-align: center;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Material Pricing Section */
.material-pricing {
    padding: 80px 0;
}

/* Pricing Examples Section */
.pricing-examples {
    padding: 80px 0;
}

/* Measurement Booking Section */
.measurement-booking {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

/* About Company Section */
.about-company {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Material Pricing Section Classes */
.material-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.material-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.material-card-green {
    border-left: 4px solid #4CAF50;
}

.material-card-blue {
    border-left: 4px solid #667eea;
}

.material-card-teal {
    border-left: 4px solid #2E7D32;
}

.material-card-indigo {
    border-left: 4px solid #1976D2;
}

.material-card-red {
    border-left: 4px solid #D32F2F;
}

.material-card-orange {
    border-left: 4px solid #FF9800;
}

.material-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.material-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.material-description {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.material-price {
    font-size: 1.8rem;
    font-weight: 700;
}

.price-green { color: #4CAF50; }
.price-blue { color: #667eea; }
.price-teal { color: #2E7D32; }
.price-indigo { color: #1976D2; }
.price-red { color: #D32F2F; }
.price-orange { color: #FF9800; }

.material-badge {
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.badge-green { background: #4CAF50; }
.badge-blue { background: #667eea; }
.badge-teal { background: #2E7D32; }
.badge-indigo { background: #1976D2; }
.badge-red { background: #D32F2F; }
.badge-orange { background: #FF9800; }

.material-specs {
    font-size: 0.8rem;
    color: #666;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

.spec-row:last-child {
    margin-bottom: 0;
}

.center-text {
    text-align: center;
    margin-top: 3rem;
}

/* Pricing Examples Section Classes */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.pricing-image {
    height: 200px;
    overflow: hidden;
}

.pricing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pricing-content {
    padding: 1.5rem;
}

.pricing-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-details {
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
}

.old-price {
    font-size: 1.2rem;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
}

.sale-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FF6B6B;
    margin-left: 0.5rem;
}

.price-validity {
    color: #999;
    font-size: 0.9rem;
}

.discount-badge {
    background: #FF6B6B;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.included-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.included-table {
    width: 100%;
    font-size: 0.9rem;
}

.total-row {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #667eea;
    font-weight: 600;
    color: #667eea;
}

.total-row-red {
    border-top: 2px solid #FF6B6B;
    color: #FF6B6B;
}

/* Measurement Booking Section Classes */
.measurement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.specialist-image {
    width: 400px;
    height: 500px;
    background: url('/img/chel.png') center/cover;
    border-radius: 15px;
    margin: 0 auto;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.specialist-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 2rem 1rem 1rem;
    color: white;
}

.specialist-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.specialist-role {
    font-size: 0.9rem;
    opacity: 0.9;
}

.measurement-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.measurement-subtitle {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.measurement-discount {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #FFD700;
}

/* About Section Classes */
.about-grid {
    display: grid;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-block {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-block-blue {
    border-left: 4px solid #667eea;
}

.about-block-green {
    border-left: 4px solid #4CAF50;
}

.about-block-orange {
    border-left: 4px solid #FF9800;
}

.about-block-teal {
    border-left: 4px solid #2E7D32;
}

.about-block-indigo {
    border-left: 4px solid #1976D2;
}

.about-block-red {
    border-left: 4px solid #FF6B6B;
}

.about-block-purple {
    border-left: 4px solid #9C27B0;
}

.about-block-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.about-block-gradient-green {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    text-align: center;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-title-white {
    color: white;
}

.about-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-subtitle-white {
    color: white;
}

.about-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.about-section-title-blue {
    color: #667eea;
}

.about-section-title-green {
    color: #2E7D32;
}

.about-section-title-orange {
    color: #FF9800;
}

.about-section-title-purple {
    color: #9C27B0;
}

.about-text {
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}

.about-text-white {
    color: rgba(255,255,255,0.9);
}

/* Utility Classes */
.flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

.grid-2col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.grid-4col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.bg-light {
    background: #f8f9fa;
}

.bg-gradient {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.rounded {
    border-radius: 10px;
}

.rounded-large {
    border-radius: 15px;
}

.padding-standard {
    padding: 1.5rem;
}

.padding-large {
    padding: 2rem;
}

.margin-bottom {
    margin-bottom: 1rem;
}

.margin-bottom-large {
    margin-bottom: 2rem;
}

.text-center {
    text-align: center;
}

.font-small {
    font-size: 0.85rem;
}

.font-italic {
    font-style: italic;
}

.color-gray {
    color: #666;
}

.color-light-gray {
    color: #999;
}

.color-gold {
    color: #FFD700;
}

.weight-600 {
    font-weight: 600;
}

.weight-700 {
    font-weight: 700;
}

/* Additional About Company Section Classes */
.about-grid {
    display: grid;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-block {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.about-block-blue {
    border-left: 4px solid #667eea;
}

.about-block-green {
    border-left: 4px solid #4CAF50;
}

.about-block-teal {
    border-left: 4px solid #26a69a;
}

.about-block-indigo {
    border-left: 4px solid #5c6bc0;
}

.about-block-orange {
    border-left: 4px solid #ff7043;
}

.about-block-red {
    border-left: 4px solid #ef5350;
}

.about-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-title-small {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-text {
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-list-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
}

.about-list-icon {
    color: #4CAF50;
    position: absolute;
    left: 0;
    top: 1rem;
}

/* Form Section Classes */
.measurement-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
    box-sizing: border-box;
    outline: none;
}

.form-input:focus {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #FF6B6B 0%, #ff5252 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1rem;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.form-disclaimer {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    line-height: 1.4;
}

.form-disclaimer-link {
    color: #667eea;
    text-decoration: none;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    display: none;
}

.required-asterisk {
    color: #FF6B6B;
}

/* Additional About Section Classes */
.about-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #667eea;
}

.about-subtitle-orange {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1.5rem;
    color: #FF9800;
}

.about-subtitle-teal {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #2E7D32;
}

.texture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.texture-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.texture-item-blue {
    border-left: 3px solid #667eea;
}

.texture-item-green {
    border-left: 3px solid #4CAF50;
}

.texture-item-orange {
    border-left: 3px solid #FF9800;
}

.texture-item-purple {
    border-left: 3px solid #9C27B0;
}

.construction-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.construction-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 2rem;
}

.construction-item:last-child {
    border-bottom: none;
}

.construction-icon {
    color: #667eea;
    position: absolute;
    left: 0;
    top: 1rem;
}

.lighting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.lighting-item {
    background: #fff3e0;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid #FF9800;
}

.lighting-icon {
    color: #FF9800;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.about-block-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.feature-icon {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-title {
    margin-bottom: 0.5rem;
    color: white;
}

.feature-text {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
}

.cta-title {
    color: #FFD700;
    margin-bottom: 1rem;
}

.cta-text {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cta-button {
    background: #FFD700;
    color: #333;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}