/*
Theme Name: Καραπετρίδης
Theme URI: https://karapetridis.gr
Description: Επαγγελματικό theme για το λογιστικό γραφείο Καραπετρίδης – Λογιστές, Φοροσύμβουλοι, Επιχειρηματικοί Σύμβουλοι, Θεσσαλονίκη.
Author: Σωκράτης Καραπετρίδης
Version: 1.0
Text Domain: karapetridis
*/

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; font-size: 15px; color: #333; background: #fff; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ===========================
   BUTTONS
=========================== */
.btn { display: inline-block; padding: 12px 28px; font-size: 14px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.25s, color 0.25s, transform 0.2s; border-radius: 2px; }
.btn--red { background: #c0392b; color: #fff; }
.btn--red:hover { background: #a93226; transform: translateY(-1px); }
.btn--white { background: #fff; color: #c0392b; border: 2px solid #fff; }
.btn--white:hover { background: transparent; color: #fff; }
.btn--full { width: 100%; text-align: center; }

/* ===========================
   SECTION TITLES
=========================== */
.section-title { font-size: 22px; font-weight: 700; text-transform: uppercase; color: #1a1a2e; margin-bottom: 24px; padding-bottom: 12px; position: relative; letter-spacing: 0.5px; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: #c0392b; }
.section-title--center { text-align: center; }
.section-title--center::after { left: 50%; transform: translateX(-50%); }

/* ===========================
   TOP BAR
=========================== */
.topbar { background: #1a1a2e; color: #ccc; font-size: 13px; padding: 8px 0; }
.topbar__inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar__right { display: flex; gap: 20px; }
.topbar i { color: #c0392b; margin-right: 6px; }

/* ===========================
   HEADER
=========================== */
.header { background: #1a1a2e; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; color: #fff; }
.logo__icon { font-size: 26px; color: #c0392b; }
.logo__text { font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; line-height: 1.2; }
.logo__text em { display: block; font-style: normal; font-size: 11px; font-weight: 400; color: #aaa; text-transform: lowercase; letter-spacing: 0; }
.nav__list { display: flex; align-items: center; gap: 4px; }
.nav__list > li { position: relative; }
.nav__list > li > a { color: #e0e0e0; font-size: 14px; font-weight: 600; padding: 8px 14px; display: block; transition: color 0.2s; text-transform: uppercase; letter-spacing: 0.4px; }
.nav__list > li > a:hover, .nav__list > li > a.active { color: #c0392b; }
.nav__cta { background: #c0392b; color: #fff !important; border-radius: 2px; padding: 8px 18px !important; }
.nav__cta:hover { background: #a93226 !important; }
.dropdown { position: absolute; top: 100%; left: 0; background: #fff; min-width: 240px; box-shadow: 0 6px 24px rgba(0,0,0,0.12); opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity 0.2s, transform 0.2s; z-index: 100; }
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown li a { display: block; padding: 11px 18px; font-size: 13px; color: #333; border-bottom: 1px solid #f0f0f0; transition: background 0.15s, color 0.15s; }
.dropdown li a:hover { background: #f8f8f8; color: #c0392b; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; }

/* ===========================
   HERO SLIDER
=========================== */
.hero { position: relative; height: 600px; overflow: hidden; }
.hero__slides { height: 100%; }
.hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 0.9s ease; display: flex; align-items: center; }
.hero__slide.active { opacity: 1; z-index: 1; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(15,15,35,0.82) 0%, rgba(15,15,35,0.45) 60%, rgba(15,15,35,0.15) 100%); }
.hero__content { position: relative; z-index: 2; padding: 0 60px; max-width: 640px; }
.hero__content h1 { font-size: 38px; font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 18px; }
.hero__content p { font-size: 17px; color: rgba(255,255,255,0.85); margin-bottom: 30px; }
.hero__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 5; background: rgba(192,57,43,0.75); border: none; color: #fff; font-size: 18px; width: 46px; height: 46px; border-radius: 50%; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.hero__arrow:hover { background: #c0392b; }
.hero__arrow--prev { left: 20px; }
.hero__arrow--next { right: 20px; }
.hero__dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); z-index: 5; display: flex; gap: 8px; }
.hero__dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.45); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.hero__dot.active { background: #c0392b; transform: scale(1.3); }

/* ===========================
   RED BANNER
=========================== */
.banner-red { background: #c0392b; padding: 22px 0; }
.banner-red__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.banner-red p { color: #fff; font-size: 16px; font-weight: 600; flex: 1; }

/* ===========================
   ABOUT
=========================== */
.about { padding: 80px 0; background: #fff; }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.profile-card { position: relative; margin-bottom: 24px; border-radius: 4px; overflow: hidden; }
.profile-card__photo { width: 100%; height: 320px; object-fit: cover; object-position: center top; display: block; border-radius: 4px; }
.profile-card__badge { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(26,26,46,0.92)); padding: 32px 20px 18px; color: #fff; }
.profile-card__badge strong { display: block; font-size: 17px; font-weight: 700; }
.profile-card__badge span { font-size: 13px; color: #c0392b; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; }
.about__left p { margin-bottom: 14px; color: #555; }
.about__left .btn { margin-top: 10px; }
.why-list { display: flex; flex-direction: column; gap: 24px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-item__icon { width: 46px; height: 46px; background: #f5f5f5; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; color: #c0392b; flex-shrink: 0; transition: background 0.2s; }
.why-item:hover .why-item__icon { background: #c0392b; color: #fff; }
.why-item h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; color: #1a1a2e; margin-bottom: 4px; letter-spacing: 0.3px; }
.why-item p { font-size: 14px; color: #666; }

/* ===========================
   QUOTE SECTION
=========================== */
.quote-section { position: relative; background-size: cover; background-position: center; background-attachment: fixed; padding: 80px 0; background-color: #1a1a2e; }
.quote-section__overlay { position: absolute; inset: 0; background: rgba(15,15,35,0.78); }
.quote-section__inner { position: relative; z-index: 1; text-align: center; max-width: 820px; margin: 0 auto; }
.quote-mark { font-size: 80px; color: rgba(192,57,43,0.5); line-height: 0.5; display: block; font-family: Georgia, serif; }
.quote-mark--right { line-height: 1.2; }
blockquote { font-size: 21px; color: #fff; font-weight: 600; line-height: 1.7; margin: 20px 0; }
cite { font-size: 14px; color: #c0392b; font-style: normal; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
cite small { color: #aaa; font-weight: 400; display: block; text-transform: none; letter-spacing: 0; }

/* ===========================
   SERVICES
=========================== */
.services { padding: 80px 0; background: #f7f7f7; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.service-card { background: #fff; border-radius: 3px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.25s, box-shadow 0.25s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 8px 28px rgba(0,0,0,0.1); }
.service-card__img { height: 190px; background-size: cover; background-position: center; background-color: #2c3e50; }
.service-card h3 { font-size: 14px; font-weight: 700; text-transform: uppercase; color: #1a1a2e; padding: 18px 20px 8px; letter-spacing: 0.3px; }
.service-card p { font-size: 13.5px; color: #666; padding: 0 20px 16px; line-height: 1.6; }
.service-card__link { display: inline-block; margin: 0 20px 20px; font-size: 13px; font-weight: 700; color: #c0392b; text-transform: uppercase; }
.service-card__link i { margin-left: 6px; font-size: 11px; }

/* ===========================
   STATS
=========================== */
.stats { background: #1a1a2e; padding: 50px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 20px; }
.stat-item__number { display: block; font-size: 46px; font-weight: 700; color: #c0392b; line-height: 1; margin-bottom: 8px; }
.stat-item__label { display: block; font-size: 13px; text-transform: uppercase; color: #aaa; letter-spacing: 1px; }

/* ===========================
   NEWS
=========================== */
.news { padding: 80px 0; background: #fff; }
.news__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.news-card { border: 1px solid #eee; border-radius: 3px; padding: 24px; transition: box-shadow 0.2s; }
.news-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.news-card__date { font-size: 12px; text-transform: uppercase; color: #c0392b; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 10px; }
.news-card h4 { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; line-height: 1.5; }
.news-card p { font-size: 13.5px; color: #666; margin-bottom: 16px; }
.news-card__link { font-size: 13px; font-weight: 700; color: #c0392b; text-transform: uppercase; }

/* ===========================
   CONTACT
=========================== */
.contact { padding: 80px 0; background: #f7f7f7; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact__info p { color: #555; margin-bottom: 20px; }
.contact__details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.contact__details li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: #555; }
.contact__details i { color: #c0392b; width: 18px; }
.contact__details a:hover { color: #c0392b; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 600; color: #444; margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.3px; }
.form-group input, .form-group textarea { border: 1px solid #ddd; border-radius: 2px; padding: 10px 14px; font-size: 14px; font-family: inherit; color: #333; transition: border-color 0.2s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: #c0392b; }
.form-group textarea { resize: vertical; }

/* ===========================
   FOOTER
=========================== */
.footer { background: #1a1a2e; color: #ccc; padding: 60px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer__col h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 2px solid #c0392b; display: inline-block; }
.footer__logo { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.footer__logo i { color: #c0392b; margin-right: 6px; }
.footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.footer__col ul li { font-size: 13.5px; display: flex; align-items: center; gap: 10px; }
.footer__col ul li i { color: #c0392b; width: 14px; }
.footer__col ul a { color: #ccc; transition: color 0.2s; }
.footer__col ul a:hover { color: #c0392b; }
.footer__col > p { font-size: 13.5px; margin-bottom: 14px; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.newsletter-form input { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 2px; padding: 10px 14px; color: #fff; font-size: 14px; outline: none; }
.newsletter-form input::placeholder { color: #999; }
.newsletter-form input:focus { border-color: #c0392b; }
.footer__social { display: flex; gap: 10px; margin-top: 6px; }
.footer__social a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #ccc; font-size: 14px; transition: background 0.2s, color 0.2s; }
.footer__social a:hover { background: #c0392b; color: #fff; }
.footer__bottom { padding: 18px 0; text-align: center; }
.footer__bottom p { font-size: 13px; color: #777; }

/* ===========================
   FLOATING CTA WIDGET
=========================== */
.float-cta { position: fixed; bottom: 28px; right: 28px; z-index: 9999; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.float-cta__toggle { width: 54px; height: 54px; background: #c0392b; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; box-shadow: 0 4px 18px rgba(192,57,43,0.5); transition: background 0.2s, transform 0.2s; order: 1; }
.float-cta__toggle:hover { background: #a93226; transform: scale(1.08); }
.float-cta__toggle .icon-close { display: none; }
.float-cta.open .icon-open { display: none; }
.float-cta.open .icon-close { display: block; }
.float-cta__buttons { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; order: 0; opacity: 0; pointer-events: none; transform: translateY(16px); transition: opacity 0.25s, transform 0.25s; }
.float-cta.open .float-cta__buttons { opacity: 1; pointer-events: all; transform: translateY(0); }
.float-cta__btn { display: flex; align-items: center; gap: 12px; background: #1a1a2e; color: #fff; border-radius: 50px; padding: 11px 20px 11px 16px; font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; box-shadow: 0 4px 16px rgba(0,0,0,0.25); transition: background 0.2s, transform 0.15s; }
.float-cta__btn:hover { background: #c0392b; transform: translateX(-4px); }
.float-cta__btn--red { background: #c0392b; }
.float-cta__btn--red:hover { background: #a93226; }
.float-cta__btn--viber { background: #7360f2; }
.float-cta__btn--viber:hover { background: #5d4dd6; }
.float-cta__btn i { width: 30px; height: 30px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(192,57,43,0.5); } 70% { box-shadow: 0 0 0 14px rgba(192,57,43,0); } 100% { box-shadow: 0 0 0 0 rgba(192,57,43,0); } }
.float-cta__toggle { animation: pulse 2.5s infinite; }
.float-cta.open .float-cta__toggle { animation: none; }

/* ===========================
   INNER PAGE STYLES
=========================== */
.page-banner { background: linear-gradient(135deg, #1a1a2e 0%, #2c3350 100%); padding: 60px 0 50px; text-align: center; position: relative; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=60') center/cover; opacity: 0.12; }
.page-banner__inner { position: relative; z-index: 1; }
.page-banner h1 { font-size: 34px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.page-banner__breadcrumb { font-size: 13px; color: rgba(255,255,255,0.6); }
.page-banner__breadcrumb a { color: #c0392b; }
.page-banner__breadcrumb span { margin: 0 8px; }
.page-content { padding: 70px 0; background: #fff; }
.page-content h2 { font-size: 20px; font-weight: 700; color: #1a1a2e; text-transform: uppercase; margin: 36px 0 14px; padding-bottom: 10px; border-bottom: 2px solid #c0392b; display: inline-block; }
.page-content h2:first-child { margin-top: 0; }
.page-content h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin: 24px 0 8px; }
.page-content p { color: #555; margin-bottom: 14px; line-height: 1.8; }
.page-content ul { list-style: none; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
.page-content ul li { padding-left: 22px; position: relative; color: #555; font-size: 14.5px; line-height: 1.6; }
.page-content ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; background: #c0392b; border-radius: 50%; }
.page-grid { display: grid; grid-template-columns: 1fr 320px; gap: 50px; align-items: start; }
.page-sidebar { position: sticky; top: 90px; }
.sidebar-widget { background: #f7f7f7; border-radius: 3px; padding: 24px; margin-bottom: 24px; border-left: 3px solid #c0392b; }
.sidebar-widget h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; color: #1a1a2e; letter-spacing: 0.5px; margin-bottom: 16px; }
.sidebar-nav li { border-bottom: 1px solid #eee; }
.sidebar-nav li:last-child { border-bottom: none; }
.sidebar-nav a { display: block; padding: 10px 0; font-size: 13.5px; color: #444; transition: color 0.2s, padding-left 0.2s; }
.sidebar-nav a:hover, .sidebar-nav a.active { color: #c0392b; padding-left: 6px; }
.sidebar-contact p { font-size: 13.5px; color: #555; margin-bottom: 12px; }
.sidebar-contact .btn { width: 100%; text-align: center; }
.info-box { background: #f0f4ff; border-left: 4px solid #c0392b; padding: 18px 20px; border-radius: 0 4px 4px 0; margin: 24px 0; }
.info-box p { margin: 0; color: #333; font-size: 14px; }
.faq-item { border-bottom: 1px solid #eee; padding: 16px 0; }
.faq-item:last-child { border-bottom: none; }
.faq-question { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.faq-answer { font-size: 14px; color: #666; line-height: 1.7; }
.cta-section { background: #1a1a2e; padding: 60px 0; text-align: center; }
.cta-section h2 { font-size: 26px; color: #fff; margin-bottom: 12px; font-weight: 700; }
.cta-section p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 16px; }
.cta-section .btn { margin: 0 8px; }

/* ===========================
   WORDPRESS SPECIFIC
=========================== */
.wp-post-image { width: 100%; height: 280px; object-fit: cover; border-radius: 4px; margin-bottom: 20px; }
.entry-title { font-size: 28px; font-weight: 700; color: #1a1a2e; margin-bottom: 16px; line-height: 1.3; }
.entry-meta { font-size: 13px; color: #999; margin-bottom: 24px; }
.entry-meta span { margin-right: 16px; }
.entry-meta i { color: #c0392b; margin-right: 4px; }
.entry-content p { color: #555; margin-bottom: 16px; line-height: 1.8; }
.entry-content h2 { font-size: 20px; font-weight: 700; color: #1a1a2e; margin: 28px 0 12px; }
.entry-content h3 { font-size: 17px; font-weight: 700; color: #1a1a2e; margin: 20px 0 10px; }
.entry-content ul { margin: 0 0 20px 20px; }
.entry-content ul li { list-style: disc; color: #555; margin-bottom: 6px; line-height: 1.6; }
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
.post-card { border: 1px solid #eee; border-radius: 4px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.post-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); transform: translateY(-3px); }
.post-card__thumb { height: 200px; background-size: cover; background-position: center; background-color: #1a1a2e; }
.post-card__body { padding: 20px; }
.post-card__cat { font-size: 11px; font-weight: 700; text-transform: uppercase; color: #c0392b; letter-spacing: 0.5px; margin-bottom: 8px; }
.post-card__title { font-size: 15px; font-weight: 700; color: #1a1a2e; margin-bottom: 10px; line-height: 1.5; }
.post-card__title a { color: inherit; }
.post-card__title a:hover { color: #c0392b; }
.post-card__excerpt { font-size: 13.5px; color: #666; margin-bottom: 14px; }
.post-card__link { font-size: 13px; font-weight: 700; color: #c0392b; text-transform: uppercase; }
.post-card__date { font-size: 12px; color: #aaa; margin-top: 10px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span { padding: 8px 14px; border: 1px solid #ddd; color: #333; font-size: 14px; border-radius: 2px; }
.pagination a:hover { background: #c0392b; color: #fff; border-color: #c0392b; }
.pagination .current { background: #c0392b; color: #fff; border-color: #c0392b; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #1a1a2e; padding: 16px 0; box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
  .nav.open { display: block; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list > li > a { padding: 12px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .dropdown { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; background: rgba(255,255,255,0.05); }
  .dropdown li a { color: #ccc; padding-left: 40px; }
  .hero { height: 480px; }
  .hero__content { padding: 0 30px; }
  .hero__content h1 { font-size: 26px; }
  .about__grid, .contact__grid, .page-grid { grid-template-columns: 1fr; gap: 40px; }
  .news__grid, .posts-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  blockquote { font-size: 17px; }
  .topbar__right { display: none; }
  .banner-red__inner { flex-direction: column; text-align: center; }
  .float-cta { bottom: 16px; right: 16px; }
  .float-cta__btn { font-size: 12px; padding: 10px 14px 10px 12px; }
}
@media (max-width: 520px) {
  .services__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ===== PROMO STRIP ===== */
.promo-strip { display: grid; grid-template-columns: 1fr 1fr; }
.promo-card { position: relative; display: flex; align-items: center; overflow: hidden; min-height: 420px; }
.promo-card--tax { background: linear-gradient(135deg, #7b0e0e 0%, #c0392b 60%, #922b21 100%); }
.promo-card--espa { background: linear-gradient(135deg, #0b3d2e 0%, #1e8449 60%, #145a32 100%); }
.promo-card__icon-bg { position: absolute; right: -20px; bottom: -20px; font-size: 180px; color: rgba(255,255,255,0.06); line-height: 1; pointer-events: none; }
.promo-card__body { position: relative; z-index: 1; padding: 56px 48px; color: #fff; width: 100%; }
.promo-card__body h2 { font-size: 32px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin: 14px 0 14px; line-height: 1.2; color: #fff; }
.promo-card__body p { font-size: 15px; color: rgba(255,255,255,0.88); line-height: 1.8; margin-bottom: 20px; max-width: 440px; }
.promo-badge { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.18); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 14px; border-radius: 2px; border: 1px solid rgba(255,255,255,0.3); margin-bottom: 6px; }
.promo-badge--amber { background: rgba(249,211,66,0.2); border-color: rgba(249,211,66,0.5); color: #f9d342; }
.promo-deadline { display: flex; align-items: center; gap: 10px; font-size: 14px; color: #fff; background: rgba(0,0,0,0.25); border-left: 4px solid #f9d342; padding: 11px 16px; margin-bottom: 26px; border-radius: 0 2px 2px 0; }
.promo-deadline i { color: #f9d342; font-size: 16px; flex-shrink: 0; }
.promo-deadline strong { color: #f9d342; }
.promo-deadline--amber { border-left-color: #f9d342; }
.promo-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn--white-red { background: #fff; color: #c0392b; font-weight: 700; }
.btn--white-red:hover { background: #f0f0f0; }
.btn--white-green { background: #fff; color: #1e8449; font-weight: 700; }
.btn--white-green:hover { background: #f0f0f0; }
.btn--ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn--ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
@media (max-width: 900px) {
  .promo-strip { grid-template-columns: 1fr; }
  .promo-card { min-height: 360px; }
  .promo-card__body { padding: 40px 28px; }
  .promo-card__body h2 { font-size: 24px; }
  .promo-ctas { flex-direction: column; }
  .promo-ctas .btn { text-align: center; }
}

/* ===== CONTACT PAGE ===== */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-block { background: #fff; border-radius: 4px; padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,0.07); margin-bottom: 24px; }
.contact-info-block h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #c0392b; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.contact-detail__icon { width: 38px; height: 38px; background: #c0392b; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; flex-shrink: 0; }
.contact-detail__text { display: flex; flex-direction: column; gap: 2px; }
.contact-detail__text strong { font-size: 13px; font-weight: 700; color: #1a1a2e; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-detail__text span, .contact-detail__text a { font-size: 14px; color: #555; text-decoration: none; }
.contact-detail__text a:hover { color: #c0392b; }
.map-wrapper { border-radius: 4px; overflow: hidden; }
.map-wrapper iframe { display: block; width: 100%; height: 280px; border: 0; }
@media (max-width: 768px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
}
