/* ============================================
   CLASH MEDIA - 2015 Era Affiliate Network
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #f5f5f5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: #1a1a2e;
    color: #999;
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #2a2a3e;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left span {
    margin-right: 20px;
}

.top-left i, .top-right i {
    margin-right: 6px;
}

.top-right a {
    color: #999;
    margin-left: 12px;
    font-size: 14px;
}

.top-right a:hover {
    color: #e74c3c;
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
    background: #16213e;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    -webkit-box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo a {
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-clash {
    color: #e74c3c;
    text-shadow: 0 0 10px rgba(231, 76, 60, 0.3);
}

.logo-media {
    color: #fff;
    margin-left: 2px;
}

.main-nav > ul {
    display: flex;
    align-items: center;
}

.main-nav ul li {
    position: relative;
}

.main-nav ul li a {
    display: block;
    padding: 25px 18px;
    color: #ccc;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: #fff;
    background: rgba(231, 76, 60, 0.15);
}

.main-nav ul li a.active {
    border-bottom: 3px solid #e74c3c;
}

/* Dropdown */
.dropdown-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a2e;
    min-width: 200px;
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 100;
    border-top: 3px solid #e74c3c;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu li a {
    padding: 12px 20px;
    font-size: 13px;
    text-transform: none;
    border-bottom: 1px solid #2a2a3e;
}

.dropdown-menu li a:hover {
    background: #e74c3c;
    color: #fff;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn-login {
    color: #ccc;
    padding: 8px 18px;
    border: 1px solid #555;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
}

.btn-login:hover {
    border-color: #e74c3c;
    color: #e74c3c;
}

.btn-signup {
    background: #e74c3c;
    color: #fff;
    padding: 8px 18px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #e74c3c;
}

.btn-signup:hover {
    background: #c0392b;
    border-color: #c0392b;
}

