/*
Theme Name: Staircase
Theme URI: http://saltwater.local/
Author: Your Name
Author URI: http://saltwater.local/
Description: A simple, clean, and mobile-responsive WordPress theme with hero section support
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: staircase
Tags: custom-header, custom-menu, featured-images, flexible-header, responsive-layout
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.site-header {
    background-color: #e2e2e2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

/* New logo area container */
.header-logo-area {
    display: flex;
    align-items: center;
    padding: 0;
    min-height: 86px;
}

.header-logo-area .site-branding {
    height: auto;
    min-height: 86px;
}

/* New navigation/phone area container */
.header-nav-area {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 0;
}

.site-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.site-title a {
    text-decoration: none;
    color: #333;
}

/* Staircase Logo Styles */
.staircase-logo-link {
    display: inline-block;
    text-decoration: none;
    line-height: 1;
}

.staircase-logo {
    height: 86px !important;
    width: auto !important;
    max-width: 251px !important;
    min-height: 86px;
    vertical-align: middle;
    transition: opacity 0.3s ease;
}

.staircase-logo:hover {
    opacity: 0.8;
}

/* WordPress custom logo fallback */
.custom-logo-link {
    display: inline-block;
    text-decoration: none;
}

.custom-logo {
    height: 86px !important;
    width: auto !important;
    max-width: 251px !important;
    min-height: 86px;
    vertical-align: middle;
}

/* Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.main-navigation a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.main-navigation a:hover {
    color: #0073aa;
}

/* Dropdown Menus */
.main-navigation .menu-item-has-children {
    position: relative;
}

.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    display: block !important;
    flex-direction: column;
    gap: 0;
}

.main-navigation .menu-item-has-children.dropdown-open .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation .sub-menu li {
    border-bottom: 1px solid #f0f0f0;
    display: block;
    width: 100%;
}

.main-navigation .sub-menu li:last-child {
    border-bottom: none;
}

.main-navigation .sub-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    font-weight: 400;
    transition: background-color 0.3s, color 0.3s;
}

.main-navigation .sub-menu a:hover {
    background-color: #f8f9fa;
    color: #0073aa;
}

/* Dropdown Toggle Button */
.dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    margin-left: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 2px;
    transition: background-color 0.3s, transform 0.3s;
}

.dropdown-toggle:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.dropdown-toggle svg {
    width: 0.75rem;
    height: 0.75rem;
    transition: transform 0.3s ease;
}

.menu-item-has-children.dropdown-open .dropdown-toggle svg {
    transform: rotate(180deg);
}

/* Multi-level Dropdowns */
.main-navigation .sub-menu .menu-item-has-children .sub-menu {
    top: 0;
    left: 100%;
    margin-left: -1px;
}

/* Dropdown Indicator Styling */
.dropdown-indicator {
    margin-left: 0.5rem;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.dropdown-indicator svg {
    width: 0.75rem;
    height: 0.5rem;
}

.menu-item-has-children.dropdown-open .dropdown-indicator {
    transform: rotate(180deg);
}

/* Header Phone Button */
.header-phone {
    margin-left: 1rem;
}

.header-phone-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

.header-phone-button:hover {
    background-color: #005a87;
    transform: translateY(-1px);
}

.phone-icon {
    flex-shrink: 0;
}

.phone-number {
    white-space: nowrap;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s;
}

.hero-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Main Content */
.site-content {
    padding: 3rem 0;
    min-height: 500px;
}

.entry-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
}

/* Page Header for Blog and Archive Pages */
.page-header {
    margin-bottom: 3rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: bold;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin: 2rem 0 1rem;
    color: #333;
}

.entry-content p {
    margin-bottom: 1.5rem;
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 1.5rem 2rem;
}

.entry-content img {
    max-width: 100%;
    height: auto;
}

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: white;
    padding: 2rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-navigation ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.footer-navigation a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-navigation a:hover {
    opacity: 0.8;
}

