/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #4285F4 0%, #1a73e8 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

.btn-secondary {
    background: white;
    color: #4285F4;
    border: 2px solid #4285F4;
}

.btn-secondary:hover {
    background: #4285F4;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #4285F4;
    border: 2px solid #4285F4;
}

.btn-outline:hover {
    background: #4285F4;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #4285F4;
    text-decoration: none;
}

.logo-icon {
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: middle;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4285F4;
}

.nav-cta {
    background: #4285F4;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #1a73e8;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
    position: relative;
    overflow: hidden;
}

.hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%234285F4" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.highlight {
    background: linear-gradient(135deg, #4285F4, #1a73e8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4285F4;
}

.stat-label {
    font-size: 0.875rem;
    color: #666;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.extension-preview {
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.extension-preview:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

.browser-frame {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    width: 400px;
}

.browser-header {
    background: #f5f5f5;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca42; }

.browser-url {
    background: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    flex: 1;
}

.extension-popup {
    padding: 20px;
    background: white;
}

.popup-header {
    margin-bottom: 16px;
}

.popup-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #4285F4;
}

.popup-icon {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

.search-demo {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.search-demo input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.search-btn {
    background: #4285F4;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

.results-demo {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
}

.result-item h4 {
    color: #1a73e8;
    margin-bottom: 4px;
    font-size: 16px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.stars {
    color: #fbbc04;
}

.result-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Video Demo Section - Enhanced */
.video-demo {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.video-demo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.video-demo .section-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1a73e8 0%, #4285F4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.video-demo .section-header p {
    font-size: 1.25rem;
    color: #5f6368;
    font-weight: 400;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 50px auto;
    border-radius: 16px;
    box-shadow: 
        0 4px 6px rgba(0,0,0,0.07),
        0 10px 15px rgba(0,0,0,0.1),
        0 20px 40px rgba(66, 133, 244, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f0f0f0;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 6px 10px rgba(0,0,0,0.08),
        0 15px 25px rgba(0,0,0,0.12),
        0 30px 50px rgba(66, 133, 244, 0.2);
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(66, 133, 244, 0.1), rgba(26, 115, 232, 0.1));
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.video-wrapper:hover::before {
    opacity: 1;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    border: none;
    z-index: 2;
}

/* Mobile responsive for Video Demo */
@media (max-width: 768px) {
    .video-demo {
        padding: 60px 0;
    }
    
    .video-demo .section-header h2 {
        font-size: 2rem;
    }
    
    .video-demo .section-header p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .video-wrapper {
        margin: 30px 20px;
        border-radius: 12px;
    }
    
    .video-wrapper iframe {
        border-radius: 12px;
    }
    
    .video-demo::before {
        width: 400px;
        height: 400px;
        top: -30%;
        right: -20%;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4285F4, #1a73e8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 24px;
    color: white;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: #f8f9ff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4285F4, #1a73e8);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #4285F4;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4285F4, #1a73e8);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 0.8rem;
    color: #999;
    font-weight: normal;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #4285F4;
}

.cents {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4285F4;
    vertical-align: top;
}

.period {
    font-size: 1rem;
    color: #666;
}

.price-per-search {
    font-size: 0.9rem;
    color: #4285F4;
    font-weight: 500;
    margin-top: 0.5rem;
}

.value-badge {
    display: inline-block;
    background: linear-gradient(135deg, #34d399, #10b981);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    color: #666;
    font-size: 0.9rem;
}

.pricing-note i {
    color: #4285F4;
    margin-right: 0.5rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #666;
}

.features-list i {
    color: #4285F4;
    font-size: 16px;
}

/* Waitlist Section */
.waitlist-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.waitlist-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%234285F4" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.waitlist-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4285F4, #1a73e8);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.waitlist-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.waitlist-section p {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.waitlist-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4285F4;
    font-weight: 500;
}

.benefit i {
    font-size: 18px;
}

.waitlist-note {
    margin-top: 16px;
    color: #666;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Waitlist Modal Styles */
.waitlist-form {
    display: block;
}

.waitlist-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4285F4, #1a73e8);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.waitlist-benefits {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.waitlist-benefits h4 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1rem;
}

.waitlist-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.waitlist-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 14px;
}

.waitlist-benefits li:last-child {
    margin-bottom: 0;
}

.waitlist-benefits i {
    color: #4285F4;
    font-size: 14px;
}

.social-share {
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.social-share p {
    margin-bottom: 1rem;
    color: #333;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #4285F4 0%, #1a73e8 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #ffffff;
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #f8f9ff;
    border-radius: 12px;
    border: 1px solid #e5e7f3;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #4169E1;
    box-shadow: 0 8px 16px rgba(65, 105, 225, 0.1);
}

.faq-item summary {
    font-size: 1.2rem;
    color: #1a1f36;
    font-weight: 600;
    padding: 25px 30px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9ff;
    transition: background-color 0.3s ease;
}

.faq-item summary:hover {
    background: #f0f2ff;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: #4169E1;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    transform: rotate(0deg);
}

.faq-item p {
    color: #5a6d8a;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    padding: 0 30px 25px;
    animation: fadeInDown 0.3s ease-out;
}

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

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #4285F4;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #4285F4;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1.5rem;
}


.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .browser-frame {
        width: 100%;
        max-width: 350px;
    }
    
    .extension-preview {
        transform: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .waitlist-section {
        padding: 60px 0;
    }
    
    .waitlist-section h2 {
        font-size: 2rem;
    }
    
    .waitlist-benefits {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .features,
    .how-it-works,
    .pricing,
    .cta {
        padding: 60px 0;
    }
}

/* Smooth scrolling and performance */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
.nav-cta:focus {
    outline: 2px solid #4285F4;
    outline-offset: 2px;
}

/* Loading states */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #000;
    }
    
    .btn-secondary,
    .btn-outline {
        border-width: 2px;
    }
}

/* ========================================
   ACCOUNT PAGE STYLES
======================================== */

/* Account Section */
.account-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

/* Authentication Container */
.auth-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 16px;
}

.auth-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e5e9;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-header h1 {
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 2rem;
}

.auth-header p {
    color: #6c757d;
    font-size: 1rem;
}

/* Auth Tabs */
.auth-tabs {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 32px;
}

.auth-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6c757d;
}

.auth-tab.active {
    background: white;
    color: #4285F4;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Auth Forms */
.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

.social-login {
    margin-bottom: 24px;
}

.btn-google {
    width: 100%;
    background: white;
    color: #1a1a1a;
    border: 1px solid #dadce0;
    padding: 12px 16px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-google:hover {
    background: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-google i {
    margin-right: 12px;
    color: #4285F4;
}

.divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
    color: #6c757d;
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e1e5e9;
}

.divider span {
    padding: 0 16px;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 14px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-group input:focus {
    outline: none;
    border-color: #4285F4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

/* Auth Error */
.auth-error {
    background: #fee;
    color: #d63384;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 14px;
    border: 1px solid #f5c2c7;
    display: none;
}

/* Auth Success */
.auth-success {
    background: #d1f2eb;
    color: #0f6848;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 16px;
    font-size: 14px;
    border: 1px solid #a3cfbb;
    display: none;
}

/* Auth Verification */
.auth-verification {
    background: #fff3cd;
    color: #856404;
    padding: 16px;
    border-radius: 8px;
    margin-top: 16px;
    border: 1px solid #ffeaa7;
}

.verification-content {
    text-align: center;
}

.verification-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.verification-text {
    margin-bottom: 16px;
    font-size: 14px;
}

.resend-verification-btn {
    background-color: #856404;
    color: white;
    border: 2px solid #856404;
    padding: 8px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.resend-verification-btn:hover:not(:disabled) {
    background-color: #6c5303;
    border-color: #6c5303;
}

.resend-verification-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Actions */
.form-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-link {
    background: none;
    border: none;
    color: #4285F4;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-link:hover {
    background: rgba(66, 133, 244, 0.1);
    text-decoration: underline;
}

/* Google Icon */
.google-icon {
    margin-right: 12px;
    vertical-align: middle;
}

/* Forgot Password Form */
.forgot-header {
    text-align: center;
    margin-bottom: 24px;
}

.forgot-header h3 {
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 1.25rem;
    font-weight: 600;
}

.forgot-header p {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.4;
}

/* Enhanced Input Styles */
.form-group input::placeholder {
    color: #9ca3af;
    font-size: 14px;
}

/* Auth Tabs - Three Tab Layout */
.auth-tabs {
    display: flex;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 32px;
    gap: 2px;
}

.auth-tab {
    flex: 1;
    background: none;
    border: none;
    padding: 10px 12px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6c757d;
    font-size: 14px;
    white-space: nowrap;
}

/* Dashboard Container */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Profile Header - Three column layout: avatar | user info | sign out */
.profile-header {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
    min-height: 120px;
}

/* Profile avatar as first column */
.profile-avatar {
    grid-column: 1;
    position: relative;
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
}

/* User info as second column - compact spacing */
.profile-info {
    grid-column: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

/* Sign out button as third column */
.profile-actions {
    grid-column: 3;
}

.profile-avatar img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 32px;
    border: 2px solid #e1e5e9;
}

.profile-info h1 {
    margin: 0;
    color: #1a1a1a;
    font-size: 1.75rem;
    line-height: 1.2;
}

.profile-info p {
    color: #6c757d;
    margin: 0;
    line-height: 1.3;
}

.user-status {
    margin-top: 4px;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.trial {
    background: #e3f2fd;
    color: #1976d2;
}

.status-badge.paid {
    background: #e8f5e8;
    color: #2e7d32;
}

.status-badge.developer {
    background: #fff3e0;
    color: #f57c00;
}

.profile-actions .btn {
    padding: 8px 16px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .profile-header {
        padding: 24px;
        min-height: auto;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        text-align: center;
        gap: 16px;
    }
    
    .profile-avatar {
        grid-column: 1;
        grid-row: 1;
        justify-self: center;
    }
    
    .profile-info {
        grid-column: 1;
        grid-row: 2;
        text-align: center;
        align-items: center;
    }
    
    .profile-actions {
        grid-column: 1;
        grid-row: 3;
        justify-self: center;
    }
    
    .profile-actions .btn {
        padding: 12px 24px;
        font-size: 16px;
    }
}

@media (min-width: 769px) {
    .profile-header {
        grid-template-columns: auto 1fr auto;
        grid-template-rows: auto;
        text-align: left;
    }
    
    .profile-info {
        text-align: left;
        align-items: flex-start;
    }
}

/* Stats Grid - Keep all 4 stats in one row on desktop, only wrap on very small screens */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
    
    .stat-card {
        padding: 16px;
        min-height: 70px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .stat-content h3 {
        font-size: 1.5rem;
    }
    
    .stat-content p {
        font-size: 12px;
    }
}

@media (max-width: 540px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

@media (max-width: 360px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .stat-card {
        padding: 12px;
        min-height: 60px;
    }
}

.stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 80px;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4285F4, #34a853);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.stat-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.stat-content p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
}

/* Purchase Section */
.purchase-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    color: #1a1a1a;
    margin-bottom: 12px;
}

.section-header p {
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-options {
    display: flex;
    flex-direction: row;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.pricing-options .pricing-card {
    flex: 1;
    max-width: 400px;
}

@media (max-width: 768px) {
    .pricing-options {
        flex-direction: column;
        gap: 20px;
    }
    
    .pricing-options .pricing-card {
        max-width: none;
    }
}

.pricing-card {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: #4285F4;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(66, 133, 244, 0.1);
}

.pricing-card.featured {
    border-color: #4285F4;
    box-shadow: 0 8px 30px rgba(66, 133, 244, 0.15);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4285F4;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 24px;
}

.currency {
    font-size: 0.9rem;
    color: #aaa;
    margin-right: 4px;
    font-weight: normal;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #4285F4;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features i {
    color: #34a853;
    font-size: 16px;
    width: 16px;
}

.purchase-btn {
    width: 100%;
    padding: 12px 24px;
    font-weight: 600;
}

/* Privacy Section */
.privacy-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 32px;
}

.privacy-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .privacy-controls {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.privacy-card {
    background: #f8f9ff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.privacy-card:hover {
    border-color: #4285F4;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.1);
}

.privacy-card.danger {
    background: #fff5f5;
    border-color: #fed7d7;
}

.privacy-card.danger:hover {
    border-color: #fc8181;
}

.privacy-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.privacy-card-header i {
    font-size: 32px;
    color: #4285F4;
    margin-bottom: 12px;
}

.privacy-card.danger .privacy-card-header i {
    color: #e53e3e;
}

.privacy-card h3 {
    color: #1a1a1a;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.privacy-card p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-danger {
    background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
    color: white;
    border: none;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c53030 0%, #9c2626 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(229, 62, 62, 0.4);
}

.privacy-info-display {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    margin-top: 24px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.privacy-info-content {
    position: relative;
}

.privacy-info-header {
    background: linear-gradient(135deg, #4285F4 0%, #34a853 100%);
    color: white;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.privacy-info-header h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.privacy-info-header i {
    font-size: 1.5rem;
}

.privacy-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
}

.privacy-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.privacy-info-body {
    padding: 32px;
    background: #fafbfc;
}

.privacy-section {
    margin-bottom: 32px;
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.privacy-section:last-of-type {
    margin-bottom: 0;
}

.privacy-section h5 {
    color: #1a1a1a;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.privacy-section h5 i {
    color: #4285F4;
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #5f6368;
    line-height: 1.5;
    padding: 8px 0;
}

.privacy-list li:last-child {
    margin-bottom: 0;
}

.privacy-list li i {
    color: #34a853;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.privacy-contact {
    background: #e8f5e8;
    border: 2px solid #c3e6cb;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #155724;
    font-size: 14px;
    line-height: 1.4;
}

.privacy-contact i {
    color: #28a745;
    font-size: 18px;
    flex-shrink: 0;
}

.privacy-contact a {
    color: #0c5460;
    text-decoration: none;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.privacy-contact a:hover {
    background: rgba(12, 84, 96, 0.1);
    text-decoration: underline;
}

.privacy-info-display .fa-spinner {
    color: #4285F4;
}

/* Activity Section */
.activity-section {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.activity-list {
    max-height: 400px;
    overflow-y: auto;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    flex-shrink: 0;
}

.activity-content h4 {
    color: #1a1a1a;
    margin-bottom: 4px;
    font-size: 1rem;
}

.activity-content p {
    color: #6c757d;
    margin-bottom: 8px;
    font-size: 14px;
}

.activity-date {
    color: #6c757d;
    font-size: 12px;
}

.no-activity {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.no-activity i {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.no-activity h3 {
    color: #1a1a1a;
    margin-bottom: 8px;
}

/* Loading States */
.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
}

.loading-spinner i {
    font-size: 32px;
    color: #4285F4;
}

.loading-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px;
    color: #6c757d;
}

/* Navigation Active State */
.nav-link.active {
    color: #4285F4;
    font-weight: 600;
}

/* Responsive Design for Account Page */
@media (max-width: 768px) {
    .account-section {
        padding: 100px 0 60px;
    }
    
    .auth-card {
        padding: 32px 24px;
        margin: 0 16px;
    }
    
    .privacy-controls {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .privacy-card {
        padding: 20px;
    }
    
    .privacy-section,
    .activity-section {
        padding: 24px;
        margin: 0 16px 24px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
}
    
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
    
    .profile-info {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .purchase-section,
    .activity-section {
        padding: 32px 24px;
        margin: 0 16px 32px 16px;
        border-radius: 12px;
    }
    
    .pricing-options {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .dashboard-container {
        padding: 0;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 24px 20px;
    }
    
    .profile-avatar {
        width: 60px;
        height: 60px;
    }
    
    .avatar-placeholder {
        font-size: 24px;
    }
    
    .profile-details h1 {
        font-size: 1.5rem;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .stat-content h3 {
        font-size: 1.75rem;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
}

/* Error status badge styling */
.status-badge.error {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    color: #2d3436;
    border: 1px solid #fdcb6e;
}

/* ================================ */
/* CONTACT PAGE STYLES */
/* ================================ */

/* Contact Header */
.contact-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.contact-header p {
    font-size: 1.2rem;
    color: white;
    opacity: 1;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
}

/* Contact Options */
.contact-options {
    padding: 80px 0;
    background: #f8f9fa;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.contact-card p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.close {
    color: #aaa;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close:hover {
    color: #333;
    background: #f8f9fa;
}

.modal-body {
    padding: 1rem 2rem 2rem;
}

/* Contact Form */
.contact-form {
    display: block;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

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

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

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.conditional-fields {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

/* Success/Error Messages */
.success-message,
.error-message {
    text-align: center;
    padding: 2rem;
}

.success-icon,
.error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-icon {
    color: #27ae60;
}

.error-icon {
    color: #e74c3c;
}

.success-message h3,
.error-message h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.success-message p,
.error-message p {
    color: #666;
    margin-bottom: 2rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Loading Spinner */
.loading-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

.loading-spinner p {
    color: #666;
    font-size: 1.1rem;
}

/* Button Variants */
.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

.btn-success {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    border: none;
}

.btn-success:hover {
    background: linear-gradient(135deg, #229954 0%, #27ae60 100%);
    transform: translateY(-2px);
}

/* Navigation Active State */
.nav-link.active {
    color: #667eea;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-header {
        padding: 100px 0 60px;
    }
    
    .contact-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-options {
        padding: 60px 0;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-header,
    .modal-body {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .error-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 2rem;
    }
    
    .contact-header p {
        font-size: 1.1rem;
    }
    
    .contact-card {
        padding: 1.5rem 1rem;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
} 