/*
Theme Name: GeneratePress Child - Calcuary Complete Edition
Description: Complete merged version with all features from old and new themes
Template: generatepress
Version: 5.0.0 - COMPLETE EDITION
Author: Calcuary Development Team
Text Domain: generatepress-child-calcuary
*/

@import url("../generatepress/style.css");

/* 
========================================
HIDE ORIGINAL GENERATEPRESS FOOTER
========================================
*/
.site-info, 
.site-footer, 
.footer-widgets-container, 
.footer-bar {
    display: none !important;
}

/* 
========================================
CALCUARY CUSTOM FOOTER - COMPLETE VERSION
Features from both old and new themes merged
========================================
*/

.calcuary-custom-footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    padding: 60px 0 20px;
    width: 100%;
    margin-top: auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.calcuary-custom-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: #667eea;
    font-weight: 700;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 1px;
}

.footer-col p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
    opacity: 0.9;
    text-align: left;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #cbd5e0;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    font-size: 0.95rem;
    padding: 4px 0;
    border-radius: 4px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
    background: rgba(102, 126, 234, 0.1);
    padding-left: 8px;
}

/* 
========================================
SOCIAL ICONS
========================================
*/
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.social-icons a:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* 
========================================
NEWSLETTER SECTION (OLD THEME - WORKING)
========================================
*/
.footer-newsletter {
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.newsletter-input:focus {
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.newsletter-input::placeholder {
    color: #cbd5e0;
}

.newsletter-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.newsletter-btn::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;
}

.newsletter-btn:hover::before {
    left: 100%;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

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

.newsletter-message {
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    text-align: center;
    display: none;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.newsletter-message.success {
    background: rgba(72, 187, 120, 0.2);
    color: #48bb78;
    border: 1px solid rgba(72, 187, 120, 0.3);
}

.newsletter-message.error {
    background: rgba(245, 101, 101, 0.2);
    color: #f56565;
    border: 1px solid rgba(245, 101, 101, 0.3);
}

/* 
========================================
IMPORTANT LINKS SECTION (ADSENSE FRIENDLY)
========================================
*/
.footer-important {
    background: rgba(0, 0, 0, 0.3);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.footer-important-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-important h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #667eea;
    font-weight: 700;
}

.footer-important-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.adsense-link {
    color: #cbd5e0;
    text-decoration: none;
    padding: 10px 20px;
    background: rgba(102, 126, 234, 0.15);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.adsense-link:hover {
    background: rgba(102, 126, 234, 0.3);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

/* 
========================================
FOOTER BOTTOM
========================================
*/
.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 25px 20px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.footer-bottom-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 5px 0;
    position: relative;
    font-weight: 500;
}

.footer-bottom-links a:not(:last-child)::after {
    content: "•";
    margin-left: 15px;
    opacity: 0.5;
}

.footer-bottom-links a:hover {
    color: white;
}

.copyright {
    color: #a0aec0;
    font-size: 0.85rem;
    text-align: center;
}

/* 
========================================
LOADING ANIMATIONS
========================================
*/
.newsletter-btn.loading,
.submit-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.newsletter-btn.loading::after,
.submit-btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 
========================================
PAGE STYLES (FOR BOTH THEMES)
========================================
*/
.calcuary-page-wrapper {
    min-height: calc(100vh - 200px);
    padding-top: 80px;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.breadcrumb {
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.separator {
    margin: 0 10px;
    opacity: 0.6;
}

.current {
    font-weight: 600;
}

/* 
========================================
PAGE CONTENT
========================================
*/
.page-content {
    padding: 60px 0;
    background: #f8f9fa;
    min-height: 500px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-content-inner {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    line-height: 1.8;
    position: relative;
    overflow: hidden;
}

.page-content-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.page-content-inner h2 {
    color: #1a202c;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.page-content-inner h3 {
    color: #2d3748;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 25px 0 15px;
}

.page-content-inner p {
    margin-bottom: 20px;
    color: #4a5568;
    font-size: 1rem;
}

.page-content-inner ul,
.page-content-inner ol {
    margin: 20px 0;
    padding-left: 25px;
}

.page-content-inner li {
    margin-bottom: 10px;
    color: #4a5568;
}

.page-content-inner strong {
    color: #1a202c;
    font-weight: 600;
}

.page-content-inner a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.page-content-inner a:hover {
    color: #764ba2;
    text-decoration: underline;
}

/* 
========================================
SIDEBAR WIDGETS
========================================
*/
.page-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sidebar-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.sidebar-widget:hover {
    transform: translateY(-2px);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.quick-links, .popular-tools {
    list-style: none;
    padding: 0;
}

.quick-links li, .popular-tools li {
    margin-bottom: 12px;
}

.quick-links a, .popular-tools a {
    color: #4a5568;
    text-decoration: none;
    padding: 10px 12px;
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
    border-left: 3px solid transparent;
}

.quick-links a:hover, .popular-tools a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
    border-left-color: #667eea;
}

/* 
========================================
CONTACT FORM STYLES (NEW THEME FEATURE)
========================================
*/
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

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

.submit-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::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;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* 
========================================
FORM MESSAGES
========================================
*/
.form-message {
    border-radius: 8px;
    padding: 12px 15px;
    margin-top: 15px;
    font-size: 0.9rem;
    display: none;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background: rgba(72, 187, 120, 0.1);
    color: #2f855a;
    border: 1px solid rgba(72, 187, 120, 0.3);
}

.form-message.error {
    background: rgba(245, 101, 101, 0.1);
    color: #c53030;
    border: 1px solid rgba(245, 101, 101, 0.3);
}

.form-message.warning {
    background: rgba(237, 137, 54, 0.1);
    color: #c05621;
    border: 1px solid rgba(237, 137, 54, 0.3);
}

/* 
========================================
FAQ STYLES (NEW THEME FEATURE)
========================================
*/
.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    background: white;
    user-select: none;
    position: relative;
    border-left: 4px solid transparent;
}

.faq-question:hover {
    background: #f8f9fa;
    border-left-color: #667eea;
}

.faq-question.active {
    background: #f8f9fa;
    border-left-color: #667eea;
    color: #667eea;
}

.faq-toggle {
    font-size: 1.3em;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    font-weight: bold;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #667eea;
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 20px 20px;
    color: #4a5568;
    line-height: 1.6;
    border-left: 4px solid #667eea;
    margin-left: 16px;
    padding-left: 20px;
}

/* 
========================================
INFO BOXES
========================================
*/
.info-box {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.info-box.warning {
    background: linear-gradient(135deg, rgba(245, 101, 101, 0.1), rgba(237, 137, 54, 0.1));
    border-color: rgba(245, 101, 101, 0.2);
}

.info-box.warning::before {
    background: linear-gradient(135deg, #f56565, #ed8936);
}

.info-box.success {
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1), rgba(56, 161, 105, 0.1));
    border-color: rgba(72, 187, 120, 0.2);
}

.info-box.success::before {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

.info-box h4 {
    margin-top: 0;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 15px;
    padding-left: 15px;
}

.info-box p {
    margin-bottom: 15px;
    padding-left: 15px;
}

.info-box ul {
    margin: 15px 0;
    padding-left: 35px;
}

.info-box li {
    margin-bottom: 8px;
}

/* 
========================================
FORM GROUP ENHANCEMENTS
========================================
*/
.form-group.focused input,
.form-group.focused textarea,
.form-group.focused select {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group.focused label {
    color: #667eea;
}

.char-counter {
    font-size: 0.8rem;
    color: #666;
    text-align: right;
    margin-top: 5px;
    transition: color 0.3s ease;
}

.field-error {
    color: #f56565;
    font-size: 0.8rem;
    margin-top: 4px;
    display: block;
}

/* 
========================================
ANIMATIONS
========================================
*/
.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 
========================================
RESPONSIVE DESIGN - COMPLETE
========================================
*/

/* Tablets and below (1024px) */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Mobile landscape and below (768px) */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-btn {
        padding: 14px 20px;
    }
    
    .footer-important-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .adsense-link {
        min-width: 200px;
        text-align: center;
    }
    
    .calcuary-custom-footer {
        padding: 40px 0 20px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-bottom-links a:not(:last-child)::after {
        display: none;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .calcuary-page-wrapper {
        padding-top: 70px;
    }
    
    .page-hero {
        padding: 40px 0 30px;
    }
    
    .page-content {
        padding: 40px 0;
    }
    
    .page-content-inner {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .sidebar-widget {
        padding: 20px;
        margin: 0 10px;
    }
    
    .contact-form {
        margin: 30px 10px 0;
        padding: 25px 20px;
    }
    
    .content-wrapper {
        padding: 0 10px;
    }
}

/* Mobile portrait (576px and below) */
@media (max-width: 576px) {
    .footer-container {
        gap: 20px;
    }
    
    .social-icons a {
        width: 36px;
        height: 36px;
    }
    
    .newsletter-input,
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Extra small devices (480px and below) */
@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
    
    .page-content-inner {
        padding: 20px 15px;
    }
    
    .page-content-inner h2 {
        font-size: 1.5rem;
    }
    
    .page-content-inner h3 {
        font-size: 1.2rem;
    }
    
    .contact-form {
        padding: 20px 15px;
    }
    
    .sidebar-widget {
        padding: 15px;
    }
}

/* 
========================================
ACCESSIBILITY
========================================
*/
.screen-reader-text {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    background: #667eea;
    color: white;
    text-decoration: none;
    padding: 8px 16px;
}

.skip-link:focus {
    left: 6px;
    top: 7px;
}

/* Focus styles for accessibility */
.calcuary-custom-footer a:focus,
.newsletter-input:focus,
.newsletter-btn:focus,
.submit-btn:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .calcuary-custom-footer {
        background: #000;
    }
    
    .footer-links a,
    .adsense-link,
    .footer-bottom-links a {
        border: 1px solid currentColor;
    }
}

/* Reduced motion support for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .footer-links a:hover,
    .social-icons a:hover,
    .adsense-link:hover,
    .newsletter-btn:hover,
    .submit-btn:hover {
        transform: none !important;
    }
}

/* Print Styles */
@media print {
    .calcuary-custom-footer,
    .page-sidebar,
    .contact-form {
        display: none !important;
    }
    
    .page-content-inner {
        box-shadow: none !important;
        border: 1px solid #ccc;
    }
}

/* Dark mode support (future enhancement) */
@media (prefers-color-scheme: dark) {
    .page-content {
        background: #1a1a1a;
    }
    
    .page-content-inner,
    .sidebar-widget,
    .contact-form {
        background: #2d2d2d;
        color: #e5e5e5;
    }
    
    .page-content-inner h2,
    .page-content-inner h3,
    .sidebar-widget h3 {
        color: #e5e5e5;
    }
}

/* 
========================================
UTILITY CLASSES
========================================
*/
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.p-20 {
    padding: 20px;
}

/* End of Complete Merged Style.css */