/*
Theme Name: Corporate
Theme URI: https://example.com/corporate
Author: Your Name
Author URI: https://example.com
Description: A professional corporate WordPress theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: corporate
Tags: corporate, business, professional, custom
*/

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

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

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

/* Header Styles */
header {
    background: #2c3e50;
    color: white;
    padding: 1rem 0;
}

header h1 {
    margin: 0;
}

header a {
    color: white;
    text-decoration: none;
}

.site-header {
    background: #0a0f1f;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
}

.desktop-nav .site-logo {
    order: 2;
}

.desktop-nav .site-logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.desktop-nav .site-logo a:hover {
    color: #3498db;
}

.desktop-nav .nav-left {
    order: 1;
}

.desktop-nav .nav-right {
    order: 3;
}

.desktop-nav .nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-menu li a {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.desktop-nav .nav-menu li a:hover {
    color: #3498db;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    width: 100%;
    position: relative;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
}

.mobile-nav .site-logo {
    padding: 0;
    display: flex;
    align-items: center;
}

.mobile-nav .site-logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: block;
}

.nav-menu a:hover {
    color: white;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #3498db;
}

/* Mobile Menu */
.mobile-menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0a0f1f;
    height: 100vh;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    width: 100%;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-wrapper.active {
    transform: translateX(0);
}

.mobile-menu-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.mobile-menu-logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.mobile-menu {
    list-style: none;
    padding: 2rem;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 1.5rem;
}

.mobile-menu li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.mobile-menu li a:hover {
    color: #3498db;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .main-nav.menu-open .nav-wrapper {
        transform: translateX(0);
    }
    
    .nav-left,
    .nav-right {
        position: static !important;
        transform: none !important;
        width: 100%;
        display: flex !important;
        flex-direction: column;
    }
    
    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 0;
        background: #0a0f1f;
        padding: 0;
        width: 100%;
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        padding: 1rem 1.5rem;
        font-size: 16px;
        letter-spacing: 2px;
        width: 100%;
        text-align: center;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }
}

/* Main Content */
main {
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
}

