/* 
* GreetSmartly Website Styles
* Version: 1.0
*/

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

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

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e40af;
}

.logo span {
    color: #10b981;
}

.logo img {
    height: 60px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #10b981;
}

nav ul li a.active {
    color: #fff !important;
    background: #10b981 !important;
    border-radius: 5px;
    padding: 8px 16px;
    transition: background 0.2s;
}

.btn {
    display: inline-block;
    background-color: #10b981;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(16, 185, 129, 0.15);
}

.btn-primary {
    background-color: #1e40af;
    box-shadow: 0 4px 6px rgba(30, 64, 175, 0.1);
}

.btn-primary:hover {
    background-color: #1e3a8a;
    box-shadow: 0 6px 12px rgba(30, 64, 175, 0.15);
}

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

.btn-outline:hover {
    background-color: #10b981;
    color: white;
}

section {
    padding: 80px 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    margin-top: 70px;
    padding-top: 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    position: relative;
    text-align: left;
    gap: 40px;
}

.hero-text {
    flex: 1;
    padding-right: 40px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1e40af;
}

.hero h1 span {
    color: #10b981;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Stats */
.stats {
    margin-top: -40px;
}

.stats-banner {
    background: linear-gradient(90deg, #1e40af 0%, #2563eb 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Value Props */
.value-proposition {
    text-align: center;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.2rem;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: #f9fafb;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1e40af;
}

/* Pricing Section */
.pricing {
    background-color: #f0f9ff;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.pricing-card.popular {
    border: 2px solid #10b981;
    transform: scale(1.05);
    position: relative;
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background-color: #10b981;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.2);
}

.price-name {
    font-size: 1.4rem;
    color: #1e40af;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #111827;
}

.price-amount small {
    font-size: 1rem;
    font-weight: 400;
    color: #6b7280;
}

.price-features {
    list-style: none;
    margin: 30px 0;
}

.price-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.check-icon {
    color: #10b981;
    margin-right: 10px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Outbound Section */
.outbound {
    background-color: white;
}

.outbound-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.outbound-content {
    flex: 1;
}

.outbound-image {
    flex: 1;
}

.outbound-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.5s;
}

.outbound-image img:hover {
    transform: translateY(-10px);
}

.feature-badge {
    display: inline-block;
    background: linear-gradient(90deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(30, 64, 175, 0.2);
}

.outbound-content h2 {
    font-size: 2.5rem;
    color: #1e40af;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 20px;
}

.feature-list li strong {
    display: block;
    margin-bottom: 5px;
    color: #1e40af;
}

/* Integrations */
.integrations {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.integrations::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 10% 10%, rgba(30, 64, 175, 0.05) 0%, transparent 60%),
                     radial-gradient(circle at 90% 90%, rgba(16, 185, 129, 0.05) 0%, transparent 60%);
    z-index: 0;
}

.integrations .container {
    position: relative;
    z-index: 1;
}

.integration-wrapper {
    margin: 60px 0;
    position: relative;
}

.integration-category {
    margin-bottom: 40px;
}

.category-title {
    display: inline-block;
    background: linear-gradient(90deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.integration-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 0 auto;
    max-width: 1000px;
}

.integration-logo {
    height: 90px;
    width: 190px;
    background-color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.integration-logo::before {
    content: "";
    position: absolute;
    top: -100%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.5s ease;
    transform: rotate(45deg);
}

.integration-logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
}

.integration-logo:hover::before {
    top: 100%;
    left: 100%;
}

.integration-logo img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.integration-logo:hover img {
    transform: scale(1.05);
}

.integration-count {
    position: relative;
    display: inline-block;
    margin-top: 40px;
    padding: 10px 25px;
    background-color: white;
    border-radius: 50px;
    font-weight: 600;
    color: #1e40af;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px dashed #10b981;
}

/* Demo Calls */
.demo-calls {
    background-color: white;
}

.call-samples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.call-sample {
    background-color: #f9fafb;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.call-sample:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.call-title {
    font-size: 1.2rem;
    color: #1e40af;
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.call-title span {
    margin-right: 8px;
}

.audio-player {
    width: 100%;
    margin: 20px 0;
    border-radius: 8px;
    overflow: hidden;
}

audio {
    width: 100%;
    height: 40px;
}

/* FAQ Section */
.faq {
    background-color: #f0f9ff;
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.faq-question {
    font-size: 1.3rem;
    color: #1e40af;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}

.faq-question::before {
    content: "Q:";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 700;
}

.faq-answer {
    margin-top: 10px;
    color: #4b5563;
    line-height: 1.7;
    padding-left: 30px;
    position: relative;
}

.faq-answer::before {
    content: "A:";
    position: absolute;
    left: 0;
    top: 0;
    color: #ef4444;
    font-weight: 700;
}

/* Testimonials */
.testimonials {
    background-color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.testimonials::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.testimonial-container {
    position: relative;
    z-index: 1;
}

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

.testimonial-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: #e6e6e6;
}

.testimonial-quote {
    font-size: 2.5rem;
    color: #10b981;
    position: absolute;
    top: 20px;
    right: 25px;
    opacity: 0.2;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f0f0f0;
    margin-right: 15px;
    overflow: hidden;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: #1e40af;
    margin: 0;
}

.author-info p {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-top: 5px;
}

/* Feature Box */
.feature-box {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 15px 30px rgba(30, 64, 175, 0.4);
    z-index: 2;
    animation: pulse 2.5s infinite;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transform: rotate(2deg);
}

@keyframes pulse {
    0% {
        box-shadow: 0 15px 30px rgba(30, 64, 175, 0.4);
        transform: rotate(2deg) scale(1);
    }
    50% {
        box-shadow: 0 20px 40px rgba(30, 64, 175, 0.6);
        transform: rotate(2deg) scale(1.03);
    }
    100% {
        box-shadow: 0 15px 30px rgba(30, 64, 175, 0.4);
        transform: rotate(2deg) scale(1);
    }
}

.feature-box-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.feature-box-title span {
    margin-right: 10px;
    font-size: 1.6rem;
}

.feature-box-text {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.feature-highlight {
    color: #4ade80;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.feature-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4ade80;
    border-radius: 2px;
}

.feature-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 10px;
    margin-top: 10px;
}

.feature-stat-item {
    display: flex;
    align-items: center;
}

.feature-stat-item span {
    margin-right: 5px;
    color: #4ade80;
}

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

.cta h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

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

/* Footer */
footer {
    background-color: #111827;
    color: white;
    padding: 80px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-logo span {
    color: #10b981;
}

.footer-about p {
    color: #9ca3af;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #10b981;
    transform: translateY(-5px);
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    position: relative;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #10b981;
}

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

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

.footer-links ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: #10b981;
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1f2937;
    color: #6b7280;
}

.copyright a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.copyright a:hover {
    color: #10b981;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-content, .outbound-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text, .outbound-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .feature-box {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        margin-top: 30px;
        transform: none;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px 10px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero {
        margin-top: 120px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .value-card, .call-sample, .testimonial-card, .pricing-card {
        padding: 20px;
    }
}



/* Hide hero image while maintaining layout */
.hero-image {
    flex: 1;
    position: relative;
    z-index: 1;
    min-height: 400px; /* Maintains the height */
}

.hero-image img {
    display: none;
}