.site-info {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* WordPress Core Styles */
.alignleft {
    float: left;
    margin-right: 1.5rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .menu-toggle {
        display: block;
    }
    
    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #e2e2e2;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        display: none;
    }
    
    .main-navigation.toggled {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }
    
    .main-navigation li {
        border-bottom: 1px solid #eee;
    }
    
    .main-navigation a {
        display: block;
        padding: 1rem 20px;
    }
    
    /* Mobile Dropdown Styles */
    .main-navigation .sub-menu {
        position: static;
        background-color: #f8f9fa;
        box-shadow: none;
        border-radius: 0;
        min-width: auto;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
        padding: 0;
        display: none !important;
        flex-direction: column;
        gap: 0;
    }
    
    .main-navigation .menu-item-has-children.dropdown-open .sub-menu {
        display: block !important;
    }
    
    .main-navigation .sub-menu li {
        display: block;
        width: 100%;
    }
    
    .main-navigation .sub-menu a {
        padding: 0.75rem 40px;
        border-bottom: 1px solid #eee;
        display: block;
        width: 100%;
    }
    
    .main-navigation .sub-menu .sub-menu a {
        padding-left: 60px;
    }
}

/* Blog Page Card Styles (Victoria Blog Box Style) */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-post-card {
    width: 100%;
    height: 300px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-align: left;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.blog-post-card .post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #6c757d;
}

.blog-post-card .post-date {
    font-weight: 500;
}

.blog-post-card .post-author {
    font-style: italic;
}

.blog-post-card .post-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-card .post-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-card .post-title a:hover {
    color: #275fd2;
}

.blog-post-card .post-excerpt {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 15px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-post-card .read-more-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    margin-top: auto;
    transition: color 0.3s ease;
}

.blog-post-card .read-more-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Mobile optimization for blog cards */
@media (max-width: 1024px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .blog-post-card {
        height: auto;
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .blog-posts-grid {
        padding: 0 10px;
        gap: 15px;
    }
    
    .blog-post-card {
        padding: 15px;
        min-height: 220px;
    }
    
    .blog-post-card .post-title {
        font-size: 16px;
    }
    
    .blog-post-card .post-excerpt {
        font-size: 14px;
    }
    
    .dropdown-toggle {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }
    
    /* Mobile Header Phone */
    .header-phone {
        order: -1;
        margin: 0 0 1rem 0;
        width: 100%;
        text-align: center;
    }
}
    
    .header-phone-button {
        width: 100%;
        justify-content: center;
    }
    
    .header-inner {
        flex-wrap: wrap;
    }
    
    /* Mobile container styles */
    .header-nav-area {
        padding: 0.5rem 0;
        gap: 1rem;
    }
    
    /* Mobile Logo Styles */
    .header-logo-area {
        padding: 0.25rem 0;
    }
    
    .staircase-logo,
    .custom-logo {
        height: 32px;
        max-width: 180px;
    }
    
    /* Hero Section Mobile */
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    /* Content Mobile */
    .entry-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .entry-content {
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .site-content {
        padding: 2rem 0;
    }
}

/* Zaramax Custom Footer Styles */
.zaramax-footer {
    background-color: #2c3e50;
    color: white;
}

.zaramax-footer-main {
    padding: 3rem 0 2rem;
}

.footer-boxes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: start;
}

.footer-box {
    padding: 1rem;
}

/* Box 1 - Logo & Contact */
.footer-box-1 .footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-box-1 .footer-site-title h3 {
    margin: 0 0 1rem 0;
    color: white;
    font-size: 1.5rem;
}

.footer-box-1 .footer-blurb p {
    margin-bottom: 1rem;
    color: #ecf0f1;
    line-height: 1.6;
}

.footer-phone-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
    font-weight: 500;
}

.footer-phone-button:hover {
    background-color: #2980b9;
}

/* Boxes 2 & 3 - Custom HTML */
.footer-box-2,
.footer-box-3 {
    color: #ecf0f1;
}

.footer-box-2 h3,
.footer-box-2 h4,
.footer-box-3 h3,
.footer-box-3 h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-box-2 ul,
.footer-box-3 ul {
    list-style: none;
    padding: 0;
}

.footer-box-2 li,
.footer-box-3 li {
    margin-bottom: 0.5rem;
}

.footer-box-2 a,
.footer-box-3 a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-box-2 a:hover,
.footer-box-3 a:hover {
    color: #5dade2;
}

/* Box 4 - Google Maps */
.footer-box-4 .map-heading {
    margin: 0 0 1rem 0;
    color: white;
    font-size: 1.25rem;
}

