/* Pages Common Styles - About & Contact */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2c2c2c 0%, #212121 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200"><path d="M0,100 Q300,50 600,100 T1200,100 L1200,200 L0,200 Z" fill="rgba(255,255,255,0.05)"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

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

.page-header h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.page-header h1 strong {
    font-weight: 700;
    color: #fff;
}

.breadcrumb {
    font-size: 16px;
    opacity: 0.95;
    margin-top: 10px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.9;
}

.breadcrumb a:hover {
    color: #212121;
    opacity: 1;
}

/* Page Content */
.page-content {
    padding: 80px 0;
    background: #fff;
    min-height: 60vh;
}

.content-section {
    margin-bottom: 60px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.content-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.content-section h2 {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 25px;
    color: #2c2c2c;
    border-bottom: 3px solid #212121;
    padding-bottom: 15px;
    display: inline-block;
}

.content-section h2 strong {
    font-weight: 700;
    color: #212121;
}

.content-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.content-section ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.content-section ul li {
    font-size: 18px;
    line-height: 2;
    color: #666;
    padding: 10px 0;
    padding-right: 30px;
    position: relative;
}

.content-section ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #212121;
    font-weight: bold;
    font-size: 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-box {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #212121;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.feature-box i {
    font-size: 48px;
    color: #212121;
    margin-bottom: 20px;
    display: block;
}

.feature-box h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.feature-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #2c2c2c;
    border-bottom: 3px solid #212121;
    padding-bottom: 15px;
}

.contact-info p {
    font-size: 18px;
    line-height: 2;
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-info p i {
    color: #212121;
    font-size: 20px;
    margin-top: 5px;
    min-width: 25px;
}

.contact-info p strong {
    color: #2c2c2c;
    font-weight: 600;
    margin-left: 10px;
}

/* Contact Form */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #2c2c2c;
    border-bottom: 3px solid #212121;
    padding-bottom: 15px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #212121;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: linear-gradient(135deg, #212121 0%, #1a1a1a 100%);
    color: #fff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 968px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-content {
        padding: 40px 0;
    }
    
    .content-section {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .content-section h2 {
        font-size: 28px;
    }
    
    .content-section p {
        font-size: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-box {
        padding: 30px 20px;
    }
    
    .contact-info h3,
    .contact-form h3 {
        font-size: 24px;
    }
    
    .contact-info p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 28px;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .content-section h2 {
        font-size: 24px;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px;
    }
}