.mobile-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: 2px solid transparent;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #e74c3c;
    color: #fff;
    border-color: #e74c3c;
    /* 2015 gradient feel */
    background: -webkit-linear-gradient(top, #e74c3c, #c0392b);
    background: linear-gradient(to bottom, #e74c3c, #c0392b);
    -webkit-box-shadow: 0 3px 8px rgba(231, 76, 60, 0.3);
    box-shadow: 0 3px 8px rgba(231, 76, 60, 0.3);
}

.btn-primary:hover {
    background: #c0392b;
    -webkit-box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #333;
}

.btn-white {
    background: #fff;
    color: #333;
    border-color: #fff;
}

.btn-white:hover {
    background: transparent;
    color: #fff;
}

.btn-large {
    padding: 18px 45px;
    font-size: 16px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    /* Classic 2015 dark overlay on image pattern */
    background: #16213e;
    background-image:
        -webkit-linear-gradient(135deg, rgba(22, 33, 62, 0.95) 0%, rgba(26, 26, 46, 0.85) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect fill="url(%23grid)" width="100" height="100"/></svg>');
    background-image:
        linear-gradient(135deg, rgba(22, 33, 62, 0.95) 0%, rgba(26, 26, 46, 0.85) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect fill="url(%23grid)" width="100" height="100"/></svg>');
    position: relative;
    padding: 100px 0 120px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(52, 152, 219, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 18px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #e74c3c;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 17px;
    color: #bbb;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
    background: #e74c3c;
    background: -webkit-linear-gradient(left, #e74c3c, #c0392b);
    background: linear-gradient(to right, #e74c3c, #c0392b);
    padding: 35px 0;
    -webkit-box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.stats-bar .container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.header-line {
    width: 60px;
    height: 3px;
    background: #e74c3c;
    margin: 0 auto 20px;
}

.header-line.left {
    margin: 0 0 20px;
}

.section-header p {
    font-size: 16px;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 35px 30px;
    text-align: center;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.service-card:hover {
    -webkit-box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #e74c3c;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e8e8e8;
}

.service-icon i {
    font-size: 28px;
    color: #e74c3c;
}

.service-card:hover .service-icon {
    background: #e74c3c;
    border-color: #e74c3c;
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.service-card p {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
}

/* ============================================
   DUAL CTA
   ============================================ */
.dual-cta {
    display: flex;
}

.cta-left, .cta-right {
    flex: 1;
    padding: 70px 60px;
    color: #fff;
}

.cta-left {
    background: #16213e;
    background: -webkit-linear-gradient(135deg, #16213e, #1a1a2e);
    background: linear-gradient(135deg, #16213e, #1a1a2e);
}

.cta-right {
    background: #e74c3c;
    background: -webkit-linear-gradient(135deg, #e74c3c, #c0392b);
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-content ul {
    margin-bottom: 30px;
}

.cta-content ul li {
    padding: 6px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.cta-content ul li i {
    color: #2ecc71;
    margin-right: 10px;
}

.cta-right .cta-content ul li i {
    color: #fff;
}

/* ============================================
   VERTICALS
   ============================================ */
.verticals {
    padding: 80px 0;
    background: #f8f9fa;
}

.verticals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.vertical-card {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 3px;
    border-bottom: 3px solid transparent;
    -webkit-box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.vertical-card:hover {
    border-bottom-color: #e74c3c;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.vertical-card i {
    font-size: 40px;
    color: #e74c3c;
    margin-bottom: 18px;
    display: block;
}

.vertical-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.vertical-card p {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
}

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.about-preview {
    padding: 80px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 15px;
    color: #666;
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-text .btn {
    margin-top: 10px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-stat-card {
    background: #f8f9fa;
    border: 1px solid #eee;
    padding: 25px 20px;
    text-align: center;
    border-radius: 3px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.about-stat-card:hover {
    border-color: #e74c3c;
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.about-stat-card i {
    font-size: 30px;
    color: #e74c3c;
    margin-bottom: 12px;
    display: block;
}

.about-stat-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.about-stat-card p {
    font-size: 13px;
    color: #888;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 3px;
    -webkit-box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border-top: 3px solid #e74c3c;
}

.testimonial-stars {
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: #f39c12;
    font-size: 14px;
}

.testimonial-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-info strong {
    display: block;
    font-size: 14px;
    color: #1a1a2e;
}

.author-info span {
    font-size: 12px;
    color: #999;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: #16213e;
    background: -webkit-linear-gradient(135deg, #1a1a2e, #16213e);
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 70px 0;
    text-align: center;
    color: #fff;
}

.cta-banner h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 17px;
    color: #bbb;
    margin-bottom: 30px;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: #111;
    color: #999;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #2a2a2a;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #222;
    color: #999;
    text-align: center;
    line-height: 35px;
    border-radius: 3px;
    margin-right: 5px;
    font-size: 14px;
}

.footer-social a:hover {
    background: #e74c3c;
    color: #fff;
}

.footer-col h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    font-size: 13px;
    color: #999;
}

.footer-col ul li a:hover {
    color: #e74c3c;
    padding-left: 5px;
}

.contact-list li {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.contact-list li i {
    color: #e74c3c;
    width: 18px;
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 12px;
    color: #666;
}

/* ============================================
   INNER PAGE HEADERS
   ============================================ */
.page-header {
    background: #16213e;
    background: -webkit-linear-gradient(135deg, #16213e, #1a1a2e);
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 16px;
    color: #bbb;
}

.breadcrumb {
    margin-top: 15px;
    font-size: 13px;
    color: #888;
}

.breadcrumb a {
    color: #e74c3c;
}

/* ============================================
   INNER PAGE CONTENT
   ============================================ */
.page-content {
    padding: 60px 0;
    background: #fff;
}

.page-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.page-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
}

.page-content .highlight-box {
    background: #f8f9fa;
    border-left: 4px solid #e74c3c;
    padding: 25px 30px;
    margin: 30px 0;
    border-radius: 0 3px 3px 0;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 3px;
}

.feature-item i {
    font-size: 24px;
    color: #e74c3c;
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-item h4 {
    font-size: 15px;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.feature-item p {
    font-size: 13px;
    margin-bottom: 0;
}

/* Contact Form */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #e74c3c;
    outline: none;
    background: #fff;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-sidebar h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.contact-sidebar .contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.contact-info-item i {
    font-size: 20px;
    color: #e74c3c;
    width: 24px;
    flex-shrink: 0;
}

.contact-info-item h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 3px;
}

.contact-info-item p {
    font-size: 13px;
    margin-bottom: 0;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.team-card {
    text-align: center;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 3px;
    padding: 30px 20px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.team-card:hover {
    -webkit-box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: #e74c3c;
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: #16213e;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #e74c3c;
}

.team-card h4 {
    font-size: 15px;
    color: #1a1a2e;
    margin-bottom: 3px;
}

.team-card span {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   ADVERTISER SIGNUP
   ============================================ */
.advertiser-signup {
    padding: 70px 0;
    background: #f8f9fa;
}

.advertiser-signup .form-group {
    margin-bottom: 20px;
}

.advertiser-signup label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advertiser-signup input,
.advertiser-signup select,
.advertiser-signup textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    -webkit-transition: border-color 0.3s;
    transition: border-color 0.3s;
    background: #fff;
}

.advertiser-signup input:focus,
.advertiser-signup select:focus,
.advertiser-signup textarea:focus {
    border-color: #e74c3c;
    outline: none;
}

.advertiser-signup textarea {
    height: 120px;
    resize: vertical;
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.blog-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 3px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.blog-card:hover {
    -webkit-box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

.blog-card-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.blog-card-image.bg-red {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: rgba(255,255,255,0.6);
}

.blog-card-image.bg-navy {
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    color: rgba(255,255,255,0.6);
}

.blog-card-image.bg-dark {
    background: linear-gradient(135deg, #2c3e50, #1a1a2e);
    color: rgba(255,255,255,0.6);
}

.blog-card-image.bg-green {
    background: linear-gradient(135deg, #27ae60, #1e8449);
    color: rgba(255,255,255,0.6);
}

.blog-card-image.bg-orange {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: rgba(255,255,255,0.6);
}

.blog-card-image.bg-purple {
    background: linear-gradient(135deg, #8e44ad, #6c3483);
    color: rgba(255,255,255,0.6);
}

.blog-card-body {
    padding: 25px;
}

.blog-card-meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-meta span {
    margin-right: 15px;
}

.blog-card-meta .blog-tag {
    background: #e74c3c;
    color: #fff;
    padding: 2px 8px;
    border-radius: 2px;
    font-size: 10px;
    font-weight: 600;
}

.blog-card-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    color: #1a1a2e;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-body h3 a:hover {
    color: #e74c3c;
}

.blog-card-body p {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-read-more {
    font-size: 13px;
    font-weight: 600;
    color: #e74c3c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-read-more:hover {
    color: #c0392b;
}

.blog-read-more i {
    margin-left: 5px;
    font-size: 11px;
}

/* Blog Article Page */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
}

.blog-article h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-article-meta {
    font-size: 13px;
    color: #999;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.blog-article h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: #1a1a2e;
    margin: 30px 0 12px;
}

.blog-article p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

.blog-article ul {
    margin: 15px 0 20px 25px;
    list-style: disc;
}

.blog-article ul li {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    color: #1a1a2e;
    margin: 35px 0 12px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    color: #1a1a2e;
    margin: 25px 0 10px;
}

.legal-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin: 10px 0 20px 25px;
    list-style: disc;
}

.legal-content ul li {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-content .legal-updated {
    font-size: 13px;
    color: #999;
    font-style: italic;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .main-nav, .header-buttons {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .services-grid,
    .testimonials-grid,
    .verticals-grid,
    .blog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dual-cta {
        flex-direction: column;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .stats-bar .container {
        flex-wrap: wrap;
    }

    .stat {
        width: 50%;
        margin-bottom: 20px;
    }

    .services-grid,
    .testimonials-grid,
    .verticals-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-left, .cta-right {
        padding: 50px 30px;
    }

    .top-bar {
        display: none;
    }
}
