/* Tips Page Styles - CarbonIQ India */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #059669 0%, #065f46 50%, #064e3b 100%);
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    color: white;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(52, 211, 153, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(5, 150, 105, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Navigation Styles - Reused from master.css */
.nav-zone {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(52, 211, 153, 0.2);
    padding: 20px 0;
    position: relative; /* Changed from sticky to relative */
    z-index: 100;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15);
}

.nav-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    width: 100%;
    box-sizing: border-box;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 26px;
    font-weight: 700;
    background-color: transparent;
}

.earthy { 
    font-size: 32px;
    color: #34d399;
    background-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(52, 211, 153, 0.4));
}

.brandname {
    background: linear-gradient(135deg, #10b981, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.loc-tag {
    color: #047857;
    font-weight: 500;
    background-color: transparent;
}

.nav-links {
    display: flex;
    gap: 15px;
    background-color: transparent;
}

.nav-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
}

.nav-btn.btn-chill {
    background: rgba(255, 255, 255, 0.9);
    color: #065f46;
    border: 2px solid rgba(52, 211, 153, 0.3);
}

.nav-btn.btn-chill:hover {
    background: rgba(255, 255, 255, 1);
    color: #064e3b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 211, 153, 0.25);
    border-color: rgba(52, 211, 153, 0.5);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 80px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5em;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ffffff, #d1fae5, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    line-height: 1.1;
}

.sub-hero {
    font-size: 5em;
    font-weight: 900;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #34d399, #10b981, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 8px 30px rgba(52, 211, 153, 0.4);
    line-height: 1.1;
}

.hero-desc {
    font-size: 1.4em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.impact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(52, 211, 153, 0.2);
    border: 2px solid rgba(52, 211, 153, 0.3);
    border-radius: 25px;
    padding: 15px 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(52, 211, 153, 0.15);
}

.impact-icon {
    font-size: 1.5em;
}

.impact-text {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

/* Quick Stats Strip */
.stats-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 20px;
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 800;
    color: #34d399;
    margin-bottom: 5px;
    text-shadow: 0 2px 10px rgba(52, 211, 153, 0.4);
}

.stat-label {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

/* Tips Container */
.tips-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.tips-header {
    text-align: center;
    margin-bottom: 60px;
}

.tips-header h2 {
    font-size: 3em;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.tips-subtitle {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tip Categories */
.tip-category {
    margin-bottom: 80px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(52, 211, 153, 0.3);
}

.category-icon {
    font-size: 3.5em;
    background: linear-gradient(135deg, #34d399, #10b981);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(52, 211, 153, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    height: 80px;
}

.category-info {
    flex: 1;
}

.category-title {
    font-size: 2.2em;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.category-desc {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    line-height: 1.5;
}

.potential-savings {
    font-size: 0.95em;
    color: #34d399;
    font-weight: 600;
    background: rgba(52, 211, 153, 0.15);
    padding: 8px 15px;
    border-radius: 12px;
    display: inline-block;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 30px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #34d399, #10b981, #059669);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(52, 211, 153, 0.2);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(52, 211, 153, 0.4);
}

.tip-card:hover::before {
    transform: scaleX(1);
}

.tip-icon {
    font-size: 2.5em;
    margin-bottom: 20px;
    display: block;
}

.tip-title {
    font-size: 1.3em;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.tip-desc {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 20px;
}

.tip-impact {
    font-size: 0.9em;
    font-weight: 600;
    color: #34d399;
    background: rgba(52, 211, 153, 0.15);
    padding: 8px 12px;
    border-radius: 10px;
    display: inline-block;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

/* Calculator Section */
.calculator-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
}

.calc-header {
    text-align: center;
    margin-bottom: 50px;
}

.calc-header h2 {
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.calc-subtitle {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.savings-calculator {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.savings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.savings-item {
    position: relative;
}

.tip-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.savings-label {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.savings-label:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(52, 211, 153, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 211, 153, 0.15);
}

.tip-checkbox:checked + .savings-label {
    background: rgba(52, 211, 153, 0.2);
    border-color: #34d399;
    box-shadow: 0 8px 25px rgba(52, 211, 153, 0.25);
}

.savings-icon {
    font-size: 2em;
    min-width: 50px;
    text-align: center;
}

.savings-info {
    flex: 1;
}

.savings-title {
    display: block;
    font-size: 1.1em;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
}

.savings-amount {
    display: block;
    font-size: 0.95em;
    color: #34d399;
    font-weight: 600;
}

.total-savings {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
}

.savings-result {
    background: rgba(52, 211, 153, 0.15);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid rgba(52, 211, 153, 0.3);
    backdrop-filter: blur(15px);
}

.result-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.result-text {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.result-value {
    font-size: 2.5em;
    font-weight: 800;
    color: #34d399;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(52, 211, 153, 0.4);
}

.result-equivalent {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.8);
}

/* Final CTA */
.final-cta {
    background: rgba(255, 255, 255, 0.08);
    margin: 80px 20px 40px;
    border-radius: 25px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-text {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 18px 35px;
    border: none;
    border-radius: 15px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn.btn-loud {
    background: linear-gradient(135deg, #34d399, #10b981);
    color: white;
    box-shadow: 0 8px 25px rgba(52, 211, 153, 0.4);
}

.cta-btn.btn-loud:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(52, 211, 153, 0.5);
}

.cta-btn.btn-chill {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.cta-btn.btn-chill:hover {
    background: white;
    color: #047857;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.progress-reminder {
    background: rgba(52, 211, 153, 0.15);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.progress-reminder p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1em;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5em;
    }
    
    .sub-hero {
        font-size: 4em;
    }
    
    .hero-desc {
        font-size: 1.2em;
        padding: 0 20px;
    }
    
    .stats-strip {
        flex-direction: column;
        gap: 20px;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .savings-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5em;
    }
    
    .sub-hero {
        font-size: 3em;
    }
    
    .hero-desc {
        font-size: 1.1em;
    }
    
    .tips-header h2 {
        font-size: 2.2em;
    }
    
    .category-title {
        font-size: 1.8em;
    }
    
    .tip-category {
        padding: 25px;
    }
    
    .tip-card {
        padding: 20px;
    }
    
    .savings-calculator {
        padding: 25px;
    }
    
    .cta-content {
        padding: 40px 25px;
    }
    
    .cta-content h2 {
        font-size: 2.2em;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 15px 40px;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .sub-hero {
        font-size: 2.5em;
    }
    
    .stats-strip {
        padding: 30px 15px;
        margin: 0 15px 40px;
    }
    
    .stat-number {
        font-size: 2em;
    }
    
    .tips-container {
        padding: 0 15px 40px;
    }
    
    .tip-category {
        padding: 20px;
        margin-bottom: 50px;
    }
    
    .category-icon {
        font-size: 2.5em;
        padding: 15px;
        min-width: 60px;
        height: 60px;
    }
    
    .calculator-section {
        margin: 60px auto;
        padding: 0 15px;
    }
    
    .final-cta {
        margin: 60px 15px 30px;
    }
    
    .impact-badge {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .nav-box {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .earthy {
        font-size: 24px;
    }
    
    .nav-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