article {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

article:last-child {
    border-bottom: none;
}

article h2 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

article .entry-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

article .entry-content {
    line-height: 1.8;
}

/* Footer */
footer {
    background: #34495e;
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 2rem;
}

.site-footer {
    background: #0a0f1f;
    color: #a8b2c1;
    padding: 4rem 0 2rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
    text-align: left;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: #a8b2c1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: #7a8594;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn:hover {
    background: #2980b9;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a1a2e" width="1200" height="600"/><circle cx="200" cy="100" r="3" fill="%23ffffff" opacity="0.1"/><circle cx="400" cy="200" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="800" cy="150" r="3" fill="%23ffffff" opacity="0.1"/><circle cx="1000" cy="300" r="2" fill="%23ffffff" opacity="0.1"/></svg>');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 4rem 0;
    text-align: center;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 3px;
    color: #3498db;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-tertiary {
    background: transparent !important;
    color: var(--hero-button-text, white) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-tertiary:hover {
    background: var(--hero-button-hover-bg, rgba(255, 255, 255, 0.1)) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
}

/* Services Section */
.services-section {
    padding: 5rem 0;
    /* background: #f8f9fa; */
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 0.85rem;
    color: #7f8c8d;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

a.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    cursor: pointer;
}

div.service-card {
    cursor: default;
}

.service-card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.service-card-overlay {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
}

.service-card-overlay h3 {
    color: white;
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* About Section */
.about-section {
    padding: 5rem 0;
    /* background: white; */
}

/* Product Section */
.product-section {
    padding: 5rem 0;
    /* background: #f8f9fa; */
}

.products-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem 1rem;
}

/* Reverse layout for second product - Desktop only */
@media (min-width: 769px) {
    .product-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        padding: 3rem;
    }
    
    .product-showcase.reverse .product-image {
        order: 2;
    }

    .product-showcase.reverse .product-details {
        order: 1;
    }
}

.product-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    width: 100%;
    height: 400px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-details {
    padding: 1rem;
}

.product-name {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-description {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.spec-item {
    display: flex;
    flex-direction: column;
}

.spec-label {
    font-size: 0.75rem;
    color: #7f8c8d;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.spec-value {
    font-size: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.post-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.post-card-content {
    padding: 1.5rem;
}

.post-card-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
}

.post-card-content h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.post-card-content h3 a:hover {
    color: #3498db;
}

.post-card-content p {
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .product-specs {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* Single Product Page Styles */
.product-single {
    padding: 3rem 0;
    background: #f8f9fa;
}

.breadcrumbs {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.breadcrumbs a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: #2c3e50;
}

.product-details-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-image-section {
    position: relative;
}

.product-gallery {
    position: relative;
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #1a1d2e;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.product-main-image {
    background: #e9ecef;
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-main-image:hover {
    transform: scale(1.02);
}

.product-main-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.product-thumbnails {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.thumbnail-item {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: block;
}

.thumbnail-item:hover {
    border-color: #3498db;
    transform: scale(1.05);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-placeholder {
    color: #6c757d;
    font-size: 1.1rem;
}

.product-category {
    font-size: 0.85rem;
    color: #6c757d;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.product-description {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.specs-heading {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.spec-box {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-label {
    font-size: 0.75rem;
    color: #6c757d;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.spec-value {
    font-size: 1.05rem;
    color: #2c3e50;
    font-weight: 600;
}

.specs-note {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-dark {
    background: #1a1d2e;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-dark:hover {
    background: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: white;
}

.product-tabs {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tab-nav {
    display: flex;
    border-bottom: 1px solid #e9ecef;
}

.tab-button {
    flex: 1;
    padding: 1.25rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
    font-weight: 600;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button:hover {
    color: #2c3e50;
    background: #f8f9fa;
}

.tab-button.active {
    color: #2c3e50;
    border-bottom-color: #2c3e50;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-inner {
    padding: 2rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table th,
.specs-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.specs-table th {
    font-weight: 600;
    color: #2c3e50;
    width: 30%;
}

.specs-table td {
    color: #5a6c7d;
}

@media (max-width: 768px) {
    .product-details-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-specs-grid {
        grid-template-columns: 1fr;
    }
    
    .product-title {
        font-size: 1.8rem;
    }
}

/* Products Archive Page Styles */
.products-archive {
    padding: 4rem 0;
    background: #f0f2f5;
    min-height: calc(100vh - 200px);
}

.products-header {
    text-align: left;
    margin-bottom: 3rem;
}

.products-title {
    font-size: 3rem;
    color: #1a1d2e;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.products-subtitle {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.6;
    max-width: 800px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.product-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #1a1d2e;
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    letter-spacing: 0.5px;
}

.product-card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.08);
}

.product-card-placeholder {
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-category {
    font-size: 0.75rem;
    color: #6c757d;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.product-card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-card-title a {
    color: #1a1d2e;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.product-card-title a:hover {
    color: #667eea;
}

.product-card-excerpt {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.product-card-link {
    color: #1a1d2e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.product-card-link:hover {
    color: #667eea;
    transform: translateX(4px);
}

.products-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.products-pagination .nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.products-pagination a,
.products-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: white;
    border-radius: 8px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.products-pagination a:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.products-pagination .current {
    background: #2c3e50;
    color: white;
}

.no-products {
    text-align: center;
    padding: 4rem 2rem;
    color: #6c757d;
    font-size: 1.1rem;
}

/* Different gradient backgrounds for variety */
.product-card:nth-child(3n+1) .product-card-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-card:nth-child(3n+2) .product-card-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.product-card:nth-child(3n+3) .product-card-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.product-card:nth-child(6n+4) .product-card-image {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.product-card:nth-child(6n+5) .product-card-image {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.product-card:nth-child(6n+6) .product-card-image {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .products-archive {
        padding: 2rem 0;
    }
    
    .products-title {
        font-size: 2rem;
    }
    
    .products-subtitle {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-card-image {
        height: 220px;
    }
}

/* Contact Page Styles */
.page-hero {
    background: linear-gradient(135deg, #1a1d2e 0%, #2c3e50 100%);
    padding: 3rem 0 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero.has-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.page-hero.has-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 29, 46, 0.75);
    z-index: 0;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="rgba(255,255,255,0.02)"/></svg>');
    opacity: 0.1;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.contact-content {
    padding: 4rem 0;
    background: #f8f9fa;
}

.page-content {
    /* background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    max-width: 800px; */
    margin: 0 auto;
}

.page-content p {
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.page-content h3 {
    color: #2c3e50;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content strong {
    color: #2c3e50;
    font-weight: 600;
}

.page-content a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-content a:hover {
    color: #2980b9;
}

.page-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.page-content ul li {
    margin-bottom: 0.5rem;
}

/* About Page Styles */
.about-page-wrapper {
    padding: 3rem 0 5rem;
    background: #f8f9fa;
}

.about-page-wrapper > .container {
    max-width: 64rem;
}

.about-page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin: 0 0 2rem 0;
    padding: 0 1.5rem;
}

.about-page-content {
    max-width: 64rem;
    margin: 0 auto;
}

/* Card Box Component */
.card-box {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    max-width: 64rem;
}

/* Service Card Styles */
.service-badge {
    display: inline-block;
    color: #3498db;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-card-title {
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card-description {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.service-features-list {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.service-features-list li {
    color: #475569;
    line-height: 1.75;
    margin-bottom: 0.5rem;
}

.services-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.services-cards-grid .card-box {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Override WordPress block group centering */
.wp-block-group.services-cards-grid,
.wp-block-group.card-box {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.my-10 {
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.about-intro {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    max-width: 64rem;
    margin: 0 auto 2rem;
}

.section-label {
    color: #3498db;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-intro h2 {
    color: #0f172a;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.about-intro p {
    color: #475569;
    line-height: 1.75;
    margin-top: 1rem;
}

.stats-section {
    max-width: 64rem;
    margin: 0 auto 2rem;
}

.stats-grid.wp-block-columns {
    display: flex !important;
    flex-wrap: nowrap;
    gap: 1.5rem;
    margin: 0 auto 2rem;
}

.stats-grid .wp-block-column {
    flex: 1;
    margin: 0;
}

.stat-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.stat-number {
    color: #0f172a;
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.stat-label {
    color: #3498db;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0.5rem 0 0 0;
}

.stat-description {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0.75rem 0 0 0;
}

.experience-section {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f5f9;
    max-width: 64rem;
    margin: 0 auto;
}

.experience-section h2 {
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0;
}

.experience-section p {
    color: #475569;
    line-height: 1.75;
    margin-top: 0;
}

/* 404 Error Page Styles */
.error-404-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    padding: 4rem 1.5rem;
}

.error-404-content {
    text-align: center;
    max-width: 600px;
}

.error-404-icon {
    margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
}

/* Robot Illustration */
.robot-illustration {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.robot-wrapper {
    position: relative;
}

.robot-character {
    position: relative;
    height: 8rem;
    width: 8rem;
}

.robot-head {
    position: absolute;
    left: 50%;
    top: 1rem;
    height: 4rem;
    width: 4rem;
    transform: translateX(-50%);
    border-radius: 50%;
    border: 4px solid #1e293b;
    background: #f1f5f9;
}

.robot-eye {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 0.5rem;
    width: 0.5rem;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: #1e293b;
}

.robot-body {
    position: absolute;
    left: 50%;
    top: 4rem;
    height: 3rem;
    width: 2.5rem;
    transform: translateX(-50%);
    border-radius: 0.5rem;
    border: 4px solid #1e293b;
    background: #e2e8f0;
}

.robot-arm {
    position: absolute;
    top: 5rem;
    height: 0.5rem;
    width: 2rem;
    border-radius: 9999px;
    border: 2px solid #1e293b;
    background: #e2e8f0;
}

.robot-arm-left {
    left: 0.5rem;
    transform: rotate(45deg);
}

.robot-arm-right {
    right: 0.5rem;
    transform: rotate(-45deg);
}

.robot-leg {
    position: absolute;
    bottom: 0;
    height: 2rem;
    width: 0.75rem;
    border-radius: 9999px;
    border: 2px solid #1e293b;
    background: #e2e8f0;
}

.robot-leg-left {
    left: 1.5rem;
}

.robot-leg-right {
    right: 1.5rem;
}

/* Decorative elements */
.deco-dot {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
}

.deco-dot-1 {
    top: 0;
    right: -3rem;
    height: 0.75rem;
    width: 0.75rem;
}

.deco-dot-2 {
    top: 2rem;
    left: -2rem;
    height: 0.375rem;
    width: 0.375rem;
}

.deco-plus {
    position: absolute;
    color: #cbd5e1;
    font-size: 1rem;
}

.deco-plus-1 {
    bottom: 1rem;
    right: -1.5rem;
}

.deco-plus-2 {
    bottom: 0;
    left: -3rem;
}

/* Emoji Dash */
.emoji-dash {
    position: relative;
    height: 6rem;
    width: 6rem;
}

.emoji-circle {
    position: relative;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 4px solid #1e293b;
    background: #f1f5f9;
}

.emoji-line {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 0.25rem;
    width: 4rem;
    transform: translate(-50%, -50%);
    border-top: 4px solid #1e293b;
    border-bottom: 4px solid #1e293b;
}

.emoji-dot {
    position: absolute;
    border-radius: 50%;
    background: #1e293b;
}

.emoji-dot-1 {
    right: 1rem;
    top: 1rem;
    height: 0.5rem;
    width: 0.5rem;
}

.emoji-dot-2 {
    left: 1.5rem;
    bottom: 1.5rem;
    height: 0.375rem;
    width: 0.375rem;
}

.error-404-title {
    font-size: 6rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 1rem 0;
    line-height: 1;
    letter-spacing: -0.02em;
}

.error-404-heading {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 1.5rem 0;
}

.error-404-text {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 2.5rem 0;
}

.error-404-button {
    display: inline-block;
    background: #1e293b;
    color: white;
    padding: 1rem 3rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.error-404-button:hover {
    background: #334155;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #7a8594;
    margin-bottom: 2rem;
}

.contact-form-box {
    background: #f0f2f5;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    margin-top: 2rem;
}

.contact-form-box h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-form-box .wp-block-button__link {
    background: #3498db;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
}

.contact-form-box .wp-block-button__link:hover {
    background: #2980b9;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-hero {
        padding: 2rem 0 1.5rem;
    }
    
    .page-content,
    .contact-form-box {
        padding: 2rem;
    }
    
    .contact-content {
        padding: 2rem 0;
    }
    
    .page-hero.has-background {
        min-height: 250px;
    }
    
    .about-page-wrapper {
        padding: 2rem 0;
    }
    
    .about-page-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .error-404-page {
        padding: 3rem 1rem;
        min-height: 60vh;
    }
    
    .error-404-title {
        font-size: 4rem;
    }
    
    .error-404-heading {
        font-size: 1.5rem;
    }
    
    .error-404-text {
        font-size: 0.9375rem;
    }
    
    .error-404-button {
        padding: 0.875rem 2.5rem;
        font-size: 0.8125rem;
    }
    
    .about-content {
        padding: 2rem 0;
    }
    
    .about-intro,
    .experience-section {
        padding: 2rem;
    }
    
    .stats-grid.wp-block-columns {
        flex-wrap: wrap;
    }
    
    .stats-grid .wp-block-column {
        flex: 0 0 100%;
        margin-bottom: 1rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-intro h2,
    .experience-section h2 {
        font-size: 1.5rem;
    }
}

/* Contact Form Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.contact-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 560px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-content h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-form-container .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-form-container label {
    display: flex;
    flex-direction: column;
    color: #5a6c7d;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.modal-form-container input[type="text"],
.modal-form-container input[type="email"],
.modal-form-container textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    transition: border-color 0.3s ease;
}

.modal-form-container input:focus,
.modal-form-container textarea:focus {
    outline: none;
    border-color: #3498db;
}

.modal-form-container textarea {
    min-height: 120px;
    resize: vertical;
}

.privacy-notice {
    font-size: 0.8rem;
    color: #7a8594;
    text-align: center;
    margin: 0.5rem 0;
}

.privacy-notice a {
    color: #3498db;
    text-decoration: underline;
}

.modal-form-container input[type="submit"] {
    background: #1a1d2e;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 0.5px;
}

.modal-form-container input[type="submit"]:hover {
    background: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.wpcf7-response-output {
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0 0;
    text-align: center;
}

@media (max-width: 640px) {
    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }
}

/* Contact Form Modal Styles */
.contact-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.contact-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 560px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f5f5f5;
    color: #333;
}

.modal-content h2 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-form-container .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-form-container label {
    display: flex;
    flex-direction: column;
    color: #5a6c7d;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.modal-form-container input[type="text"],
.modal-form-container input[type="email"],
.modal-form-container textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    transition: border-color 0.3s ease;
}

.modal-form-container input:focus,
.modal-form-container textarea:focus {
    outline: none;
    border-color: #3498db;
}

.modal-form-container textarea {
    min-height: 120px;
    resize: vertical;
}

.privacy-notice {
    font-size: 0.8rem;
    color: #7a8594;
    text-align: center;
    margin: 0.5rem 0;
}

.privacy-notice a {
    color: #3498db;
    text-decoration: underline;
}

.modal-form-container input[type="submit"] {
    background: #1a1d2e;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 0.5px;
}

.modal-form-container input[type="submit"]:hover {
    background: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.wpcf7-response-output {
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0 0;
    text-align: center;
}

@media (max-width: 640px) {
    .modal-content {
        padding: 1.5rem;
        width: 95%;
    }
}

/* Contact Form on Contact Page */
.contact-form-section {
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 2.25rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-description {
    color: #7a8594;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,.08);
}

.contact-form-wrapper .wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    text-align: left;
}

.contact-form-wrapper label {
    display: flex;
    flex-direction: column;
    color: #5a6c7d;
    font-size: .95rem;
    font-weight: 500;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper textarea {
    width: 100%;
    padding: .95rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: .95rem;
    margin-top: .5rem;
    transition: border-color .3s;
    font-family: inherit;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52,152,219,.1);
}

.contact-form-wrapper textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form-wrapper .privacy-notice {
    font-size: .85rem;
    color: #7a8594;
    text-align: center;
    margin: .5rem 0;
}

.contact-form-wrapper input[type="submit"] {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    margin-top: .5rem;
}

.contact-form-wrapper input[type="submit"]:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52,152,219,.3);
}

.contact-form-wrapper .wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: .8rem;
    margin-top: .35rem;
}

.contact-form-wrapper .wpcf7-response-output {
    border-radius: 8px;
    padding: 1rem;
    margin: 1.5rem 0 0;
    text-align: center;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 1.75rem;
    }
    
    .contact-form-section h2 {
        font-size: 1.75rem;
    }
}

/* Contact CTA Button */
.contact-cta {
    margin: 3rem auto 0;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
}

.contact-cta h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-cta p {
    color: #7a8594;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-contact {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 1.1rem 3rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s;
    display: inline-block;
}

.btn-contact:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52,152,219,.3);
}

/* Floating Contact Button */
.floating-contact-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    height: 3.5rem;
    width: 3.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #0f172a;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.floating-contact-btn:hover {
    background-color: #1e293b;
}

.floating-contact-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.2);
}

.floating-contact-btn svg {
    height: 1.5rem;
    width: 1.5rem;
}

/* Hero Slideshow */
.hero.has-slideshow {
    background-image: none !important;
    position: relative;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}
