/*
Theme Name: Business Garden Klagenfurt
Theme URI: https://www.webtaculos.com
Description: Business Garden Klagenfurt Theme
Author: Alex Burdulea
Author URI: https://www.webtaculos.com
Version: 1.0.0
*/
/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #fff;
  text-align: center;
  max-width: 100%;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 12px;
  line-height: 18px;
  margin: 0;
  padding: 5px 4px 5px;
}

/* Text meant only for screen readers. */
.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 !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
:root {
    --primary-red: #9C0103;
    --secondary-color: #9C0103;
    --dark-bg: #1a1a1a;
    --text-dark: #333;
    --text-light: #666;
    --border-light: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

body.modal-open {
    overflow: hidden;
}

/* Header */
header {
    background-color: var(--dark-bg);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.logo {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
}
.logo img{
  width: 120px;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.btn-contact {
    background-color: var(--primary-red);
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background-color 0.3s;
}

.btn-contact:hover {
    background-color: #b60204;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    background-size: cover;
    background-position: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 60px;
    height: 100vh;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    color: white;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    max-width: 600px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.btn-hero {
    background-color: var(--primary-red);
    color: white;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    display: inline-block;
    transition: background-color 0.3s;
}

.btn-hero:hover {
    background-color: #b60204;
}

/* Section Styles */
.section {
    padding: 4rem 0;
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

/* Features Section */
.features {
    background-color: #f8f9fa;
}

.intro-paragraph {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.intro-paragraph strong {
    font-weight: 600;
}

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

.feature-card-item {
    background: white;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.feature-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: var(--primary-red);
}

.feature-card-item:hover::before {
    opacity: 1;
}

.feature-card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    transition: transform 0.3s ease;
}
.feature-card-icon img{
  max-height: 100%;
}
.feature-card-item:hover .feature-card-icon {
    transform: scale(1.1);
}

.feature-card-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}








.hero-overlay {
	position: absolute;
	background: rgba(0,0,0,0.5);
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}
.single .hero{
  min-height: 400px;
  position: relative;
}
.single .hero .hero-content{
  z-index: 1;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  width: 1200px;
}
.single .hero h1 {
	max-width: 100%;
	text-align: center;
}
#breadcrumbs{
  font-size: 14px;
}
#breadcrumbs a{
  color: #FFF;
}
.blog-card-item {
    background: white;
    border-radius: 12px;
    padding:0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #000;
}
.blog-item-content{
  padding: 1.5rem 1rem;
  text-align: left;
}
.blog-card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: var(--primary-red);
}

.blog-card-item:hover::before {
    opacity: 1;
}
.blog-card-item:hover .feature-card-icon {
    transform: scale(1.1);
}

.blog-card-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.blog-card-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}
.bg-one-blog img{
  width: 100%;
}





.action-element-holder{
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding: 25px;
  gap: 20px;
  text-decoration: none;
  color: inherit;
}
.action-element-logo{
  width: 120px;
  align-content: center;
}
.action-element-content *:last-child{
  margin-bottom: 0;
}










.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.btn-secondary:hover {
    background-color: var(--primary-red);
    color: white;
}

/* Workspace Section */
.workspace-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin: 4rem 0;
    position: relative;
}

.section-label {
    color: var(--primary-red);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.workspace-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.workspace-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.workspace-accordion {
    margin-bottom: 2rem;
}

.accordion-item-custom {
    border-bottom: 1px solid #e0e0e0;
    padding: 1.5rem 0;
}

.accordion-item-custom:first-child {
    border-top: 1px solid #e0e0e0;
}

.accordion-header-custom {
    cursor: pointer;
    color: var(--text-dark);
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.accordion-header-custom:hover {
    color: var(--primary-red);
}

.accordion-header-custom::after {
    content: '→';
    color: var(--primary-red);
    transition: transform 0.3s;
}

.accordion-item-custom.active .accordion-header-custom::after {
    transform: rotate(90deg);
}

.accordion-content-custom {
    padding-top: 0.5rem;
    color: var(--text-light);
    display: none;
}

.accordion-content-custom p {
    margin: 0;
}

.accordion-item-custom.active .accordion-content-custom {
    display: block;
}

.workspace-footer {
    margin: 2rem 0;
    font-weight: 500;
    color: var(--text-dark);
}

.workspace-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: sticky;
    top: 100px;
    margin-top: 3.5rem;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* Community & Location Section */
.community-location {
    padding: 5rem 0;
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.info-block {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    width: 100%;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border: 1px solid #f5f5f5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.info-block h3 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.info-block p,
.info-block .lead {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
}

.check-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.check-list li:last-child {
    margin-bottom: 0;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.3rem;
    top: -2px;
}
.info-block p strong,
.highlight-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-top: 2.5rem;
    line-height: 1.6;
}

/* Intro Section */
.intro-section {
    padding: 3rem 0;
    background-color: white;
}

.intro-section p,
.intro-text {
    font-size: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}

.intro-section p strong,
.intro-text strong {
    font-weight: 700;
    color: var(--dark-bg);
}

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

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
    gap: 1.5rem;
}

.masonry-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
    position: relative;
}

.masonry-item:nth-child(2) {
    grid-row: span 2;
}

.masonry-item:nth-child(5) {
    grid-row: span 2;
}

.masonry-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    background: #f5f5f5;
}

