* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(46, 139, 87, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(46, 139, 87, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(46, 139, 87, 0.01) 0%, transparent 50%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Professional Header Design */
.professional-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #2E8B57, #228B22);
    color: white;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-icon {
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 5px;
    border-radius: 50%;
}

.social-link:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.1);
}

/* Main Header */
.main-header {
    background: white;
    padding: 15px 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.header-content-announcement {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Brand Section */
.brand-section {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2E8B57;
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
    transition: all 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(46, 139, 87, 0.4);
}

.brand-info {
    color: #333;
}

.brand-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #2E8B57;
    line-height: 1.2;
}

.brand-subtitle {
    font-size: 0.9rem;
    margin: 0;
    color: #666;
    font-weight: 400;
}

/* Navigation */
.main-navigation {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2E8B57, #228B22);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.nav-icon {
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.nav-text {
    position: relative;
    z-index: 1;
}

/* Action Section */
.action-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.primary-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-icon {
    font-size: 1rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.hamburger {
    width: 25px;
    height: 3px;
    background: #2E8B57;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Menu Debug and Isolation */
.mobile-menu-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(5px) !important;
    z-index: 9999 !important;
    display: none !important;
    opacity: 0 !important;
    transition: all 0.3s ease !important;
}

.mobile-menu-overlay.active {
    display: flex !important;
    opacity: 1 !important;
}

.mobile-menu-content {
    background: white !important;
    width: 300px !important;
    height: 100% !important;
    margin-left: auto !important;
    padding: 20px !important;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1) !important;
    transform: translateX(100%) !important;
    transition: transform 0.3s ease !important;
    overflow-y: auto !important;
    position: relative !important;
    z-index: 10000 !important;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0) !important;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2E8B57;
    margin: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: #f0f0f0;
    color: #333;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-item {
    margin-bottom: 10px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Keep active state always */
.mobile-nav-link.active {
    background: linear-gradient(135deg, #2E8B57, #228B22);
    color: white;
    transform: translateX(5px);
}
/* In the sidebar, disable hover highlight so only active shows green */
.mobile-menu-overlay .mobile-nav-link:hover {
    background: transparent;
    color: inherit;
    transform: none;
}
/* Apply hover styles only on devices that actually support hover */
@media (hover: hover) {
    .mobile-nav-link:hover {
        background: linear-gradient(135deg, #2E8B57, #228B22);
        color: white;
        transform: translateX(5px);
    }
}

.mobile-nav-icon {
    font-size: 1.2rem;
}

.mobile-menu-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.mobile-primary-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* Mobile Menu Isolation */
.mobile-menu-overlay * {
    box-sizing: border-box;
}

.mobile-menu-content {
    background: white !important;
    color: #333 !important;
}

.mobile-menu-content * {
    color: inherit !important;
    background: transparent !important;
}

.mobile-nav-link {
    background: transparent !important;
    color: #333 !important;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: linear-gradient(135deg, #2E8B57, #228B22) !important;
    color: white !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .main-header {
        padding: 10px 15px;
    }
    
    .header-content {
        gap: 15px;
    }
    
    .header-content-announcement {
        gap: 15px;
    }
    
    .main-navigation {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .primary-btn {
        display: none;
    }
    
    .brand-title {
        font-size: 1.2rem;
    }
    
    .brand-subtitle {
        font-size: 0.8rem;
    }
    
    .brand-logo {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .main-header {
        padding: 8px 10px;
    }
    
    .logo-container {
        gap: 10px;
    }
    
    .brand-title {
        font-size: 1rem;
    }
    
    .brand-subtitle {
        font-size: 0.7rem;
    }
    
    .brand-logo {
        width: 40px;
        height: 40px;
    }
    
    .mobile-menu-content {
        width: 100%;
    }
}

/* Additional Mobile Improvements */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }
    
    .announcement-card::before {
        display: none;
    }
    
    .particles {
        display: none;
    }
    
    .video-modal {
        padding: 10px;
    }
    
    .modal-content {
        width: 100%;
        height: auto;
    }
    
    .video-info {
        padding: 15px;
    }
    
    .video-info h3 {
        font-size: 1.1rem;
    }
    
    .video-info p {
        font-size: 0.9rem;
    }
}

.announcement-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    margin: 20px 0;
    animation: slideUp 0.8s ease-out, cardFloat 6s ease-in-out infinite;
    position: relative;
}

.announcement-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(46, 139, 87, 0.1), transparent);
    animation: shimmer 3s infinite;
    z-index: 0;
}

.announcement-card > * {
    position: relative;
    z-index: 1;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.header {
    background: linear-gradient(135deg, #2E8B57 0%, #228B22 100%);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.header-content {
    position: relative;
    z-index: 1;
}

.header-content-announcement {
    position: relative;
    z-index: 1;
}

.announcement-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: bounce 2s infinite, rotate 4s linear infinite;
    display: inline-block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.main-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    }
    to {
        text-shadow: 2px 2px 20px rgba(255,255,255,0.5), 0 0 30px rgba(255,255,255,0.3);
    }
}

.subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out 0.5s both;
    word-break: normal;
    overflow-wrap: break-word;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.highlight-badge {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    font-weight: bold;
    font-size: 1.1rem;
    border: 2px solid rgba(255,255,255,0.3);
    animation: pulse 2s infinite, scaleIn 1s ease-out 1s both;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.content {
    padding: 40px;
}

.section {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInFromLeft 0.8s ease-out forwards;
}

.section:nth-child(1) { animation-delay: 0.2s; }
.section:nth-child(2) { animation-delay: 0.4s; }
.section:nth-child(3) { animation-delay: 0.6s; }
.section:nth-child(4) { animation-delay: 0.8s; }

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-title {
    font-size: 1.8rem;
    color: #2E8B57;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: titleSlide 0.6s ease-out 0.3s both;
}

@keyframes titleSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-icon {
    font-size: 1.5rem;
    animation: iconWiggle 2s ease-in-out infinite;
}

@keyframes iconWiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.detail-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #2E8B57;
    transition: all 0.3s ease;
    animation: cardSlideUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.detail-card:nth-child(1) { animation-delay: 0.1s; }
.detail-card:nth-child(2) { animation-delay: 0.2s; }
.detail-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes cardSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left-color: #FF6B6B;
}

.detail-title {
    font-weight: bold;
    color: #2E8B57;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.price-highlight {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin: 20px 0;
    font-size: 1.2rem;
    font-weight: bold;
    animation: pricePulse 2s ease-in-out infinite, slideInFromRight 0.8s ease-out 0.5s both;
    position: relative;
    overflow: hidden;
}

.price-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: priceShine 3s infinite;
}

