/* style.css */
:root {
    --primary-color: #0d3b66;
    --secondary-color: #f95738;
    --accent-color: #f4d35e;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --success-color: #28a745;
    --gray-color: #6c757d;
    --light-gray: #e9ecef;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: #e03e1a;
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.3rem;
}

.btn-secondary {
    background-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: #0a2d4d;
}

/* Header */
header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.logo span {
    color: var(--accent-color);
}

.tagline {
    font-size: 1.1rem;
    color: var(--light-gray);
    font-weight: 300;
}

/* Visitor Counter Styles */
.visitor-counter {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 6px 15px;
    margin-left: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.visitor-counter i {
    margin-right: 8px;
    color: var(--accent-color);
}

.counter-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.1) 0%, rgba(249, 87, 56, 0.1) 100%);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-top: 40px;
    border-left: 4px solid var(--secondary-color);
    gap: 20px;
}

.counter-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.stat-box {
    text-align: center;
    padding: 15px 25px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    min-width: 150px;
}

.stat-number {
    display: block;
    font-weight: 700;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-weight: 600;
}

.counter-icon {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-right: 15px;
}

/* Brand Unification Badge */
.brand-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 10px 0;
    box-shadow: 0 3px 10px rgba(33, 150, 243, 0.3);
}

.unified-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    margin-left: 10px;
}

/* Unified Branding Section */
.unified-branding {
    background: linear-gradient(135deg, rgba(13, 59, 102, 0.05) 0%, rgba(244, 211, 94, 0.05) 100%);
    border-radius: var(--border-radius);
    padding: 30px;
    margin: 40px 0;
    border-left: 5px solid #4CAF50;
}

.brand-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.checklist-icon {
    background-color: #4CAF50;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.seo-benefit {
    background: linear-gradient(135deg, #FF9800, #F44336);
    color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    margin: 30px 0;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(13, 59, 102, 0.9), rgba(13, 59, 102, 0.8)), url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 0;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    color: var(--light-gray);
}

.highlight {
    color: var(--accent-color);
    font-weight: 700;
}

/* Features Section */
.features {
    background-color: white;
}

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

.feature-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Threads icon fix */
.fa-threads {
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

/* Platform Details */
.platform-details {
    background-color: var(--light-gray);
}

.details-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.details-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.details-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Acquisition Section */
.acquisition {
    background-color: white;
}

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

.step {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    background-color: var(--light-gray);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, var(--primary-color), #154b7c);
    color: white;
    text-align: center;
    padding: 100px 0;
}

.cta-section h2 {
    color: white;
    border-bottom: none;
}

.cta-section p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--light-gray);
}

.marketplace-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.badge {
    background-color: white;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: var(--border-radius);
    font-weight: 700;
    box-shadow: var(--box-shadow);
}

/* Social Media Styles */
.social-media {
    margin-top: 30px;
}

.social-media h5 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

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

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Email icon specific styling */
.email-icon {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 30px;
}

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

.footer-column h4 {
    color: var(--accent-color);
    margin-bottom: 25px;
}

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

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

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Email link styling */
.email-link {
    color: #4CAF50;
    text-decoration: none;
    transition: var(--transition);
}

.email-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.outlook-link {
    color: #0078D4;
    text-decoration: none;
    transition: var(--transition);
}

.outlook-link:hover {
    color: #50E6FF;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.3rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .visitor-counter {
        display: none;
    }
    
    .counter-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .stat-box {
        min-width: 200px;
    }
    
    .brand-checklist {
        grid-template-columns: 1fr;
    }
}