.masonry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

/* Gallery Modal */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.gallery-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    background: white;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.gallery-modal.show .modal-content {
    transform: scale(1);
}

.modal-content img {
    width: 100%;
    height: auto;
    max-height: calc(90vh - 16px);
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 36px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.close-modal:hover {
    color: #ddd;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    opacity: 0.8;
}

.gallery-nav:hover {
    background: var(--primary-red);
    color: white;
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.nav-prev {
    left: -70px;
}

.nav-next {
    right: -70px;
}

/* Map Section */
.map-container {
    width: 100%;
    height: 400px;
    background: #e0e0e0;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mNkYPhfDwAChwGA60e6kgAAAABJRU5ErkJggg==');
    background-size: cover;
}

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

.about-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem !important;
}

.about-section h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}
.about-content-holder p,
.about-section .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 400;
    margin-bottom: 1.5rem !important;
}

.about-section p {
    color: var(--text-dark);
    line-height: 1.7;
}

.values-list-large {
    list-style: none;
    padding: 0;
}

.values-list-large li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.values-list-large li::before {
    content: "🌳";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.25rem;
}

.about-right-content {
    padding-left: 2rem;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.fun-fact-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.coffee-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.fun-fact-card h5 {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.fun-fact-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff8c5a 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(255,107,53,0.25);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,107,53,0.35);
}
.cta-card p,
.cta-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: white;
    line-height: 1.6;
}
.cta-card p strong,
.cta-author {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: white;
    opacity: 0.95;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.values-list li::before {
    content: "🌱";
    position: absolute;
    left: 0;
    top: 0;
}

.about-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.about-image img {
    transition: transform 0.3s ease;
}

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.about-image:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

.quote-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.quote-box p {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.quote-box em {
    font-size: 1.1rem;
    color: #555;
}

.text-end {
    text-align: right;
}

.fun-fact {
    background-color: #f8f9fa;
    border: 1px solid var(--border-light);
}

.fun-fact p {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.text-center {
    text-align: center;
}

.text-end {
    text-align: right;
}

/* Contact Section */
.contact-card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    color: var(--text-dark);
}

.contact-info {
    margin-bottom: 3.6rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    flex-shrink: 0;
    width: 40px;
}

.contact-item a {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta {
    background-color: var(--dark-bg);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* CTA Bottom Section */
.cta-bottom {
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff8c5a 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-bottom h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem !important;
}

.cta-bottom p,
.cta-bottom .lead {
  margin-bottom: 1.5rem !important;
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.95;
}

.cta-bottom .btn {
    margin: 0.5rem;
}

.cta-bottom .btn-light {
    background: white;
    color: var(--primary-red);
    border: none;
    font-weight: 600;
}

.cta-bottom .btn-light:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.cta-bottom .btn-outline-light {
    border: 2px solid white;
    background: transparent;
    color: white;
    font-weight: 600;
}

.cta-bottom .btn-outline-light:hover {
    background: white;
    color: var(--primary-red);
    transform: translateY(-2px);
}

.gap-3 {
    gap: 1rem;
}

.d-flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.justify-content-center {
    justify-content: center;
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--dark-bg);
    color: white;
    padding: 5rem 0;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-section .section-label {
    color: var(--primary-red);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.contact-form-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.contact-subtitle {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 100%;
}

.contact-form p{
  margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    background-color: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;


}

.form-control:focus {
    outline: none;
    background-color: rgba(255,255,255,0.12);
    color: #FFF;
}

.form-control::placeholder {
    color: rgba(255,255,255,0.5);
}

select.form-control {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg fill='white' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 1rem center;
     background-size: 1rem;
     padding-right: 2.5rem; /* extra padding to avoid text overlapping arrow */
}

select.form-control option {
    background-color: var(--dark-bg);
    color: white;
}

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

.btn-submit {
    background-color: var(--primary-red);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: #b60204;
    transform: translateY(-2px);
}

.map-container-form {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
/* Pricing Section */
.pricing {
    padding: 5rem 2rem;
}

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

.pricing-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255,140,90,0.2);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin: 1rem 0;
}
.pricing ul,
.pricing-features {
    list-style: none;
    margin: 2rem 0;
}
.pricing ul li,
.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}
.pricing ul li::before,
.pricing-features li::before {
    content: '✓ ';
    color: var(--secondary-color);
    font-weight: bold;
}
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}
@media (max-width: 992px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .map-container-form {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-form-left h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .map-container-form {
        min-height: 300px;
    }
}

/* FAQ Section */
.faq-section {
    background-color: #fff;
    padding: 5rem 0;
}

.faq-section .section-label {
    color: var(--primary-red);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.faq-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: #d0d0d0;
}

.faq-card.active {
    border-color: var(--primary-red);
    box-shadow: 0 5px 20px rgba(255,107,53,0.15);
}

.faq-header {
    padding: 1.75rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
    gap: 1rem;
}

.faq-header:hover {
    color: var(--primary-red);
}

.faq-card.active .faq-header {
    color: var(--primary-red);
}

.faq-arrow {
    color: var(--primary-red);
    font-size: 1.5rem;
    font-style: normal;
    transition: transform 0.3s ease;
    display: inline-block;
    width: 30px;
    text-align: center;
    flex-shrink: 0;
    line-height: 1;
}

.faq-card.active .faq-arrow {
    transform: rotate(90deg);
}

.faq-content {
    padding: 0 1.75rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-card.active .faq-content {
    padding: 0 1.75rem 1.75rem;
    max-height: 500px;
}

.faq-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

.loading {
  text-align: center;
  margin-top: 50px;
}

.loading-icon {
  height: 30px;
  width: 30px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin-top: 13px;
}

.loading-icon div {
  width: 5px;
  height: 2px;
  border-radius: 0;
  background: #5A5B5D;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform-origin: 15px 0;
  transform-origin: 15px 0;
}

.loading-icon div:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -2px;
  bottom: 0;
  right: -4px;
  background: #5A5B5D;
  visibility: hidden;
}

.loading-icon div:nth-child(1) {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.loading-icon div:nth-child(1):after {
  -webkit-animation: loading 1.25s linear infinite 0.025s;
  animation: loading 1.25s linear infinite 0.025s;
}

.loading-icon div:nth-child(2) {
  -webkit-transform: rotate(126deg);
  transform: rotate(126deg);
}

.loading-icon div:nth-child(2):after {
  -webkit-animation: loading 1.25s linear infinite 0.15s;
  animation: loading 1.25s linear infinite 0.15s;
}

.loading-icon div:nth-child(3) {
  -webkit-transform: rotate(162deg);
  transform: rotate(162deg);
}

.loading-icon div:nth-child(3):after {
  -webkit-animation: loading 1.25s linear infinite 0.275s;
  animation: loading 1.25s linear infinite 0.275s;
}

.loading-icon div:nth-child(4) {
  -webkit-transform: rotate(198deg);
  transform: rotate(198deg);
}

.loading-icon div:nth-child(4):after {
  -webkit-animation: loading 1.25s linear infinite 0.4s;
  animation: loading 1.25s linear infinite 0.4s;
}

.loading-icon div:nth-child(5) {
  -webkit-transform: rotate(234deg);
  transform: rotate(234deg);
}

.loading-icon div:nth-child(5):after {
  -webkit-animation: loading 1.25s linear infinite 0.525s;
  animation: loading 1.25s linear infinite 0.525s;
}

.loading-icon div:nth-child(6) {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.loading-icon div:nth-child(6):after {
  -webkit-animation: loading 1.25s linear infinite 0.65s;
  animation: loading 1.25s linear infinite 0.65s;
}

.loading-icon div:nth-child(7) {
  -webkit-transform: rotate(306deg);
  transform: rotate(306deg);
}

.loading-icon div:nth-child(7):after {
  -webkit-animation: loading 1.25s linear infinite 0.775s;
  animation: loading 1.25s linear infinite 0.775s;
}

.loading-icon div:nth-child(8) {
  -webkit-transform: rotate(342deg);
  transform: rotate(342deg);
}

.loading-icon div:nth-child(8):after {
  -webkit-animation: loading 1.25s linear infinite 0.9s;
  animation: loading 1.25s linear infinite 0.9s;
}

.loading-icon div:nth-child(9) {
  -webkit-transform: rotate(378deg);
  transform: rotate(378deg);
}

.loading-icon div:nth-child(9):after {
  -webkit-animation: loading 1.25s linear infinite 1.025s;
  animation: loading 1.25s linear infinite 1.025s;
}

.loading-icon div:nth-child(10) {
  -webkit-transform: rotate(414deg);
  transform: rotate(414deg);
}

.loading-icon div:nth-child(10):after {
  -webkit-animation: loading 1.25s linear infinite 1.15s;
  animation: loading 1.25s linear infinite 1.15s;
}

@-webkit-keyframes loading {
  0% {
    visibility: hidden;
  }

  0.01% {
    visibility: visible;
  }

  9.99% {
    visibility: visible;
  }

  10.0% {
    visibility: hidden;
  }
}

@keyframes loading {
  0% {
    visibility: hidden;
  }

  0.01% {
    visibility: visible;
  }

  9.99% {
    visibility: visible;
  }

  10.0% {
    visibility: hidden;
  }
}

.loading-more-text {
  font-size: 16px;
  color: #5A5B5D;
  margin-left: 10px;
  display: inline-block;
  vertical-align: top;
}
/* Bootstrap Grid Utilities */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}

.col-lg-6 {
    position: relative;
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.col-lg-8 {
    position: relative;
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

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

.rounded-3 {
    border-radius: 0.5rem !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.align-items-center {
    align-items: center !important;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 auto;
        width: 50%;
    }

    .col-lg-8 {
        flex: 0 0 auto;
        width: 66.66667%;
    }
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: white;
    padding: 3rem 0 2rem;
}

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

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
}

@media (min-width: 992px) {
    .about-right-content {
        padding-left: 3rem;
    }
}

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

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

    .community-grid {
        gap: 1.5rem;
    }

    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
        gap: 1.25rem;
    }

    .masonry-item:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu {
        display: block;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .workspace-section {
        grid-template-columns: 1fr;
    }

    .workspace-content h2 {
        font-size: 1.75rem;
    }

    .workspace-image {
        height: 300px;
        margin-top: 2rem;
        position: relative;
        top: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .intro-text {
        font-size: 1.2rem;
    }

    .features-card-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-item {
        padding: 2rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-hero {
        width: 100%;
        text-align: center;
    }

    .info-block {
        margin-bottom: 2rem;
        padding: 2rem;
    }

    .info-block:last-child {
        margin-bottom: 0;
    }

    .info-block h3 {
        font-size: 1.5rem;
    }

    .community-grid {
        grid-template-columns: 1fr;
    }

    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 1rem;
    }

    .masonry-item:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .modal-content {
        margin: 20px;
        max-width: calc(100% - 40px);
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .nav-prev {
        left: 10px;
    }

    .nav-next {
        right: 10px;
    }

    .close-modal {
        top: 10px;
        right: 10px;
        background: rgba(0,0,0,0.5);
        border-radius: 50%;
        width: 36px;
        height: 36px;
        font-size: 28px;
    }

    .gallery-section {
        padding: 3rem 0;
    }

    .about-section .col-lg-6:first-child {
        margin-bottom: 2rem;
    }

    .about-image {
        margin-bottom: 2rem;
    }

    .image-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    }

    .overlay-content {
        transform: translateY(0);
    }

    .about-right-content {
        padding-left: 0;
    }

    .values-list-large li {
        font-size: 1.05rem;
    }

    .cta-text {
        font-size: 1.1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-section .section-title {
        font-size: 1.75rem;
    }

    .cta-bottom h2 {
        font-size: 2rem;
    }

    .cta-bottom .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 600px) {
    .nav-prev {
        left: 5px;
    }

    .nav-next {
        right: 5px;
    }
}