@keyframes pricePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes priceShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: listItemSlide 0.5s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.benefits-list li:nth-child(1) { animation-delay: 0.1s; }
.benefits-list li:nth-child(2) { animation-delay: 0.2s; }

@keyframes listItemSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefits-list li:last-child {
    border-bottom: none;
}

.check-icon {
    color: #2E8B57;
    font-weight: bold;
    animation: checkBounce 1s ease-in-out infinite;
}

@keyframes checkBounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.contact-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
    animation: contactSlideUp 0.8s ease-out 1s both, contactGlow 3s ease-in-out infinite alternate;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: contactShimmer 4s linear infinite;
}

@keyframes contactSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes contactGlow {
    from {
        box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    }
    to {
        box-shadow: 0 20px 50px rgba(102, 126, 234, 0.6);
    }
}

@keyframes contactShimmer {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.contact-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    animation: titleFloat 2s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.phone-numbers {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.phone-number {
    background: rgba(255,255,255,0.2);
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    animation: phoneSlideIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.phone-number:nth-child(1) { animation-delay: 1.2s; }
.phone-number:nth-child(2) { animation-delay: 1.4s; }

@keyframes phoneSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.phone-number:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1) translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.youtube-link {
    display: inline-block;
    background: #FF0000;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    animation: youtubeSlideUp 0.8s ease-out 1.6s both;
    position: relative;
    overflow: hidden;
}

.youtube-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: youtubeShine 2s infinite;
}

@keyframes youtubeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes youtubeShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.youtube-link:hover {
    background: #CC0000;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 15px 35px rgba(255,0,0,0.3);
}

.footer {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    .header-container {
        padding: 0 10px;
    }
    
    .header-top {
        flex-direction: column;
        gap: 8px;
        padding: 8px 0;
        font-size: 0.8rem;
    }
    
    .header-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .header-main {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 10px 0;
    }
    
    .logo-section {
        text-align: center;
        width: 100%;
    }
    
    .header-right {
        width: 100%;
        justify-content: flex-end;
        gap: 20px;
    }
    
    .logo-icon {
        font-size: 2.5rem;
    }
    
    .main-nav {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .header-actions {
        width: 100%;
        justify-content: center;
    }
    
    .apply-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .announcement-card {
        margin: 10px 0;
        border-radius: 15px;
    }
    
    .header {
        padding: 20px;
    }
    
    .main-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .subtitle {
        font-size: 1rem;
        line-height: 1.3;
    }
    
    .highlight-badge {
        font-size: 1rem;
        padding: 8px 16px;
    }
    
    .content {
        padding: 15px;
    }
    
    .section-title {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .detail-card {
        padding: 15px;
        text-align: center;
    }
    
    .price-highlight {
        font-size: 1rem;
        padding: 12px;
        margin: 15px 0;
    }
    
    .benefits-list li {
        padding: 8px 0;
        font-size: 0.9rem;
    }
    
    .contact-section {
        padding: 20px;
        margin: 20px 0;
    }
    
    .contact-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .phone-numbers {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .phone-number {
        padding: 12px 20px;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
    }
    
    .youtube-link {
        padding: 12px 25px;
        font-size: 0.9rem;
        margin-top: 15px;
    }
    
    .video-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 20px 0;
    }
    
    .video-thumbnail {
        height: 160px;
    }
    
    .play-button {
        width: 45px;
        height: 45px;
    }
    
    .play-icon {
        font-size: 14px;
    }
    
    .video-overlay h3 {
        font-size: 1rem;
    }
    
    .video-overlay p {
        font-size: 0.8rem;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 20px 0;
    }
    
    .image-container {
        height: 200px;
    }
    
    .image-overlay h3 {
        font-size: 1rem;
    }
    
    .image-overlay p {
        font-size: 0.8rem;
    }
    
    .image-modal-content {
        max-width: 95%;
        max-height: 90%;
        margin: 10px;
    }
    
    .modal-image {
        max-height: 50vh;
    }
    
    .image-modal-close {
        top: -35px;
        right: 5px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 90%;
        margin: 10px;
    }
    
    .modal-video {
        max-height: 50vh;
    }
    
    .modal-close {
        top: -35px;
        right: 5px;
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .footer {
        padding: 15px;
        font-size: 0.8rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 5px;
    }
    
    .header-container {
        padding: 0 5px;
    }
    
    .header-top {
        padding: 5px 0;
        font-size: 0.7rem;
    }
    
    .header-main {
        padding: 5px 0;
    }
    
    .logo-icon {
        font-size: 2rem;
    }
    
    .logo-image {
        width: 50px;
        height: 50px;
    }
    
    .image-container {
        height: 180px;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .content {
        padding: 10px;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .detail-card {
        padding: 12px;
    }
    
    .price-highlight {
        font-size: 0.9rem;
        padding: 10px;
    }
    
    .contact-section {
        padding: 15px;
    }
    
    .phone-number {
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .video-thumbnail {
        height: 140px;
    }
    
    .play-button {
        width: 40px;
        height: 40px;
    }
    
    .play-icon {
        font-size: 12px;
    }
}

.footer {
    text-align: center;
    padding: 20px;
    color: #666;
    font-size: 0.9rem;
    animation: footerFadeIn 1s ease-out 2s both;
}

@keyframes footerFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating particles animation */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: rgba(46, 139, 87, 0.05);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    width: 10px;
    height: 10px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    width: 15px;
    height: 15px;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.particle:nth-child(3) {
    width: 8px;
    height: 8px;
    left: 30%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.particle:nth-child(4) {
    width: 12px;
    height: 12px;
    left: 40%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(5) {
    width: 6px;
    height: 6px;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.particle:nth-child(6) {
    width: 14px;
    height: 14px;
    left: 60%;
    animation-delay: 5s;
    animation-duration: 8s;
}

.particle:nth-child(7) {
    width: 9px;
    height: 9px;
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 6s;
}

.particle:nth-child(8) {
    width: 11px;
    height: 11px;
    left: 80%;
    animation-delay: 1.5s;
    animation-duration: 7s;
}

.particle:nth-child(9) {
    width: 7px;
    height: 7px;
    left: 90%;
    animation-delay: 4.5s;
    animation-duration: 9s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Video Gallery Styles */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.video-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: videoSlideUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
}

.video-item:nth-child(1) { animation-delay: 0.1s; }
.video-item:nth-child(2) { animation-delay: 0.2s; }
.video-item:nth-child(3) { animation-delay: 0.3s; }
.video-item:nth-child(4) { animation-delay: 0.4s; }
.video-item:nth-child(5) { animation-delay: 0.5s; }
.video-item:nth-child(6) { animation-delay: 0.6s; }
.video-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes videoSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.video-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #f0f0f0;
}

.video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail video {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(46, 139, 87, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.play-icon {
    color: white;
    font-size: 20px;
    margin-left: 3px;
}

.video-item:hover .play-button {
    background: rgba(46, 139, 87, 1);
    transform: translate(-50%, -50%) scale(1.2);
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.video-item:hover .video-overlay {
    transform: translateY(0);
}

.video-overlay h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.video-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: modalFadeIn 0.3s ease-out;
}

.video-modal.active {
    display: flex;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: black;
    border-radius: 10px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-video {
    width: 100%;
    height: auto;
    max-height: 80vh;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.video-info {
    padding: 20px;
    background: white;
}

.video-info h3 {
    margin: 0 0 10px 0;
    color: #2E8B57;
    font-size: 1.3rem;
}

.video-info p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}

/* Image Gallery Styles */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.image-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    animation: imageSlideUp 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
}

.image-item:nth-child(1) { animation-delay: 0.1s; }
.image-item:nth-child(2) { animation-delay: 0.2s; }
.image-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes imageSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.image-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-item:hover .gallery-image {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.image-item:hover .image-overlay {
    transform: translateY(0);
}

.image-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.image-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Image Modal */
.image-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: imageModalFadeIn 0.3s ease-out;
}

.image-modal.active {
    display: flex;
}

@keyframes imageModalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.image-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: imageModalSlideIn 0.3s ease-out;
}

@keyframes imageModalSlideIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    border-radius: 10px;
}

.image-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.image-modal-close:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* Center the click-here-gif */
.click-here-gif {
    display: block;
    margin: 0 auto;
    text-align: center;
}

/* Hide header GIF on large devices, show gallery GIF on large devices */
@media (min-width: 769px) {
    .header .click-here-gif {
        display: none;
    }
    .image-gallery-section .click-here-gif {
        display: block;
    }
}

/* Show both GIFs on small devices */
@media (max-width: 768px) {
    .header .click-here-gif {
        display: block;
    }
    .image-gallery-section .click-here-gif {
        display: block;
    }
}

/* Responsive body padding for fixed header */
body {
    padding-top: 120px;
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    /* Break long Tamil text into multiple lines on mobile */
    .subtitle {
        line-height: 1.4;
        word-break: normal;
        white-space: normal;
        overflow-wrap: break-word;
        max-width: 100%;
        padding-right: 10px;
        display: block;
        width: 100%;
    }
    
    /* Force subtitle to break into multiple lines on small screens */
    @media (max-width: 480px) {
        .subtitle {
            font-size: 1.1rem;
            line-height: 1.5;
            text-align: center;
            padding: 0 10px;
        }
    }
    
    /* Make subtitle appear below main title on mobile */
    .header-content-announcement {
        align-items: center;
        text-align: center;
    }
    .header-content-announcement {
        flex-direction: column;
        align-items: center;
    }
    
    .main-title {
        margin-bottom: 15px;
    }
    
    .subtitle {
        margin-top: 10px;
        margin-bottom: 15px;
        width: 100%;
        text-align: center;
    }
    
    .footer p {
        line-height: 1.4;
        word-break: normal;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    /* Break long organization name in contact section */
    .benefits-list li {
        line-height: 1.4;
        word-break: normal;
        overflow-wrap: break-word;
        white-space: normal;
    }
}

/* Ensure overlay shows on top and is interactive when active */
#mobileMenuOverlay { pointer-events: none; }
#mobileMenuOverlay.active {
    visibility: visible !important;
    pointer-events: auto !important;
    display: flex !important;
    opacity: 1 !important;
    z-index: 99999 !important;
}
/* Freeze header when menu is open */
body.menu-open .professional-header {
    transform: none !important;
    position: fixed;
    left: 0; right: 0; top: 0;
}
body.menu-open { overflow: hidden; }

/* Gallery WhatsApp Button Styles */
.gallery-wapp-wrap {
    display: flex;
    justify-content: center;
    margin: 25px 0 0 0;
}
.gallery-wapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 0.2px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    animation: gwappPulse 2.4s ease-in-out infinite;
}
.gallery-wapp-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 28px rgba(0,0,0,0.2);
    animation: shakeCorners 0.6s ease-in-out infinite;
}
.gallery-wapp-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: skewX(-20deg);
    animation: gwappShine 4s linear infinite;
}
@keyframes gwappPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes gwappShine {
    0% { left: -120%; }
    100% { left: 120%; }
}
@keyframes shakeCorners {
    0%, 100% { 
        transform: translateY(-2px) scale(1.03) rotate(0deg);
    }
    25% { 
        transform: translateY(-2px) scale(1.03) rotate(-2deg);
    }
    50% { 
        transform: translateY(-2px) scale(1.03) rotate(2deg);
    }
    75% { 
        transform: translateY(-2px) scale(1.03) rotate(-1deg);
    }
}

/* Global WhatsApp decoration styles */
.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
}
.whatsapp-cta .wa-icon {
    display: inline-flex;
    width: 18px;
    height: 18px;
    color: #25D366;
    flex: 0 0 auto;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
    animation: waAttention 4.5s ease-in-out infinite;
}
/* Make icon white on already-green gallery button */
.gallery-wapp-btn .wa-icon { color: #ffffff; }

.whatsapp-cta:hover .wa-icon { animation: waShake 0.9s ease-in-out infinite; }

@keyframes waShake {
    0%, 100% { transform: rotate(0deg) translateZ(0); }
    15% { transform: rotate(12deg); }
    30% { transform: rotate(-12deg); }
    45% { transform: rotate(8deg); }
    60% { transform: rotate(-8deg); }
    75% { transform: rotate(4deg); }
    90% { transform: rotate(-4deg); }
}
@keyframes waAttention {
    0%, 88%, 100% { transform: rotate(0deg); }
    90% { transform: rotate(14deg); }
    94% { transform: rotate(-14deg); }
    98% { transform: rotate(8deg); }
}
