:root {
    --primary-color: #007bff;
    --primary-hover: #0056b3;
    --primary-light: #66b3ff;
    --secondary-color: #17a2b8;
    --accent-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --text-muted: #95a5a6;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e9ecef;
    --border-light: #dee2e6;
    --gradient-primary: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    --gradient-secondary: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    --gradient-accent: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    --gradient-hero: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 50%, #bbdefb 100%);
    --shadow-light: 0 2px 10px rgba(0, 123, 255, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 123, 255, 0.15);
    --shadow-heavy: 0 15px 35px rgba(0, 123, 255, 0.2);
    --section-spacing: 80px;
}

/* Hero Section */
.hero-section {
    padding: calc(var(--section-spacing) * 1.5) 0;
    background: var(--gradient-hero);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23007bff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%2317a2b8" opacity="0.1"/><circle cx="75" cy="25" r="1" fill="%23007bff" opacity="0.05"/><circle cx="25" cy="75" r="1" fill="%2317a2b8" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,123,255,0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 40px;
}

.title-prefix {
    display: block;
    font-size: 32px;
    font-weight: 400;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1.2;
}

.main-title {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 1px;
    line-height: 1.1;
}

.hero-description {
    margin-bottom: 50px;
}

.hero-description p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-youtube::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-youtube:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.btn-youtube:hover::before {
    left: 100%;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: white !important;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.btn-outline:hover::before {
    width: 100%;
}

/* Heart Protection Section */
.heart-protection-section {
    padding: var(--section-spacing) 0;
    background: white;
}

.heart-protection-content {
    text-align: center;
}

.heart-protection-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 25px;
}

.heart-protection-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
}

.conditions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.condition-item {
    background: var(--light-bg);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.condition-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Contact CTA Section */
.contact-cta-section {
    padding: var(--section-spacing) 0;
    background: var(--light-bg);
}

.contact-cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.contact-cta-section p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-phone-large {
    margin-top: 26px;
}

.contact-phone-large a {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    padding: 20px 40px;
    border: 3px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-phone-large a:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

/* Doctor Profile Section */
.doctor-profile {
    padding: var(--section-spacing) 0;
    background: white;
}

.profile-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.profile-image {
    position: relative;
    padding-bottom: 125%;
    overflow: hidden;
}

.profile-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 60px 30px 30px;
}

.profile-link {
    color: white;
    text-decoration: none;
    display: block;
    font-weight: 600;
    letter-spacing: 1px;
}

.experience-badge {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(44, 90, 160, 0.3);
}

.badge-content .number {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin-bottom: 5px;
}

.badge-content .text {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.3;
}

.profile-content {
    padding-left: 50px;
}

.section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 14px;
}

.profile-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.content-divider {
    margin: 25px 0;
}

.content-divider span {
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.profile-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 40px;
}

.profile-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.link-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.link-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    background: white;
}

.link-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.link-item:hover .link-icon {
    background: var(--primary-color);
    color: white;
}

.link-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.link-title {
    font-weight: 600;
    font-size: 16px;
}

.link-desc {
    font-size: 14px;
    color: var(--text-light);
}

.link-arrow {
    font-size: 14px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.link-item:hover .link-arrow {
    transform: translateX(5px);
}

/* Treatment Services Section */
.treatments-section {
    padding: var(--section-spacing) 0;
    background: var(--light-bg);
}

.treatments-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.contact-number {
    margin-bottom: 50px;
}

.contact-number a {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-block;
    padding: 15px 30px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-number a:hover {
    background: var(--primary-color);
    color: white;
}

.treatment-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    height: 100%;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(145deg, #ffffff 0%, #e3f2fd 100%);
}

.treatment-card:hover::before {
    transform: scaleX(1);
}

.treatment-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.4;
}

.treatment-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.treatment-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.treatment-link:hover {
    text-decoration: none;
    color: var(--primary-hover);
}

.treatment-link i {
    transition: transform 0.3s ease;
}

.treatment-link:hover i {
    transform: translateX(5px);
}

/* Specialties Section */
.specialties-section {
    padding: var(--section-spacing) 0;
    background: white;
}

.specialty-card {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
}

.specialty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background: white;
}

