/* Pharmaceutical Page Styles */

/* Base Styles */
.pharma-page-wrapper {
    position: relative;
    min-height: 100vh;
    color: #333;
    overflow-x: hidden;
}

/* Pharmaceutical Background */
.pharma-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #f0f5ff 0%, #f0fff5 100%);
    overflow: hidden;
}

/* Create pill/capsule shapes in the background */
.pharma-background::before,
.pharma-background::after {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.1;
}

.pharma-background::before {
    background-image: url('../images/pharma/pill-pattern-1.jpg');
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* Add more pill shapes with pseudo-elements in your actual CSS */

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.pharma-hero {
    padding: 100px 0 80px;
    text-align: center;
}

.pharma-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a365d;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #4a5568;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2b6cb0;
    color: white;
    border: 2px solid #2b6cb0;
}

.btn-primary:hover {
    background-color: #1a4971;
    border-color: #1a4971;
}

.btn-outline {
    background-color: transparent;
    color: #2b6cb0;
    border: 2px solid #2b6cb0;
}

.btn-outline:hover {
    background-color: rgba(43, 108, 176, 0.1);
}

/* About Section */
.pharma-about {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.7);
}

.pharma-about h2,
.pharma-services h2,
.pharma-partners h2,
.pharma-contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1a365d;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-content p {
    margin-bottom: 20px;
}

/* Services Section */
.pharma-services {
    padding: 80px 0;
    background-color: rgba(240, 249, 255, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(43, 108, 176, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon img {
    width: 35px;
    height: 35px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #2d3748;
}

/* Partners Section */
.pharma-partners {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.7);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partner-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.partner-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.partner-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.partner-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.partner-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #2b6cb0;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.partner-logo {
    max-width: 100px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* Contact Section */
.pharma-contact {
    padding: 80px 0;
    background-color: rgba(240, 249, 255, 0.7);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-info,
.contact-form {
    padding: 30px;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #2d3748;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(43, 108, 176, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon img {
    width: 20px;
    height: 20px;
}

.contact-label {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-text a {
    color: #2b6cb0;
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2b6cb0;
    box-shadow: 0 0 0 3px rgba(43, 108, 176, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .pharma-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        border-bottom: 1px solid #e2e8f0;
    }
}