:root {
    --primary-color: #252428;
    --secondary-color: #f4f7fa;
    --accent-color: #ce0606;
    --text-color: #3D5A6A;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #343a40;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main {
        max-width: 100% !important;
}
}

@media (min-width: 992px) {
    .page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main {
        max-width: 100% !important;
    }
}

@media (min-width: 768px) {
    .page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main {
        max-width: 100% !important;
    }
}

@media (min-width: 576px) {
    .page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main {
        max-width: 100% !important;
    }
}


body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: var(--primary-color);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 200px;
    margin-bottom: 20px;
}

.preloader-line {
    display: block;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    margin-top: 10px;
    animation: lineGrow 1.5s ease infinite;
}

@keyframes lineGrow {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

/* Navigation */
.theme-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    z-index: 1000;
    padding: 15px 0;
}

.theme-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--accent-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-primary-c {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--accent-color);
}

.btn-primary-c:hover {
    background: transparent;
    color: var(--accent-color);
}
.btn-secondary-c{
    display: inline-block;
    padding: 12px 30px;
    background:var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.btn-secondary-c:hover {
    background: transparent;
    color: var(--primary-color);
}
    

.btn-outline-c {
    display: inline-block;
    padding: 12px 30px !important;
    background: transparent;
    color: var(--primary-color) !important;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color) !important;
}

.btn-outline-c:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}



/* Hero Section */
.theme-hero {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    background-image: url('../images/landing-hero.webp');
    background-size: cover;
    background-position: top;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--accent-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    pointer-events: none;
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}

