/* Breezify AI Consulting Website Styles */
/* Color Scheme: Yellow (#FFD700, #FFC107), Black (#000000, #1a1a1a), White (#FFFFFF) */

:root {
    --primary-yellow: #FFD700;
    --secondary-yellow: #FFC107;
    --accent-yellow: #FFEB3B;
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --tertiary-black: #333333;
    --primary-white: #FFFFFF;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    --gradient-secondary: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    --gradient-accent: linear-gradient(135deg, #FFD700 0%, #FFEB3B 50%, #FFC107 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--secondary-black);
    background-color: var(--primary-white);
    overflow-x: hidden;
}

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.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.navbar-brand .logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    text-decoration: none;
}

.navbar-brand .logo i {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-right: 0.5rem;
    animation: float 3s ease-in-out infinite;
}

.navbar-brand .logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--secondary-black) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-yellow) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.btn {
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-black);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: var(--primary-black);
}

.btn-outline-secondary {
    border: 2px solid var(--secondary-black);
    color: var(--secondary-black);
    background: transparent;
}

.btn-outline-secondary:hover {
    background: var(--secondary-black);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.hero {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF9C4 50%, #FFFFFF 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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FFD700" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23FFC107" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23FFD700" opacity="0.15"/><circle cx="10" cy="60" r="0.5" fill="%23FFC107" opacity="0.15"/><circle cx="90" cy="40" r="0.5" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--primary-black);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--secondary-black);
    position: relative;
}

.text-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--medium-gray);
    margin-bottom: 2rem;
    max-width: 600px;
}

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

.feature-tag {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid var(--primary-yellow);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-black);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--primary-yellow);
    transform: translateY(-2px);
}

.feature-tag i {
    color: var(--primary-yellow);
}

.feature-tag:hover i {
    color: var(--primary-black);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    padding: 2rem 0;
}

.ai-dashboard {
    background: var(--primary-white);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.3s ease;
}

.ai-dashboard:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-header {
    background: var(--gradient-secondary);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.window-controls {
    display: flex;
    gap: 0.5rem;
}

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

.control.red {
    background: #ff5f57;
}

.control.yellow {
    background: #ffbd2e;
}

.control.green {
    background: #28ca42;
}

.dashboard-title {
    color: var(--primary-white);
    font-weight: 600;
}

.dashboard-content {
    padding: 2rem;
}

.metric-card {
    background: linear-gradient(135deg, #FFF9C4 0%, #FFFFFF 100%);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.metric-card i {
    font-size: 2rem;
    color: var(--primary-yellow);
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-black);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.chat-interface {
    background: var(--light-gray);
    border-radius: 15px;
    padding: 1rem;
    margin-top: 1rem;
}

.chat-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-black);
}

.chat-message i {
    color: var(--primary-yellow);
    animation: pulse 2s infinite;
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    font-size: 2rem;
    color: var(--primary-yellow);
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
}

section {
    padding: 5rem 0;
}

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

.section-header h2 {
    color: var(--primary-black);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.services {
    background: var(--light-gray);
}

.service-card {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-black);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
}

.service-features i {
    color: var(--primary-yellow);
    font-size: 0.8rem;
}

.how-it-works {
    background: var(--gradient-secondary);
    color: var(--primary-white);
}

.how-it-works .section-header h2 {
    color: var(--primary-white);
}

.how-it-works .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.step-card {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-black);
    font-size: 1.2rem;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    transition: all 0.3s ease;
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--primary-yellow);
}

.step-card:hover .step-icon {
    background: var(--primary-yellow);
    transform: scale(1.1);
}

.step-card:hover .step-icon i {
    color: var(--primary-black);
}

.step-card h3 {
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.step-card p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials {
    background: var(--light-gray);
}

.testimonial-card {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: var(--primary-yellow);
    margin-right: 0.2rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--secondary-black);
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.5rem;
    color: var(--primary-black);
}

.author-info h4 {
    color: var(--primary-black);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.contact {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF9C4 100%);
}

.contact-form-container {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.form-label {
    font-weight: 600;
    color: var(--secondary-black);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    background: var(--primary-white);
}

.form-control:focus {
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
    outline: none;
}

.thank-you-message {
    text-align: center;
    padding: 3rem;
}

.thank-you-message i {
    font-size: 4rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.thank-you-message h3 {
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.contact-info {
    text-align: center;
    padding: 2rem;
}

.contact-info i {
    font-size: 3rem;
    color: var(--primary-yellow);
    margin-bottom: 1rem;
}

.contact-info h4 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.contact-info p {
    color: var(--medium-gray);
}

.footer {
    background: var(--gradient-secondary);
    color: var(--primary-white);
    padding: 3rem 0 1rem;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand .logo i {
    font-size: 2rem;
    color: var(--primary-yellow);
    margin-right: 0.5rem;
}

.footer-brand .logo span {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.footer h5 {
    color: var(--primary-white);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

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

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

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-links i {
    color: var(--primary-yellow);
    margin-right: 0.5rem;
    width: 16px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.powered-by {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-actions .btn {
        margin-bottom: 1rem;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .ai-dashboard {
        transform: none;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
}

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

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-yellow);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.pricing-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: var(--primary-white);
    padding: 8rem 0 5rem;
}

.pricing-hero h1 {
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.pricing-hero p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

.pricing-cards {
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-yellow);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--gradient-primary);
    color: var(--primary-black);
    padding: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

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

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

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

.pricing-header h3 {
    color: var(--primary-black);
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-black);
    line-height: 1;
}

.price-unit {
    font-size: 1rem;
    color: var(--medium-gray);
    margin-left: 0.5rem;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-black);
}

.pricing-features i {
    color: var(--primary-yellow);
    font-size: 0.9rem;
    width: 16px;
}

.channel-comparison {
    background: var(--light-gray);
    padding: 5rem 0;
}

.comparison-table {
    background: var(--primary-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table table {
    width: 100%;
    margin: 0;
}

.comparison-table th {
    background: var(--gradient-secondary);
    color: var(--primary-white);
    padding: 1.5rem;
    font-weight: 600;
    border: none;
}

.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    vertical-align: middle;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .channel-name {
    font-weight: 600;
    color: var(--primary-black);
}

.comparison-table .price-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
}

.legal-page {
    padding: 8rem 0 5rem;
    background: var(--primary-white);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    color: var(--primary-black);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content h2 {
    color: var(--primary-black);
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: var(--secondary-black);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.last-updated {
    text-align: center;
    color: var(--medium-gray);
    font-style: italic;
    margin-bottom: 3rem;
}