.footer-map {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.footer-map iframe {
    display: block;
}

/* Footer Bottom Section */
.zaramax-footer-bottom {
    background-color: #1a252f;
    padding: 2rem 0;
    border-top: 1px solid #34495e;
}

.footer-bottom-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: left;
}

.footer-disclaimer,
.footer-legal-links {
    color: #bdc3c7;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-legal-links {
    white-space: pre-wrap;
    word-spacing: normal;
}

.footer-disclaimer h4,
.footer-legal-links h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-disclaimer a,
.footer-legal-links a {
    color: #3498db;
    text-decoration: none;
}

.footer-disclaimer a:hover,
.footer-legal-links a:hover {
    color: #5dade2;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .footer-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-boxes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .zaramax-footer-main {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-bottom-grid {
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-bottom-container {
        padding: 0 15px;
    }
    
    .footer-phone-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .zaramax-footer-main {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-box {
        padding: 0.5rem;
    }
    
    .footer-map {
        height: 150px;
    }
}

/* Silkweaver Menu Styles - Integrated with Staircase Theme */
.silkweaver-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.silkweaver-menu li {
    position: relative;
    margin-right: 30px;
}

.silkweaver-menu li:last-child {
    margin-right: 0;
}

.silkweaver-menu a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.3s ease;
    display: block;
    padding: 8px 0;
}

.silkweaver-menu a:hover {
    opacity: 0.7;
}

/* Dropdown Menu Styles */
.silkweaver-dropdown {
    position: relative;
}

.silkweaver-dropdown-toggle::after {
    content: "▼";
    font-size: 10px;
    margin-left: 5px;
    opacity: 0.7;
}

/* Parent button styling for dynamic menu items */
.silkweaver-parent-button {
    background: none;
    border: none;
    color: inherit;
    font-weight: 500;
    font-size: 16px;
    transition: opacity 0.3s ease;
    padding: 8px 0;
    cursor: pointer;
    font-family: inherit;
}

.silkweaver-parent-button:hover {
    opacity: 0.7;
}

.silkweaver-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    max-width: 320px;
    background: white;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-radius: 8px;
    list-style: none;
    margin: 0;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    border: 1px solid rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
}

.silkweaver-dropdown:hover .silkweaver-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.silkweaver-dropdown-menu li {
    margin: 0;
    width: 100%;
    display: block;
}

.silkweaver-dropdown-menu a {
    padding: 12px 20px;
    color: #2c3e50;
    font-weight: 500;
    font-size: 14px;
    border-bottom: 1px solid #f0f2f4;
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
}

.silkweaver-dropdown-menu li:last-child a {
    border-bottom: none;
}

.silkweaver-dropdown-menu a:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #1a252f;
    padding-left: 24px;
    opacity: 1;
    transform: translateX(2px);
}

/* Enhanced styling for pinned links */
.silkweaver-dropdown-menu li:first-child a {
    font-weight: 600;
    color: #0073aa;
    border-bottom: 2px solid #e3f2fd;
}

.silkweaver-dropdown-menu li:first-child a:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #005177;
}

/* Enhanced mobile responsive design */
@media (max-width: 768px) {
    .silkweaver-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .silkweaver-menu li {
        margin-right: 0;
        margin-bottom: 8px;
        width: 100%;
    }
    
    .silkweaver-dropdown {
        width: 100%;
    }
    
    .silkweaver-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
        background: #f8f9fa;
        margin-left: 15px;
        margin-top: 8px;
        border: 1px solid #e9ecef;
        border-radius: 6px;
        padding: 8px 0;
        min-width: auto;
        width: calc(100% - 15px);
    }
    
    .silkweaver-dropdown-toggle::after {
        content: "▼";
        transition: transform 0.3s ease;
    }
    
    .silkweaver-dropdown:hover .silkweaver-dropdown-toggle::after {
        transform: rotate(180deg);
    }
    
    .silkweaver-parent-button {
        width: 100%;
        text-align: left;
        padding: 12px 0;
        font-size: 16px;
    }
    
    .silkweaver-dropdown-menu a {
        padding: 8px 15px;
        font-size: 14px;
        border-bottom: 1px solid #e9ecef;
    }
    
    .silkweaver-dropdown-menu li:last-child a {
        border-bottom: none;
    }
}