.specialty-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.specialty-icon::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
}

.specialty-card:hover .specialty-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: var(--shadow-medium);
}

.specialty-card:hover .specialty-icon::before {
    top: -100%;
    left: -100%;
}

/* Different colors for each specialty */
.specialty-card:nth-child(1) .specialty-icon {
    background: var(--gradient-primary);
}

.specialty-card:nth-child(2) .specialty-icon {
    background: var(--gradient-secondary);
}

.specialty-card:nth-child(3) .specialty-icon {
    background: var(--gradient-accent);
}

.specialty-card:nth-child(4) .specialty-icon {
    background: linear-gradient(135deg, #ffc107 0%, #ff8f00 100%);
}

.specialty-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-color);
}

.specialty-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specialty-link:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

/* Health Calculators Section */
.calculators-section {
    padding: var(--section-spacing) 0;
    background: var(--light-bg);
}

.calculator-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.calculator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.calculator-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: white;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-light);
    position: relative;
    overflow: hidden;
}

.calculator-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.calculator-card:hover .calculator-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: var(--shadow-medium);
}

.calculator-card:hover .calculator-icon::before {
    left: 100%;
}

/* Different colors for each calculator */
.calculator-card:nth-child(1) .calculator-icon {
    background: var(--gradient-primary);
}

.calculator-card:nth-child(2) .calculator-icon {
    background: linear-gradient(135deg, #dc3545 0%, #bd2130 100%);
}

.calculator-card:nth-child(3) .calculator-icon {
    background: linear-gradient(135deg, #fd7e14 0%, #e65100 100%);
}

.calculator-card:nth-child(4) .calculator-icon {
    background: var(--gradient-accent);
}

.calculator-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

.calculator-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.calculator-link {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
}

.calculator-link:hover {
    background: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
}

/* Statistics Section */
.statistics {
    padding: calc(var(--section-spacing) * 1.2) 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.statistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.08) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.statistics .container {
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    color: white;
    padding: 30px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.1);
}

.stat-item:last-child::after {
    display: none;
}

.stat-icon {
    font-size: 36px;
    margin-bottom: 20px;
    height: 80px;
    width: 80px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: rgba(255,255,255,0.2);
    transform: rotateY(180deg);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #fff, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
    position: relative;
    padding-bottom: 15px;
}

.stat-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-spacing) 0;
    background: white;
}

.testimonials-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 50px;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background: white;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    text-align: right;
}

.testimonial-author strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Blog Articles Section */
.blog-articles-section {
    padding: var(--section-spacing) 0;
    background: var(--light-bg);
}

.blog-articles-section .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.blog-articles-section .section-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.4;
}

.blog-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

.blog-link:hover {
    color: var(--primary-hover);
    text-decoration: none;
}

/* Promotional Videos Section */
.videos-section {
    padding: var(--section-spacing) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.videos-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.videos-section .section-header {
    margin-bottom: 50px;
}

.videos-section .section-header .section-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
}