.hero-title em {
    color: var(--accent-color);
    font-style: normal;
    display: block;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-item img{
    width: 60px;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.hero-visual {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.visual-card {
    position: absolute;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    transition: all 0.5s ease;
    border: 3px solid var(--white);
    width: 280px;
    cursor: pointer;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.05) !important;
    box-shadow: 0 40px 80px rgba(206,6,6,0.4);
    z-index: 10;
    border-color: var(--accent-color);
}

.card-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    z-index: 5;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.card-center:hover {
    transform: translate(-50%, -60%) scale(1.05) !important;
}

.card-left {
    top: 30%;
    left: 0;
    transform: translateX(-30%) rotate(-5deg);
    z-index: 3;
    opacity: 0.9;
    filter: brightness(0.9);
}

.card-left:hover {
    transform: translateX(-20%) rotate(-3deg) scale(1.1) !important;
}

.card-right {
    top: 40%;
    right: 0;
    transform: translateX(30%) rotate(5deg);
    z-index: 4;
    opacity: 0.9;
    filter: brightness(0.9);
}

.card-right:hover {
    transform: translateX(20%) rotate(3deg) scale(1.1) !important;
}

.visual-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.visual-card-content {
    padding: 15px;
    background: var(--white);
}

.visual-card-content h4 {
    margin: 0;
    font-size: 16px;
}

.visual-card-content p {
    margin: 5px 0 0;
    font-size: 12px;
    color: var(--accent-color);
}

/* Home Pages Showcase */
.home-showcase {
    padding: 100px 0;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.home-item {
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    position: relative;
}

.home-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(206,6,6,0.2);
}
.home-item a{
    text-decoration: none !important;
}

.home-preview-page img{
    width: 100%;
    height: auto;
}

.home-preview {
    height: 87%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.home-preview::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    z-index: 1;
}

.preview-lines {
    position: absolute;
    top: 50px;
    left: 40px;
    right: 40px;
    z-index: 2;
}

.preview-line {
    height: 10px;
    background: rgba(255,255,255,0.2);
    margin-bottom: 15px;
    border-radius: 5px;
}

.preview-line:nth-child(1) { width: 70%; }
.preview-line:nth-child(2) { width: 90%; }
.preview-line:nth-child(3) { width: 50%; }

.preview-circle {
    position: absolute;
    bottom: 50px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    z-index: 2;
}

.coming-soon {
    position: relative;
}

.coming-soon .home-preview {
    filter: grayscale(1);
    opacity: 0.7;
}

.coming-soon-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.home-content {
    padding: 20px;
    text-align: center;
}

.home-content h3 {
    margin: 0 0 5px;
    font-size: 20px;
}

.home-content p {
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--secondary-color);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    display: inline-block;
    padding: 5px 15px;
    background: var(--white);
    color: var(--accent-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.section-title em {
    color: var(--accent-color);
    font-style: normal;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transition: var(--transition);
    opacity: 0;
    z-index: 1;
}

.feature-card:hover::before {
    height: 100%;
    opacity: 1;
}

.feature-card:hover * {
    color: var(--white);
    position: relative;
    z-index: 2;
}
.feature-card:hover .feature-icon i{
    color: var(--accent-color) !important;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--accent-color);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--white);
    color: var(--accent-color);
    transform: rotateY(360deg);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

/* Header Styles Showcase */
.header-showcase {
    padding: 100px 0;
    background: var(--white);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.showcase-item {
    background: var(--secondary-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(206,6,6,0.1);
}

.showcase-preview {
    height: 100px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.preview-header{
    object-fit: contain;
    width: 100%;
    height: auto;
}

.preview-logo {
    height: 40px;
    width: auto;
}

.preview-menu {
    display: flex;
    gap: 20px;
}

.preview-menu span {
    width: 60px;
    height: 10px;
    background: rgba(0,0,0,0.1);
    border-radius: 5px;
}

.showcase-content {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.showcase-content h4 {
    margin: 0;
    font-size: 18px;
}

.showcase-tag {
    padding: 3px 10px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 12px;
}

.style-1 { background: var(--white); }
.style-2 { background: var(--primary-color); }
.style-2 .preview-menu span { background: rgba(255,255,255,0.2); }
.style-3 { background: transparent; border: 2px solid var(--primary-color); }
.style-4 { background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); }

/* Footer Styles Showcase */
.footer-showcase {
    padding: 100px 0;
    background: var(--secondary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.footer-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.footer-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(206,6,6,0.1);
}

.footer-preview {
    height: 250px;
    padding: 30px;
    position: relative;
}

.footer-preview-1 {
    background: var(--primary-color);
}

.footer-preview-2 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.footer-preview-3 {
    background: var(--dark-gray);
}

.footer-preview-content {
    color: var(--white);
}

.footer-logo {
    width: 120px;
    height: 30px;
    background: rgba(255,255,255,0.2);
    margin-bottom: 20px;
}

.footer-text {
    height: 60px;
    margin-bottom: 20px;
}

.footer-text span {
    display: block;
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.1);
    margin-bottom: 8px;
    border-radius: 4px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social span {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.footer-content {
    padding: 20px;
    background: var(--white);
    text-align: center;
}

.footer-content h4 {
    margin: 0 0 5px;
    font-size: 16px;
}

.footer-content p {
    margin: 0;
    font-size: 12px;
    color: var(--accent-color);
}

/* Inner Pages Showcase */
.pages-showcase {
    padding: 100px 0;
    background: var(--secondary-color);
}

.pages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.page-item {
    background: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.page-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(206,6,6,0.1);
}

.page-preview-image img{
    width: 100%;
    height: auto;
}

.page-preview {
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.page-preview::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    z-index: 1;
}

.page-preview-lines {
    position: absolute;
    top: 40px;
    left: 30px;
    right: 30px;
    z-index: 2;
}

.page-preview-line {
    height: 6px;
    background: rgba(255,255,255,0.2);
    margin-bottom: 10px;
    border-radius: 3px;
}

.page-preview-line:nth-child(1) { width: 60%; }
.page-preview-line:nth-child(2) { width: 80%; }
.page-preview-line:nth-child(3) { width: 40%; }

.page-content {
    padding: 15px;
    text-align: center;
}

.page-content h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

/* Booking System Showcase */
.booking-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.booking-header {
    text-align: center;
    margin-bottom: 60px;
}

.booking-header h2 {
    color: var(--white);
    font-size: 42px;
    margin-bottom: 20px;
}

.booking-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.booking-steps-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.step-image-card {
    width: 220px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.step-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.step-image {
    height: 150px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-content {
    padding: 20px;
    text-align: center;
}

.step-number-badge {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    line-height: 30px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-content h4 {
    margin: 0 0 5px;
    font-size: 18px;
    color: var(--primary-color);
}

.step-content p {
    margin: 0;
    font-size: 12px;
    color: var(--text-color);
}

.step-arrow {
    font-size: 30px;
    color: var(--white);
    opacity: 0.7;
}

.booking-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.booking-feature {
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    text-align: center;
}

.booking-feature:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
}

.booking-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-color);
    margin: 0 auto 20px;
}

.booking-feature h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 20px;
}

.booking-feature p {
    opacity: 0.9;
    margin: 0;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--dark-gray);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-section .btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: var(--accent-color);
}

.cta-section .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--dark-gray);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .home-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .booking-steps-visual {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .booking-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .home-grid {
        grid-template-columns: 1fr;
    }
    
    .pages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-features {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .card-left, .card-right {
        display: none;
    }
    
    .card-center {
        width: 280px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-outline-c,
    .btn-secondary-c,
    .btn-primary-c{
        padding: 6px 15px !important;
    }
    
    .theme-nav .container{
        flex-direction: column;
    }
    .logo img{
        margin-bottom: 5px;
    }
}

/* WordPress specific styles */
.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 14px;
    color: var(--text-color);
}

.gallery-caption {
    font-size: 14px;
}

.alignright {
    float: right;
    margin: 0 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 0 20px 20px 0;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

.bypostauthor {
    background: var(--secondary-color);
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}