/* Improved tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .silkweaver-menu {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .silkweaver-menu li {
        margin-right: 15px;
    }
    
    .silkweaver-dropdown-menu {
        min-width: 200px;
        left: 50%;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .silkweaver-dropdown:hover .silkweaver-dropdown-menu {
        transform: translateX(-50%) translateY(0);
    }
}

/* Serena FAQ Box Styles */
.serena-faq-box {
    width: 100%;
    background-color: #ffffff;
    border-top: 2px solid #cccccc;
    padding: 60px 0;
}

.serena-faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.serena-faq-title {
    font-size: 30px;
    font-weight: bold;
    color: #000000;
    margin: 0 0 15px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.serena-faq-star {
    color: #800000;
    margin-right: 8px;
    font-size: 28px;
}

.serena-faq-subtitle {
    font-size: 18px;
    font-weight: normal;
    color: #666666;
    margin: 0 0 40px 0;
    line-height: 1.4;
}

.serena-faq-accordion {
    text-align: left;
    max-width: 100%;
}

.serena-faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.serena-faq-question {
    width: 100%;
    background-color: #f8f9fa;
    border: none;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.serena-faq-question:hover {
    background-color: #e9ecef;
}

.serena-faq-question.active {
    background-color: #007bff;
    color: white;
}

.serena-faq-icon {
    font-size: 20px;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}

.serena-faq-answer {
    display: none;
    padding: 25px;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.serena-faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
}

/* Mobile optimization for Serena FAQ Box */
@media (max-width: 768px) {
    .serena-faq-box {
        padding: 40px 0;
    }
    
    .serena-faq-container {
        padding: 0 15px;
    }
    
    .serena-faq-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .serena-faq-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .serena-faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }
    
    .serena-faq-answer {
        padding: 20px;
    }
    
    .serena-faq-answer p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .serena-faq-box {
        padding: 30px 0;
    }
    
    .serena-faq-container {
        padding: 0 10px;
    }
    
    .serena-faq-title {
        font-size: 24px;
    }
    
    .serena-faq-subtitle {
        font-size: 15px;
    }
    
    .serena-faq-question {
        padding: 15px 18px;
        font-size: 14px;
    }
    
    .serena-faq-answer {
        padding: 18px;
    }
    
    .serena-faq-icon {
        font-size: 18px;
    }
}

/* Nile Map Box Styles */
.nile-map-box {
    width: 100%;
    margin: 0;
    padding: 0;
}

.nile-map-box .map-header {
    background-color: #f8f9fa;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #e9ecef;
}

.nile-map-box .map-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #2c3e50;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.nile-map-pin {
    color: #e74c3c;
    margin-right: 8px;
    font-size: 18px;
}

.nile-map-box .map-embed-container {
    width: 100%;
    height: 275px;
    position: relative;
    overflow: hidden;
}