.videos-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.video-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.video-player-wrapper {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.video-player-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.video-info p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Plyr Video Player Customization */
.video-card .plyr {
    border-radius: 16px 16px 0 0;
    height: 100%;
    --plyr-color-main: var(--primary-color);
    --plyr-video-control-color: #fff;
    --plyr-video-control-color-hover: #fff;
    --plyr-video-control-background-hover: var(--primary-color);
    --plyr-range-fill-background: var(--primary-color);
    --plyr-audio-control-background-hover: var(--primary-color);
}

.video-card .plyr__video-wrapper {
    height: 100%;
}

.video-card .plyr__poster {
    background-size: cover;
    background-position: center top;
}

/* Hide poster when video is playing */
.video-card .plyr--playing .plyr__poster,
.video-card .plyr--paused:not(.plyr--stopped) .plyr__poster {
    opacity: 0;
    pointer-events: none;
}

.video-card .plyr__control--overlaid {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    padding: 20px;
    opacity: 1;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.video-card .plyr__control--overlaid:hover {
    background: linear-gradient(135deg, #0056b3 0%, #003d80 100%);
    box-shadow: 0 10px 30px rgba(0, 123, 255, 0.5);
}

/* Custom play icon for big play button since Plyr SVG might not load */
.video-card .plyr__control--overlaid svg {
    display: none;
}

.video-card .plyr__control--overlaid::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 4px;
}

/* Custom icons for control bar buttons */
.video-card .plyr__controls .plyr__control svg {
    display: none;
}

/* Play/Pause button in controls */
.video-card .plyr__controls .plyr__control[data-plyr="play"]::before {
    content: '\f04b';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
}

.video-card .plyr--playing .plyr__controls .plyr__control[data-plyr="play"]::before {
    content: '\f04c';
}

/* Mute button */
.video-card .plyr__controls .plyr__control[data-plyr="mute"]::before {
    content: '\f028';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
}

.video-card .plyr--muted .plyr__controls .plyr__control[data-plyr="mute"]::before {
    content: '\f6a9';
}

/* Fullscreen button */
.video-card .plyr__controls .plyr__control[data-plyr="fullscreen"]::before {
    content: '\f065';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
}

.video-card .plyr--fullscreen-active .plyr__controls .plyr__control[data-plyr="fullscreen"]::before {
    content: '\f066';
}

.video-card .plyr__controls {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    padding: 60px 15px 15px;
}

.video-card .plyr__progress__container {
    flex: 1;
}

.video-card .plyr__time {
    font-size: 13px;
    font-weight: 500;
}

.video-card .plyr--video.plyr--stopped .plyr__controls {
    opacity: 0;
}

.video-card .plyr--video.plyr--stopped:hover .plyr__controls {
    opacity: 0;
}

.video-card .plyr--video.plyr--playing .plyr__controls,
.video-card .plyr--video.plyr--paused:not(.plyr--stopped) .plyr__controls {
    opacity: 1;
}

.video-card .plyr:hover .plyr__control--overlaid {
    opacity: 1;
}

.video-card .plyr--playing .plyr__control--overlaid {
    opacity: 0;
    visibility: hidden;
}

/* Fullscreen Plyr styles */
.video-card .plyr--fullscreen-fallback,
.video-card .plyr:fullscreen {
    border-radius: 0;
}

/* Videos Section Responsive */
@media (max-width: 991px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .videos-section .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .video-info {
        padding: 16px;
    }
    
    .video-info h3 {
        font-size: 15px;
    }
    
    .video-card .plyr__control--overlaid {
        padding: 16px;
    }
    
    .video-card .plyr__control--overlaid::before {
        border-width: 10px 0 10px 16px;
        margin-left: 3px;
    }
}

/* Office Gallery Section */
.office-gallery-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.gallery-header {
    margin-bottom: 30px;
}

.gallery-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* Gallery Responsive */
@media (max-width: 767px) {
    .office-gallery-section {
        padding: 50px 0;
    }
    
    .gallery-header h2 {
        font-size: 22px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

/* Newsletter Section */
.newsletter-section {
    padding: var(--section-spacing) 0;
    background: white;
}

.newsletter-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
}

.newsletter-section p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.input-group .form-control {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-right: none;
    font-size: 16px;
    outline: none;
}

.input-group .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.input-group .btn {
    padding: 15px 30px;
    border-radius: 0;
    white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .hero-title .title-prefix {
        font-size: 24px;
    }
    
    .hero-title .main-title {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .profile-content {
        padding-left: 0;
        margin-top: 30px;
        text-align: center;
    }

    .content-divider span {
        margin: 0 auto;
    }

    .link-item {
        text-align: left;
    }

    .stat-item::after {
        display: none;
    }

    .stat-item {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin-bottom: 20px;
    }

    .stat-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .hero-description p {
        font-size: 16px;
    }

    .profile-content h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 36px;
    }
    
    .contact-phone-large a {
        font-size: 24px;
        padding: 15px 25px;
    }

    .input-group {
        flex-direction: column;
        border-radius: 8px;
    }

    .input-group .form-control {
        border: 1px solid var(--border-color);
        border-radius: 8px 8px 0 0;
    }

    .input-group .btn {
        border-radius: 0 0 8px 8px;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}