.nile-map-box .map-embed-container iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Mobile optimization for Nile Map Box */
@media (max-width: 768px) {
    .nile-map-box .map-header {
        height: 50px;
    }
    
    .nile-map-box .map-header h3 {
        font-size: 14px;
        padding: 0 15px;
        text-align: center;
    }
    
    .nile-map-box .map-embed-container {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .nile-map-box .map-embed-container {
        height: 200px;
    }
}

/* Kristina CTA Box Styles */
.kristina-cta-box {
    width: 100%;
    height: 385px;
    background: #414449;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.kristina-cta-container {
    max-width: 800px;
    text-align: center;
    color: white;
}

.kristina-cta-heading {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.3;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.kristina-cta-subtext {
    font-size: 18px;
    font-weight: normal;
    color: white;
    margin: 0 0 30px 0;
    line-height: 1.4;
    opacity: 0.95;
}

.kristina-cta-button {
    display: inline-block;
    background-color: #315acd;
    color: #ffffff;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.kristina-cta-button:hover {
    background-color: #2647a6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

/* Mobile optimization for Kristina CTA Box */
@media (max-width: 768px) {
    .kristina-cta-box {
        height: auto;
        min-height: 300px;
        padding: 60px 20px;
    }
    
    .kristina-cta-heading {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .kristina-cta-subtext {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .kristina-cta-button {
        padding: 12px 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .kristina-cta-box {
        min-height: 280px;
        padding: 50px 15px;
    }
    
    .kristina-cta-heading {
        font-size: 18px;
    }
    
    .kristina-cta-subtext {
        font-size: 15px;
    }
    
    .kristina-cta-button {
        padding: 10px 30px;
        font-size: 15px;
    }
}

/* Victoria Blog Box Styles */
.victoria-blog-box {
    width: 100%;
    padding: 60px 20px;
    background-color: #ffffff;
}

.victoria-blog-box .blog-box-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.victoria-blog-box h2 {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
    margin: 0 0 10px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.victoria-blog-box .blog-box-subtitle {
    font-size: 20px;
    font-weight: normal;
    color: #6c757d;
    margin: 0 0 40px 0;
}

.victoria-blog-box .blog-posts-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: nowrap;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.victoria-blog-box .blog-post-card {
    flex: 1;
    max-width: 400px;
    height: 300px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.victoria-blog-box .blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.victoria-blog-box .post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #6c757d;
}

.victoria-blog-box .post-date {
    font-weight: 500;
}

.victoria-blog-box .post-author {
    font-style: italic;
}

.victoria-blog-box .post-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 15px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.victoria-blog-box .post-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.victoria-blog-box .post-title a:hover {
    color: #275fd2;
}

.victoria-blog-box .post-excerpt {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: auto;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.victoria-blog-box .read-more-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    margin-top: 15px;
    display: inline-block;
    transition: color 0.3s ease;
}

.victoria-blog-box .read-more-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

.victoria-blog-box .blog-button-container {
    margin-top: 40px;
}

.victoria-blog-box .go-to-blog-btn {
    display: inline-block;
    background-color: #007bff;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.victoria-blog-box .go-to-blog-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.victoria-blog-box .no-posts-message {
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    color: #6c757d;
    font-size: 16px;
}

/* Mobile optimization for Victoria Blog Box */
@media (max-width: 1200px) {
    .victoria-blog-box .blog-posts-grid {
        gap: 20px;
        padding: 0 20px;
    }
    
    .victoria-blog-box .blog-post-card {
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .victoria-blog-box {
        padding: 40px 15px;
    }
    
    .victoria-blog-box h2 {
        font-size: 20px;
    }
    
    .victoria-blog-box .blog-box-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .victoria-blog-box .blog-posts-grid {
        flex-direction: column;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .victoria-blog-box .blog-post-card {
        flex: none;
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 280px;
    }
    
    .victoria-blog-box .post-title {
        font-size: 16px;
    }
    
    .victoria-blog-box .post-excerpt {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .victoria-blog-box h2 {
        font-size: 18px;
    }
    
    .victoria-blog-box .blog-box-subtitle {
        font-size: 16px;
    }
    
    .victoria-blog-box .blog-post-card {
        padding: 20px;
    }
    
    .victoria-blog-box .go-to-blog-btn {
        padding: 10px 24px;
        font-size: 15px;
    }
}

/* Batman Hero Button Styles */
.cherry-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0 0 30px 0;
    flex-wrap: wrap;
}

.batman-hero-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease;
    min-width: 180px;
    text-align: center;
    background: #3f72d7 !important;
    color: white !important;
    opacity: 1 !important;
    filter: none !important;
    box-shadow: none !important;
}

.batman-hero-button-left {
    background: #3f72d7 !important;
    color: white !important;
    border: none !important;
    opacity: 1 !important;
    filter: none !important;
}

.batman-hero-button-left:hover {
    background: #2d5cbf !important;
    color: white !important;
    border: none !important;
    opacity: 1 !important;
    filter: none !important;
}

.batman-hero-button-right {
    background: #3f72d7 !important;
    color: white !important;
    border: 2px solid #3f72d7;
    opacity: 1 !important;
    filter: none !important;
}

.batman-hero-button-right:hover {
    background: #2d5cbf !important;
    color: white !important;
    border-color: #2d5cbf;
    opacity: 1 !important;
    filter: none !important;
}

.batman-hero-button-disabled {
    background: #3f72d7 !important;
    color: white !important;
    border: 2px solid #3f72d7;
    cursor: default;
    pointer-events: none;
    opacity: 1 !important;
    filter: none !important;
}

/* Mobile responsive for batman hero buttons */
@media (max-width: 768px) {
    .cherry-buttons-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .batman-hero-button {
        min-width: 250px;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .zaramax-footer,
    .menu-toggle {
        display: none;
    }
    
    .site-content {
        padding: 0;
    }
}