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

body {
    font-family: 'Product Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}
.fa-ban {
    color: #ff2b09;
    font-size: 24px;
}

.fa-lightbulb-on {
    --fa-primary-color: #fbbf24;
    --fa-secondary-color: #fcd34d;
    --fa-secondary-opacity: 0.4;
}

.check-icon {}
/* Header Styles */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 985;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

/* Logo Section */
.logo-section {
    flex-shrink: 0;
    order: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 260px;
    height: auto;
    display: block;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
    order: -1;
    margin-right: 15px;
}

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

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

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

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

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    padding: 12px 16px;
    color: #5c5c5c;
    text-decoration: none;
    font-size: 1.19rem;
    font-weight: 700;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #2563eb;
}

/* Submenu Styles */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 100;
}

.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    position: relative;
}

.submenu a {
    display: block;
    padding: 10px 20px;
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
   
    transition: background-color 0.2s ease, color 0.2s ease;
}

.submenu a:hover {
    background-color: #f3f4f6;
    color: #2563eb;
}

.submenu a strong {
    font-weight: 600;
    color: #1f2937;
}

/* Second Level Submenu - Removed, only 1 level depth */

/* Right Side Links */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.header-link:hover {
    color: #1d4ed8;
}

.btn-demo {
    background-color: #2563eb;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
   
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease, transform 0.1s ease;
    white-space: nowrap;
}

.btn-demo:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

.btn-demo:active {
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 15px;
    }

    .nav-link {
        padding: 12px 12px;
        font-size: 14px;
    }

    .header-right {
        gap: 15px;
    }

    .header-link {
        font-size: 13px;
    }

    .btn-demo {
        padding: 9px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .header-container {
        height: 60px;
        justify-content: flex-start;
    }

    .mobile-menu-toggle {
        display: flex;
        order: -1;
    }

    .logo-section {
        order: 0;
        margin-left: 0;
    }

    .logo-icon {
        width: 200px;
        height: auto;
    }

    .main-nav {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin: 0;
    }

    .main-nav.active {
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }

    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        padding: 10px 0;
    }

    .nav-item {
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-link {
        padding: 15px 20px;
        width: 100%;
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        margin: 0;
        padding: 0;
        background-color: #f9fafb;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-item.active > .submenu {
        max-height: 500px;
    }


    .header-right {
        gap: 10px;
    }

    .header-link {
        display: none;
    }

    .btn-demo {
        padding: 8px 14px;
        font-size: 12px;
    }

}

@media (max-width: 480px) {
    .header-container {
        padding: 0 10px;
    }

    .logo-icon {
        width: 180px;
        height: auto;
    }

    .btn-demo {
        padding: 7px 12px;
        font-size: 11px;
    }
}

/* Mobile Menu Toggle Functionality */
@media (max-width: 768px) {
    .nav-item.has-submenu > .nav-link::after {
        content: '+';
        float: right;
        font-size: 18px;
        font-weight: 300;
        transition: transform 0.3s ease;
    }

    .nav-item.active > .nav-link::after {
        transform: rotate(45deg);
    }

}

/* Slider Section Styles */
.slider-section {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
}

.slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('media/trendyol.jpg');
    background-size: 50%;
    background-position: center 163px;
    background-repeat: no-repeat;
    z-index: 1;
}

.slider-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.slider-content {
    position: relative;
    z-index: 3;
    text-align: center;
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: 18px;
}

.slider-title {
    font-size: 53px;
    font-weight: 900;
    color: #000000;
   
    letter-spacing: -0.030em;
}

.slider-text-container {
    position: relative;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-text {
    position: absolute;
    font-size: 47px;
    font-weight: 900;
    color: #2563eb;
   
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    margin: 0;
    padding: 0;
    letter-spacing: -0.030em;
    white-space: nowrap;
}

.slider-text.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

/* Slider Section Responsive */
@media (max-width: 1024px) {
    .slider-title {
        font-size: 2.5rem;
    }

    .slider-text {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .slider-section {
        min-height: 300px;
    }

    .slider-content {
        padding: 60px 20px;
    }

    .slider-title {
        font-size: 2rem;
        margin-bottom: 24px;
    }

    .slider-text {
        font-size: 1.5rem;
    }

    .slider-text-container {
        min-height: 60px;
    }
}

@media (max-width: 480px) {
    .slider-section {
        min-height: 250px;
    }

    .slider-content {
        padding: 40px 15px;
    }

    .slider-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .slider-text {
        font-size: 1.25rem;
    }

    .slider-text-container {
        min-height: 50px;
    }
}

/* Hero Section Styles */
.hero-section {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111827;
   
    letter-spacing: -0.040rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.7;
   
}

.hero-cta-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.hero-email-input {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border: 2px solid #10b981;
    border-radius: 8px;
    font-size: 16px;
   
    outline: none;
    transition: border-color 0.2s ease;
}

.hero-email-input:focus {
    border-color: #059669;
}

.hero-email-input::placeholder {
    color: #9ca3af;
}

.hero-cta-button {
    background-color: #10b981;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
   
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    white-space: nowrap;
}

.hero-cta-button:hover {
    background-color: #059669;
    transform: translateY(-1px);
}

.hero-cta-button:active {
    transform: translateY(0);
}

.hero-trial-info {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 24px;
    line-height: 1.6;
   
}

.hero-secondary-button {
    display: inline-block;
    background-color: #111827;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
   
    text-align: center;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.1s ease;
    width: fit-content;
}

.hero-secondary-button:hover {
    background-color: #1f2937;
    transform: translateY(-1px);
}

.hero-secondary-button:active {
    transform: translateY(0);
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    overflow: hidden;
    padding: 20px;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Hero Section Responsive */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hero-cta-form {
        flex-direction: column;
    }

    .hero-email-input {
        width: 100%;
        min-width: 100%;
    }

    .hero-cta-button {
        width: 100%;
    }

    .hero-secondary-button {
        width: 100%;
    }

    .hero-image-wrapper {
        max-width: 100%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-email-input,
    .hero-cta-button,
    .hero-secondary-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Demo Request Section Styles */
.demo-request-section {
    background: #ffffff;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #eee;
}

.demo-request-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.demo-request-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.demo-request-content {
    text-align: center;
}

.demo-request-title {
    font-size: 3rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 3px;
   
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.demo-request-desc {
    font-size: 1.25rem;
    color: rgb(0 0 0 / 90%);
    margin-bottom: 40px;
   
}

.demo-request-form {
    border-radius: 16px;
    padding: 0px;
}

.demo-form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.demo-form-group {
    display: flex;
    align-items: center;
}

.demo-input {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #a7a7a7;
    border-radius: 8px;
    font-size: 1rem;
   
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.demo-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.demo-input::placeholder {
    color: #9ca3af;
}

.demo-submit-btn {
    width: 100%;
    padding: 16px 32px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
   
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.demo-submit-btn:hover {
    background-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

.demo-submit-btn:active {
    transform: translateY(0);
}

/* Demo Request Section Responsive */
@media (max-width: 1024px) {
    .demo-form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .demo-submit-btn {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .demo-request-section {
        padding: 60px 0;
    }

    .demo-request-title {
        font-size: 2.25rem;
    }

    .demo-request-desc {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .demo-request-form {
        padding: 30px 24px;
    }

    .demo-form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .demo-submit-btn {
        grid-column: 1;
    }
}

@media (max-width: 480px) {
    .demo-request-section {
        padding: 40px 0;
    }

    .demo-request-title {
        font-size: 1.75rem;
    }

    .demo-request-desc {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .demo-request-form {
        padding: 24px 20px;
    }

    .demo-input,
    .demo-submit-btn {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
}

/* Features Section Styles */
.features-section {
    background: linear-gradient(to bottom, #f0f9ff 0%, #ffffff 100%);
    padding: 27px 0;
}

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

.features-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    color: #111827;
   
}

.features-title span {
    color: #2563eb;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f9ff;
    border-radius: 50%;
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.feature-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #111827;
   
    line-height: 1.4;
    letter-spacing: -0.030rem;
}

.feature-card-title span {
    color: #2563eb;
    font-weight: 700;
}

.feature-card-desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
   
}

/* Features Section Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .features-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }

    .features-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 30px 24px;
    }

    .feature-card-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 40px 0;
    }

    .features-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .feature-icon img {
        width: 40px;
        height: 40px;
    }

    .feature-card-title {
        font-size: 1.25rem;
    }

    .feature-card-desc {
        font-size: 0.95rem;
    }
}

/* Pricing Section Styles */
.pricing-section {
    background-color: #ffffff;
    padding: 80px 0;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.pricing-card.featured {
    background-color: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}

.pricing-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111827;
   
}

.pricing-card.featured .pricing-title {
    color: #ffffff;
}

.pricing-desc {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.6;
   
    min-height: 48px;
}

.pricing-card.featured .pricing-desc {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
   
}

.pricing-price span {
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing-card.featured .pricing-price {
    color: #ffffff;
}

.pricing-kdv {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 24px;
   
}

.pricing-card.featured .pricing-kdv {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-button {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background-color: #2563eb;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
   
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-bottom: 24px;
}

.pricing-button:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.pricing-button.featured-button {
    background-color: #f97316;
}

.pricing-button.featured-button:hover {
    background-color: #ea580c;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.pricing-features li {
    padding: 10px 0;
    color: #4b5563;
    font-size: 0.95rem;
   
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-features li a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.pricing-features li a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.pricing-card.featured .pricing-features li a {
    color: #ffffff;
    text-decoration: underline;
}

.pricing-card.featured .pricing-features li a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Pricing Section Responsive */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .pricing-title {
        font-size: 1.5rem;
    }

    .pricing-price {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 40px 0;
    }

    .pricing-card {
        padding: 24px 20px;
    }

    .pricing-icon {
        width: 70px;
        height: 70px;
    }

    .pricing-title {
        font-size: 1.35rem;
    }

    .pricing-price {
        font-size: 1.75rem;
    }

    .pricing-button {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* SEO Performance Section (Index) */
.seo-section {
    background: url('media/static/store.png') 100% 140px no-repeat;
    padding: 70px 0 80px 0;
    background-size: 37%;
    background-attachment: fixed;
}

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

.seo-header {
    text-align: center;
    margin-bottom: 36px;
}

.seo-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.seo-subtitle {
    font-size: 0.98rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.seo-score-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    margin-bottom: 40px;
}

.seo-score-card {
    background-color: #ffffffed;
    border-radius: 18px;
    padding: 20px 16px 18px 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.seo-score-circle {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 8px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.seo-score-circle::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: inherit;
    border: 4px solid transparent;
    border-top-color: currentColor;
    border-right-color: currentColor;
    transform: rotate(-110deg);
}

.seo-score-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.seo-score-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4b5563;
}

.seo-score-card.seo-score-good {
    color: #22c55e;
}

.seo-score-card.seo-score-medium {
    color: #2563eb;
}

.seo-score-card.seo-score-bad {
    color: #ef4444;
}

.seo-metrics-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
    gap: 32px;
    align-items: flex-start;
}

.seo-metrics-copy h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.seo-metrics-copy p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 400;
}

.seo-metrics-list {
    background-color: #ffffffed;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    padding: 22px 22px 20px 22px;
}

.seo-metric-row + .seo-metric-row {
    margin-top: 16px;
}

.seo-metric-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.seo-metric-label span:first-child {
    color: #111827;
    font-weight: 500;
}

.seo-metric-value {
    color: #4b5563;
    font-weight: 500;
}

.seo-metric-bar {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background-color: #e5e7eb;
    overflow: hidden;
}

.seo-metric-bar-fill {
    position: absolute;
    inset: 0;
    width: 0%;
    border-radius: inherit;
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 40%, #15803d 100%);
    transition: width 1s ease-out;
}

@media (max-width: 1024px) {
    .seo-score-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 20px;
    }

    .seo-metrics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .seo-section {
        padding: 56px 0 64px 0;
    }

    .seo-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .seo-section {
        padding: 44px 0 54px 0;
    }

    .seo-score-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .seo-score-circle {
        width: 78px;
        height: 78px;
    }
}

/* Sectors Section Styles */
.sectors-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #6366f1 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.sectors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.sectors-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.sectors-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
   
}

.sectors-title span {
    color: #60a5fa;
}

.sectors-title {
    color: #ffffff;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 30px;
}

.sector-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.sector-item:hover {
    transform: translateY(-5px);
}

.sector-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.sector-item:hover .sector-icon {
    transform: scale(1.1);
}

.sector-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sector-label {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
   
    margin: 0;
}

/* Sectors Section Responsive */
@media (max-width: 1200px) {
    .sectors-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .sectors-section {
        padding: 60px 0;
    }

    .sectors-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .sector-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 12px;
    }

    .sector-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .sectors-section {
        padding: 40px 0;
    }

    .sectors-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .sector-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .sector-label {
        font-size: 0.875rem;
    }
}

/* Footer Styles */
.main-footer {
    background-color: #f9fafb;
    border-top: 1px solid #e5e7eb;
}

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

/* Footer Contact Cards Section */
.footer-contact-cards {
    background-color: #ffffff;
    padding: 60px 0;
    border-bottom: 1px solid #e5e7eb;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background-color: #f9fafb;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 12px;
   
}

.contact-card-desc {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 12px;
    line-height: 1.6;
   
}

.contact-card-availability {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 16px;
   
}

.contact-card-link {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
   
    transition: color 0.2s ease;
}

.contact-card-link:hover {
    color: #1d4ed8;
}

.contact-card-link strong {
    color: #111827;
}

/* Footer Partners Section */
.footer-partners {
    background-color: #ffffff;
    padding: 40px 0;
    border-bottom: 1px solid #e5e7eb;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logo {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Footer Links Section */
.footer-links-section {
    background-color: #ffffff;
    padding: 60px 0;
    border-bottom: 1px solid #e5e7eb;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.footer-address {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
   
}

.footer-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
   
}

.footer-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
   
    transition: color 0.2s ease;
}

.footer-phone:hover {
    color: #1d4ed8;
}

.footer-phone span {
    color: #111827;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: transform 0.2s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.footer-column-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 20px;
   
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: #6b7280;
    text-decoration: none;
   
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #2563eb;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #f9fafb;
    padding: 24px 0;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
   
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-contact-cards {
        padding: 40px 0;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 30px 24px;
    }

    .footer-partners {
        padding: 30px 0;
    }

    .partners-grid {
        gap: 24px;
    }

    .partner-logo img {
        height: 50px;
    }

    .footer-links-section {
        padding: 40px 0;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .footer-contact-cards {
        padding: 30px 0;
    }

    .contact-card {
        padding: 24px 20px;
    }

    .contact-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

    .contact-card-title {
        font-size: 1.25rem;
    }

    .contact-card-link {
        font-size: 1.25rem;
    }

    .partners-grid {
        gap: 16px;
    }

    .partner-logo img {
        height: 40px;
    }

    .footer-links-section {
        padding: 30px 0;
    }
}

/* Page Hero Section (for digerleri.html) */
.page-hero-section {
    background: url('media/static/break.svg') no-repeat -20px 40px;
    padding: 67px 0;
    text-align: center;
    color: #000000;
    background-size: cover;
    padding-bottom: 80px;
}

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

.page-hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: -3px;
}

.page-hero-desc {
    font-size: 1.25rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
   
}

/* Intro Content Section */
.intro-content-section {
    background-color: #ffffff;
    padding: 80px 0;
}

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

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 32px;
    text-align: center;
   
}

.intro-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 24px;
   
}

.intro-paragraph strong {
    color: #2563eb;
    font-weight: 600;
}

/* Comparison Section */
.comparison-section {
    background: linear-gradient(to bottom, #f0f9ff 0%, #ffffff 100%);
    padding: 80px 0;
}

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

.comparison-table {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    table-layout: fixed;
}

.comparison-header {
    display: grid;
    grid-template-columns: 350px 1fr 1fr;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
}

.comparison-header-cell {
    padding: 20px 24px;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-header-cell:first-child {
    visibility: hidden;
}

.comparison-header-cell:last-child {
    border-right: none;
    background-color: rgba(255, 255, 255, 0.1);
}

.comparison-row {
    display: grid;
    grid-template-columns: 350px 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
    align-items: stretch;
}

.comparison-row:hover {
    background-color: #f9fafb;
}

.comparison-row:hover .comparison-feature {
    background-color: #f3f4f6;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature {
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    background-color: #ffffff;
    border-right: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    min-height: 70px;
}

.comparison-cell {
    padding: 20px 24px;
    border-right: 1px solid #e5e7eb;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 70px;
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-cell.negative {
    background-color: #fef2f2;
}

.comparison-cell.positive {
    background-color: #f0fdf4;
}

.comparison-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
    display: inline-block;
    width: 24px;
    text-align: center;
    margin-top: 2px;
}

.comparison-cell p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.comparison-cell.positive p {
    color: #166534;
    font-weight: 500;
}

.comparison-cell.negative p {
    color: #991b1b;
    font-weight: 500;
}

/* Compare Summary Section */
.compare-summary-section {
    background-color: #ffffff;
    padding: 80px 0 40px 0;
}

.compare-summary-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.compare-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.compare-summary-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid #dbeafe;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.05);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.compare-summary-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background-color: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.compare-summary-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.compare-summary-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.compare-summary-text {
    font-size: 0.98rem;
    color: #4b5563;
    line-height: 1.7;
}

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

@media (max-width: 768px) {
    .compare-summary-section {
        padding: 60px 0 30px 0;
    }

    .compare-summary-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .compare-summary-section {
        padding: 40px 0 24px 0;
    }

    .compare-summary-card {
        padding: 22px 18px;
    }
}

/* Visual Compare Section */
.visual-compare-section {
    background: linear-gradient(to bottom, #f0f9ff 0%, #ffffff 100%);
    padding: 60px 0 80px 0;
}

.visual-compare-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.visual-compare-header {
    text-align: center;
    margin-bottom: 40px;
}

.visual-compare-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.visual-compare-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 720px;
    margin: 0 auto;
}

.visual-compare-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 80px;
    gap: 20px;
}

.visual-compare-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 35px rgba(15, 23, 42, 0.18);
    background-color: #ffffff;
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
    transition: box-shadow 0.3s ease;
    animation: visualCompareFloat 7s ease-in-out infinite alternate;
    pointer-events: auto;
}

.visual-compare-card:hover {
    animation-play-state: paused;
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.25);
}

.visual-compare-card:active {
    animation-play-state: paused;
}

.visual-compare-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
    transform: translateZ(0);
    pointer-events: none;
}

/* Floating animation for visual compare cards */
@keyframes visualCompareFloat {
    0% {
        transform: translateY(6px) translateZ(0) rotateX(3deg) rotateY(-2deg);
    }
    50% {
        transform: translateY(-10px) translateZ(10px) rotateX(-1deg) rotateY(2deg);
    }
    100% {
        transform: translateY(4px) translateZ(0) rotateX(2deg) rotateY(-1deg);
    }
}

/* Slight randomization for "floating in space" effect */
.visual-compare-card:nth-child(1) { animation-duration: 8s; animation-delay: -1s; transform-origin: 50% 20%; }
.visual-compare-card:nth-child(2) { animation-duration: 9s; animation-delay: -3s; transform-origin: 10% 80%; }
.visual-compare-card:nth-child(3) { animation-duration: 7.5s; animation-delay: -2s; transform-origin: 90% 30%; }
.visual-compare-card:nth-child(4) { animation-duration: 10s; animation-delay: -4s; transform-origin: 30% 50%; }
.visual-compare-card:nth-child(5) { animation-duration: 8.5s; animation-delay: -5s; transform-origin: 70% 10%; }
.visual-compare-card:nth-child(6) { animation-duration: 9.5s; animation-delay: -1.5s; transform-origin: 40% 90%; }
.visual-compare-card:nth-child(7) { animation-duration: 7.8s; animation-delay: -2.5s; transform-origin: 80% 60%; }
.visual-compare-card:nth-child(8) { animation-duration: 8.8s; animation-delay: -3.5s; transform-origin: 20% 40%; }

.visual-compare-card.visual-lg {
    grid-column: span 3;
    grid-row: span 3;
}

.visual-compare-card.visual-md {
    grid-column: span 2;
    grid-row: span 2;
}

.visual-compare-card.visual-sm {
    grid-column: span 1;
    grid-row: span 2;
}

@media (max-width: 1024px) {
    .visual-compare-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-auto-rows: 85px;
    }
}

@media (max-width: 768px) {
    .visual-compare-section {
        padding: 50px 0 60px 0;
    }

    .visual-compare-title {
        font-size: 1.9rem;
    }

    .visual-compare-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-auto-rows: 90px;
        gap: 16px;
    }

    .visual-compare-card.visual-lg {
        grid-column: span 3;
        grid-row: span 3;
    }

    .visual-compare-card.visual-md {
        grid-column: span 2;
        grid-row: span 2;
    }

    .visual-compare-card.visual-sm {
        grid-column: span 1;
        grid-row: span 2;
    }
}

@media (max-width: 480px) {
    .visual-compare-section {
        padding: 40px 0 50px 0;
    }

    .visual-compare-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 90px;
        gap: 12px;
    }

    .visual-compare-card.visual-lg,
    .visual-compare-card.visual-md {
        grid-column: span 2;
        grid-row: span 2;
    }
}

/* Home References Carousel (Index) */
.home-references-section {
    background-color: #ffffff;
    padding: 60px 0 80px 0;
}

.home-references-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-references-header {
    text-align: center;
    margin-bottom: 30px;
}

.home-references-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.home-references-subtitle {
    font-size: 0.98rem;
    color: #6b7280;
    max-width: 620px;
    margin: 0 auto;
}

.home-references-carousel {
    display: flex;
    align-items: center;
    gap: 16px;
}

.home-references-viewport {
    overflow: hidden;
    flex: 1;
}

.home-references-track {
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease-out;
    will-change: transform;
}

.home-reference-item {
    flex: 0 0 140px;
    text-align: center;
}

.home-reference-logo {
    height: 70px;
    border-radius: 12px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.home-reference-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0.1);
    opacity: 0.9;
    transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}

.home-reference-item:hover .home-reference-logo img {
    transform: translateY(-2px);
    filter: grayscale(0);
    opacity: 1;
}

.home-reference-domain {
    margin-top: 8px;
    font-size: 0.8rem;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.home-ref-btn {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background-color: #ffffff;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-ref-btn:hover {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.home-ref-btn:disabled {
    opacity: 0.4;
    cursor: default;
    box-shadow: none;
}

@media (max-width: 768px) {
    .home-references-section {
        padding: 50px 0 60px 0;
    }

    .home-references-title {
        font-size: 1.7rem;
    }

    .home-references-carousel {
        gap: 10px;
    }

    .home-reference-item {
        flex: 0 0 120px;
    }

    .home-reference-logo {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .home-references-section {
        padding: 40px 0 50px 0;
    }

    .home-references-header {
        margin-bottom: 24px;
    }

    .home-references-carousel {
        gap: 8px;
    }

    .home-reference-item {
        flex: 0 0 110px;
    }

    .home-reference-logo {
        height: 54px;
        padding: 8px 10px;
    }
}

/* Highlight Content Section */
.highlight-content-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.highlight-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.highlight-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    border: 2px solid #dbeafe;
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.highlight-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
   
}

.highlight-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
   
}

.highlight-text strong {
    color: #2563eb;
    font-weight: 600;
}

/* Comparison & Highlight Responsive */
@media (max-width: 1024px) {
    .page-hero-title {
        font-size: 2.5rem;
    }

    .intro-title {
        font-size: 2rem;
    }

    .highlight-content-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero-section {
        padding: 60px 0;
    }

    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-desc {
        font-size: 1.1rem;
    }

    .intro-content-section {
        padding: 60px 0;
    }

    .intro-title {
        font-size: 1.75rem;
    }

    .intro-paragraph {
        font-size: 1rem;
    }

    .comparison-section {
        padding: 60px 0;
    }

    .comparison-table {
        display: block;
    }

    .comparison-header {
        display: block;
    }

    .comparison-header-cell {
        display: block;
        padding: 16px 20px;
        font-size: 1.1rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        width: 100%;
    }

    .comparison-header-cell:first-child {
        display: none;
    }

    .comparison-header-cell:last-child {
        border-bottom: none;
    }

    .comparison-row {
        display: block;
        border-bottom: 2px solid #e5e7eb;
        margin-bottom: 20px;
    }

    .comparison-feature {
        display: block;
        padding: 16px 20px;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        font-size: 1rem;
        background-color: #f9fafb;
        font-weight: 700;
        width: 100%;
    }

    .comparison-cell {
        display: block;
        padding: 16px 20px;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        width: 100%;
    }

    .comparison-cell:last-child {
        border-bottom: none;
    }

    .comparison-cell-content {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .comparison-cell::before {
        content: attr(data-label);
        font-weight: 600;
        color: #6b7280;
        display: block;
        margin-bottom: 8px;
    }
    
    .comparison-cell-content {
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }

    .highlight-content-section {
        padding: 60px 0;
    }

    .highlight-box {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .page-hero-section {
        padding: 40px 0;
    }

    .page-hero-title {
        font-size: 1.75rem;
    }

    .page-hero-desc {
        font-size: 1rem;
    }

    .intro-content-section {
        padding: 40px 0;
    }

    .intro-title {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .intro-paragraph {
        font-size: 0.95rem;
    }

    .comparison-section {
        padding: 40px 0;
    }

    .comparison-header-cell {
        padding: 14px 16px;
        font-size: 1.1rem;
    }

    .comparison-feature {
        padding: 16px;
        font-size: 1rem;
    }

    .comparison-cell {
        padding: 16px;
    }

    .comparison-cell p {
        font-size: 0.95rem;
    }

    .highlight-content-section {
        padding: 40px 0;
    }

    .highlight-box {
        padding: 20px;
    }

    .highlight-title {
        font-size: 1.25rem;
    }

    .highlight-text {
        font-size: 0.95rem;
    }
}

/* References Section */
.references-section {
    background-color: #ffffff;
    padding: 80px 0;
}

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

.references-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.reference-card {
    background-color: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid #dddddd82;
    border-radius: 6px;
    padding: 15px;
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.reference-screenshot {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: #f9fafb;
}

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

.reference-card:hover .reference-screenshot img {
    transform: scale(1.05);
}

.reference-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.reference-logo {
    margin-bottom: 16px;
}

.reference-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.reference-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
   
}

.reference-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 24px;
    flex: 1;
   
}

.reference-link {
    display: inline-block;
    padding: 12px 24px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    align-self: flex-start;
   
}

.reference-link:hover {
    background-color: #1d4ed8;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(to bottom, #f0f9ff 0%, #ffffff 100%);
    padding: 80px 0;
}

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

.reviews-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 16px;
   
}

.reviews-section-desc {
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 50px;
   
}

.reviews-grid {
    column-count: 3;
    column-gap: 24px;
    column-fill: balance;
}

.review-card {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 24px;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e0e7ff 0%, #c7d2fe 50%, #a5b4fc 100%);
    opacity: 0.6;
}

.review-card:nth-child(3n+1)::before {
    background: linear-gradient(90deg, #fce7f3 0%, #fbcfe8 50%, #f9a8d4 100%);
}

.review-card:nth-child(3n+2)::before {
    background: linear-gradient(90deg, #d1fae5 0%, #a7f3d0 50%, #6ee7b7 100%);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(148, 163, 184, 0.4);
}

.review-card .review-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    border: 3px solid #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-info {
    flex: 1;
    min-width: 0;
}

.review-name {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
    display: block;
}

.review-stars {
    display: flex;
    gap: 3px;
    color: #fbbf24;
    font-size: 0.875rem;
}

.review-content {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

.review-content p {
    margin: 0 0 10px 0;
}

.review-content p:last-child {
    margin-bottom: 0;
}

.review-site {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* References & Reviews Responsive */
@media (max-width: 1200px) {
    .references-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        column-count: 2;
        column-gap: 20px;
    }
    
    .review-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .references-section {
        padding: 60px 0;
    }

    .reference-card {
        flex-direction: column;
    }

    .reference-screenshot {
        height: 250px;
    }

    .reference-content {
        padding: 24px;
    }

    .reviews-section {
        padding: 60px 0;
    }

    .reviews-section-title {
        font-size: 2rem;
    }

    .reviews-section-desc {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .reviews-grid {
        column-count: 1;
        column-gap: 16px;
    }
    
    .review-card {
        margin-bottom: 16px;
        gap: 10px;
    }

    .review-content {
        max-width: 80%;
        font-size: 0.9rem;
        padding: 12px 16px;
    }

    .review-avatar {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .references-section {
        padding: 40px 0;
    }

    .reference-screenshot {
        height: 200px;
    }

    .reference-content {
        padding: 20px;
    }

    .reference-title {
        font-size: 1.25rem;
    }

    .reference-desc {
        font-size: 0.95rem;
    }

    .reviews-section {
        padding: 40px 0;
    }

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

    .review-card {
        margin-bottom: 16px;
        padding: 18px;
        border-radius: 16px;
    }

    .review-header {
        margin-bottom: 12px;
        gap: 12px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
    }

    .review-name {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }

    .review-stars {
        font-size: 0.8rem;
    }

    .review-content {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .review-site {
        font-size: 0.8rem;
        padding: 5px 10px;
        margin-top: 10px;
    }
}

/* About Content Section */
.about-content-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.about-content-section.alt-bg {
    background: linear-gradient(to bottom, #f0f9ff 0%, #ffffff 100%);
}

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

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content-grid.reverse {
    direction: rtl;
}

.about-content-grid.reverse > * {
    direction: ltr;
}

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

.about-slogan-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
   
}

.about-slogan-title strong {
    color: #2563eb;
    font-weight: 800;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
   
}

.about-description p {
    margin-bottom: 20px;
}

.about-description p:last-child {
    margin-bottom: 0;
}

/* About Final Section */
.about-final-section {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.about-final-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-final-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
   
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about-final-title strong {
    color: #fbbf24;
}

.about-final-desc {
    font-size: 1.25rem;
    line-height: 1.8;
    opacity: 0.95;
   
}

/* About Content Responsive */
@media (max-width: 1024px) {
    .about-content-grid {
        gap: 40px;
    }

    .about-slogan-title {
        font-size: 2rem;
    }

    .about-description {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .about-content-section {
        padding: 60px 0;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-content-grid.reverse {
        direction: ltr;
    }

    .about-slogan-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .about-description {
        font-size: 0.95rem;
    }

    .about-final-section {
        padding: 60px 0;
    }

    .about-final-title {
        font-size: 2.25rem;
    }

    .about-final-desc {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-content-section {
        padding: 40px 0;
    }

    .about-content-grid {
        gap: 24px;
    }

    .about-slogan-title {
        font-size: 1.5rem;
    }

    .about-description {
        font-size: 0.9rem;
    }

    .about-description p {
        margin-bottom: 16px;
    }

    .about-final-section {
        padding: 40px 0;
    }

    .about-final-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .about-final-desc {
        font-size: 1rem;
    }
}

/* Contact Form Section */
.contact-form-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.contact-form-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form-wrapper {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
   
}

.contact-form-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
   
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
   
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #9ca3af;
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 1rem;
    color: #4b5563;
   
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #2563eb;
}

.form-submit-btn {
    width: 100%;
    padding: 16px 32px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
   
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-submit-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* Contact Info Section (Ideasoft Style) */
.contact-info-section {
    background-color: #ffffff;
    padding: 60px 0;
}

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

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.contact-info-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #ffffff;
}

.contact-info-icon svg {
    width: 32px;
    height: 32px;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.contact-info-desc {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 16px;
}

.contact-info-link {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: #1d4ed8;
}

.contact-info-address {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Contact Form Section (Ideasoft Style) */
.contact-form-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form-wrapper {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-form-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.contact-form-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    color: #111827;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
    accent-color: #2563eb;
}

.form-checkbox a {
    color: #2563eb;
    text-decoration: underline;
}

.form-checkbox a:hover {
    color: #1d4ed8;
}

.form-submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* Contact Map Section */
.contact-map-section {
    background-color: #ffffff;
    padding: 80px 0;
}

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

.contact-map-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 40px;
}

.contact-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 450px;
}

.contact-map {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Office Address Section */
.office-address-section {
    background-color: #ffffff;
    padding: 60px 0;
}

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

.office-address-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
    border: 2px solid #dbeafe;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.office-address-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background-color: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.office-address-content {
    flex: 1;
}

.office-address-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
   
}

.office-address-title strong {
    color: #2563eb;
}

.office-address-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 12px;
   
}

.office-address-hours {
    font-size: 1rem;
    color: #6b7280;
   
}

/* Contact Cards Section (Reusing existing styles from footer) */
.contact-cards-section {
    background: linear-gradient(to bottom, #f0f9ff 0%, #ffffff 100%);
    padding: 80px 0;
}

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

/* Contact Info Responsive */
@media (max-width: 1024px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 40px 0;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-info-card {
        padding: 32px 24px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .contact-form-title {
        font-size: 2rem;
    }

    .contact-form-subtitle {
        font-size: 1rem;
    }

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

    .contact-map-section {
        padding: 60px 0;
    }

    .contact-map-title {
        font-size: 1.75rem;
    }

    .office-address-section {
        padding: 40px 0;
    }

    .office-address-card {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .contact-cards-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .contact-info-section {
        padding: 30px 0;
    }

    .contact-info-card {
        padding: 24px 20px;
    }

    .contact-info-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .contact-info-title {
        font-size: 1.25rem;
    }

    .contact-form-section {
        padding: 40px 0;
    }

    .contact-form-wrapper {
        padding: 24px 20px;
    }

    .contact-form-title {
        font-size: 1.75rem;
    }

    .contact-map-section {
        padding: 40px 0;
    }

    .contact-map-wrapper {
        height: 350px;
    }

    .form-input,
    .form-textarea,
    .form-submit-btn {
        padding: 14px 18px;
        font-size: 0.95rem;
    }

    .office-address-section {
        padding: 30px 0;
    }

    .office-address-card {
        padding: 24px 20px;
    }

    .office-address-icon {
        width: 60px;
        height: 60px;
    }

    .office-address-title {
        font-size: 1.5rem;
    }

    .office-address-text {
        font-size: 1rem;
    }

    .contact-cards-section {
        padding: 40px 0;
    }
}

/* Packages Header Section */
.packages-header-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.packages-header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.package-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.package-image {
    margin-bottom: 20px;
}

.package-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.package-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
   
}

.package-old-price {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 8px;
   
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 12px;
   
}

.package-installment {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 24px;
   
}

.package-button {
    display: inline-block;
    width: 100%;
    padding: 14px 24px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
   
}

.package-button:hover {
    background-color: #1d4ed8;
}

/* Packages Comparison Section */
.packages-comparison-section {
    background: linear-gradient(to bottom, #f0f9ff 0%, #ffffff 100%);
    padding: 80px 0;
}

.packages-comparison-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Packages Comparison Table Styles */
.packages-comparison-table-wrapper {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.packages-comparison-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.packages-comparison-header-feature {
    padding: 24px 30px;
    font-size: 1.25rem;
    font-weight: 700;
   
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.packages-comparison-header-package {
    padding: 24px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
   
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.packages-comparison-header-package:last-child {
    border-right: none;
}

.packages-comparison-group {
    border-bottom: 2px solid #e5e7eb;
}

.packages-comparison-group:last-child {
    border-bottom: none;
}

.packages-comparison-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background-color: #f9fafb;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 1.2rem;
    font-weight: 600;
    color: #111827;
    flex-direction: row;
}
.packages-comparison-group-header span {display: flex;gap: 15px;align-items: center;}
.packages-comparison-group-header svg {height:25px;fill: #2563eb;}
.packages-comparison-group-header:hover {
    background-color: #f3f4f6;
}

.packages-comparison-group-header.active {
    background-color: #eff6ff;
}

.packages-group-toggle-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.packages-comparison-group-header.active .packages-group-toggle-icon {
    transform: rotate(180deg);
}

.packages-comparison-group-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease-out;
    opacity: 0;
}

.packages-comparison-group-content.open {
    max-height: 10000px;
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.3s ease-in;
}

.packages-comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}

.packages-comparison-row:hover {
    background-color: #f9fafb;
}

.packages-comparison-row:last-child {
    border-bottom: none;
}

.packages-comparison-feature {
    padding: 20px 30px;
    border-right: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.packages-feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0px;
}

.packages-feature-helper {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    cursor: help;
    position: relative;
    display: inline-block;
    margin-top: 4px;
}

.packages-feature-helper-tooltip {
    visibility: hidden;
    opacity: 0;
    background-color: #1f2937;
    color: #ffffff;
    text-align: left;
    border-radius: 6px;
    padding: 10px 14px;
    position: absolute;
    z-index: 1000;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    white-space: normal;
    font-size: 0.875rem;
    line-height: 1.5;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: opacity 0.2s ease, visibility 0.2s ease;
    max-width: 300px;
    min-width: 200px;
    word-wrap: break-word;
    pointer-events: none;
}

.packages-feature-helper-tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1f2937;
}

.packages-feature-helper:hover .packages-feature-helper-tooltip {
    visibility: visible;
    opacity: 1;
}

/* Responsive tooltip adjustments */
@media (max-width: 768px) {
    .packages-feature-helper-tooltip {
        max-width: 250px;
        min-width: 180px;
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

.packages-comparison-cell {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #e5e7eb;
    text-align: center;
}

.packages-comparison-cell:last-child {
    border-right: none;
}

.check-icon {
    color: #10b981;
    font-size: 1.5rem;
}

.cross-icon {
    color: #ef4444;
    font-size: 1.5rem;
    font-weight: 700;
}

.cross-icon i.fa-duotone {
    --fa-primary-color: #ef4444;
    --fa-secondary-color: #fee2e2;
    --fa-secondary-opacity: 0.4;
}

.value-text {
    font-size: 0.95rem;
    color: #4b5563;
    font-weight: 500;
   
}

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

    .packages-comparison-table-header,
    .packages-comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .packages-header-section {
        padding: 40px 0;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .packages-comparison-section {
        padding: 60px 0;
    }

    .packages-comparison-table-header {
        display: none;
    }

    .packages-comparison-row {
        grid-template-columns: 1fr;
        border-bottom: 2px solid #e5e7eb;
    }

    .packages-comparison-feature {
        padding: 16px 20px;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        background-color: #f9fafb;
    }

    .packages-comparison-cell {
        padding: 16px 20px;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .packages-comparison-row .packages-comparison-cell:nth-child(2)::before {
        content: "Plus";
        font-weight: 600;
        color: #111827;
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .packages-comparison-row .packages-comparison-cell:nth-child(3)::before {
        content: "Kobi";
        font-weight: 600;
        color: #111827;
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .packages-comparison-row .packages-comparison-cell:nth-child(4)::before {
        content: "Premium";
        font-weight: 600;
        color: #111827;
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .packages-comparison-row .packages-comparison-cell:nth-child(5)::before {
        content: "Concept";
        font-weight: 600;
        color: #111827;
        font-size: 0.95rem;
        flex-shrink: 0;
    }

    .packages-comparison-cell:last-child {
        border-bottom: none;
    }

    .packages-comparison-group-header {
        padding: 16px 20px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .packages-header-section {
        padding: 30px 0;
    }

    .package-card {
        padding: 24px 20px;
    }

    .package-name {
        font-size: 1.5rem;
    }

    .package-price {
        font-size: 1.75rem;
    }

    .packages-comparison-section {
        padding: 40px 0;
    }

    .packages-comparison-feature {
        padding: 14px 16px;
    }

    .packages-comparison-cell {
        padding: 14px 16px;
    }

    .packages-feature-title {
        font-size: 0.95rem;
    }

    .packages-feature-helper {
        font-size: 0.8rem;
    }
}

/* Themes Carousel Section */
.themes-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.themes-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.themes-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111827;
   
}

.themes-title span {
    color: #2563eb;
}

.themes-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 50px;
   
}

.themes-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.themes-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.theme-item {
    flex: 0 0 calc(25% - 18px);
    min-width: 0;
}

.theme-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.theme-image-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.theme-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.theme-image-wrapper:hover .theme-image {
    transform: scale(1.05);
}

.theme-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-image-wrapper:hover .theme-overlay {
    opacity: 1;
}

.theme-preview-btn {
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
   
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.theme-preview-btn:hover {
    background-color: #1d4ed8;
    transform: scale(1.05);
}

.theme-name {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-top: 16px;
   
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    background-color: #ffffff;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-btn:disabled:hover {
    background-color: #ffffff;
    color: #2563eb;
    border-color: #e5e7eb;
}

/* Theme Modal (Lightbox) */
.theme-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

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

.theme-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.theme-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10001;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.theme-modal-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.theme-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.theme-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Themes Section Responsive */
@media (max-width: 1200px) {
    .theme-item {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (max-width: 768px) {
    .themes-section {
        padding: 60px 0;
    }

    .themes-title {
        font-size: 2rem;
    }

    .themes-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .theme-item {
        flex: 0 0 calc(50% - 12px);
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .themes-section {
        padding: 40px 0;
    }

    .themes-title {
        font-size: 1.75rem;
    }

    .theme-item {
        flex: 0 0 100%;
    }

    .theme-name {
        font-size: 1.1rem;
    }

    .theme-preview-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Software Screenshots (Masonry Floating Grid) */
.screenshots-section {
    background: radial-gradient(circle at top, #eef2ff 0%, #ffffff 45%, #f9fafb 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.screenshots-section::before,
.screenshots-section::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(59,130,246,0.16) 0%, transparent 65%);
    filter: blur(4px);
    z-index: 0;
}

.screenshots-section::before {
    top: -80px;
    left: -60px;
}

.screenshots-section::after {
    bottom: -120px;
    right: -80px;
}

.screenshots-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.screenshots-header {
    text-align: center;
    margin-bottom: 48px;
}

.screenshots-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.screenshots-title span {
    color: #2563eb;
}

.screenshots-subtitle {
    font-size: 1.05rem;
    color: #6b7280;
}

.screenshots-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    align-items: flex-start;
    perspective: 1200px;
}

.screenshot-card {
    position: relative;
    transform-style: preserve-3d;
    cursor: pointer;
}

.screenshot-inner {
    width: 100%;
    height: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f3f4ff 100%);
    box-shadow:
        0 18px 40px rgba(15, 23, 42, 0.18),
        0 1px 0 rgba(255, 255, 255, 0.6) inset;
    transform: translateZ(0) translateY(0);
    animation: screenshotFloat 7s ease-in-out infinite alternate;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-inner:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 24px 50px rgba(15, 23, 42, 0.25),
        0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

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

.screenshot-card.size-sm {
    width: 80px;
    height: 80px;
}

.screenshot-card.size-md {
    width: 190px;
    height: 190px;
}

.screenshot-card.size-lg {
    width: 300px;
    height: 300px;
}

/* Slight randomization for "floating in space" effect */
.screenshot-card:nth-child(1) .screenshot-inner { animation-duration: 8s; animation-delay: -1s; transform-origin: 50% 20%; }
.screenshot-card:nth-child(2) .screenshot-inner { animation-duration: 9s; animation-delay: -3s; transform-origin: 10% 80%; }

@keyframes screenshotFloat {
    0% {
        transform: translateY(6px) translateZ(0) rotateX(3deg) rotateY(-2deg);
    }
    50% {
        transform: translateY(-10px) translateZ(10px) rotateX(-1deg) rotateY(2deg);
    }
    100% {
        transform: translateY(4px) translateZ(0) rotateX(2deg) rotateY(-1deg);
    }
}

/* Screenshots Responsive */
/* Screenshot Modal Styles */
.screenshot-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

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

.screenshot-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.screenshot-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10001;
    animation: screenshotModalFadeIn 0.3s ease;
}

@keyframes screenshotModalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.screenshot-modal-image {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.screenshot-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    font-size: 24px;
    font-weight: 300;
}

.screenshot-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Screenshots Responsive */
@media (max-width: 1024px) {
    .screenshots-title {
        font-size: 2.1rem;
    }

    .screenshot-card.size-lg {
        width: 250px;
        height: 250px;
    }

    .screenshot-card.size-md {
        width: 160px;
        height: 160px;
    }

    .screenshot-card.size-sm {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .screenshots-section {
        padding: 60px 0;
    }

    .screenshots-title {
        font-size: 1.9rem;
    }

    .screenshots-grid {
        gap: 16px;
    }

    .screenshot-card.size-lg {
        width: 200px;
        height: 200px;
    }

    .screenshot-card.size-md {
        width: 140px;
        height: 140px;
    }

    .screenshot-card.size-sm {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .screenshots-section {
        padding: 40px 0;
    }

    .screenshots-grid {
        gap: 12px;
    }

    .screenshot-card.size-lg {
        width: 150px;
        height: 150px;
    }

    .screenshot-card.size-md {
        width: 100px;
        height: 100px;
    }

    .screenshot-card.size-sm {
        width: 50px;
        height: 50px;
    }

    .screenshot-modal-content {
        max-width: 95%;
    }

    .screenshot-modal-close {
        top: -40px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* Demo Modal Styles */
.demo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.demo-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.demo-modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    margin: 50px auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

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

.demo-modal-header {
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
}

.demo-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
}

.demo-modal-close:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.demo-modal-body {
    padding: 24px;
}

.demo-modal-body p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
}

.demo-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
}

.demo-modal-btn {
    background-color: #2563eb;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.demo-modal-btn:hover {
    background-color: #1d4ed8;
}

.demo-submit-btn:disabled,
.hero-cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Demo Form Modal Styles */
.demo-form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-form-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.demo-form-modal-content {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    z-index: 10002;
}

.demo-form-modal-header {
    padding: 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
}

.demo-form-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.demo-form-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
}

.demo-form-modal-close:hover {
    background-color: #f3f4f6;
    color: #111827;
}

.demo-form-modal-body {
    padding: 24px;
}

.demo-form-modal-desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
}

.demo-form-modal-body .demo-request-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.demo-form-modal-body .demo-form-group {
    width: 100%;
}

.demo-form-modal-body .demo-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.demo-form-modal-body .demo-input:focus {
    outline: none;
    border-color: #2563eb;
}

.demo-form-modal-body .demo-submit-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-form-modal-body .demo-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

/* Demo Form Modal Responsive */
@media (max-width: 768px) {
    .demo-form-modal-content {
        max-width: 90%;
        margin: 20px;
    }

    .demo-form-modal-header {
        padding: 20px;
    }

    .demo-form-modal-header h3 {
        font-size: 1.25rem;
    }

    .demo-form-modal-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .demo-form-modal-content {
        max-width: 95%;
        margin: 10px;
        border-radius: 12px;
    }

    .demo-form-modal-header {
        padding: 16px;
    }

    .demo-form-modal-header h3 {
        font-size: 1.1rem;
    }

    .demo-form-modal-body {
        padding: 16px;
    }

    .demo-form-modal-desc {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
}

/* Products Section Styles */
.products-section {
    background-color: #ffffff;
    padding: 80px 0;
}

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

.products-category {
    margin-bottom: 60px;
}

.products-category:last-child {
    margin-bottom: 0;
}

.products-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.product-content {
    padding: 24px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

.product-title a {
    color: #111827;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #2563eb;
}

.product-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.product-link {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.3s ease;
}

.product-link:hover {
    background-color: #1d4ed8;
}

.no-products {
    text-align: center;
    font-size: 1.25rem;
    color: #6b7280;
    padding: 60px 20px;
}

/* Product Detail Section Styles */
.product-detail-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.product-detail-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.product-detail-images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-main-image {
    width: 100%;
    background-color: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

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

.product-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.product-gallery-item {
    width: 100%;
    aspect-ratio: 1;
    background-color: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.product-gallery-item:hover {
    border-color: #2563eb;
}

.product-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
}

.product-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
}

.product-detail-meta-desc {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 30px;
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.price-label {
    font-size: 1.1rem;
    color: #6b7280;
    font-weight: 500;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.product-detail-category {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 12px 16px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.category-label {
    font-size: 0.95rem;
    color: #6b7280;
    font-weight: 500;
}

.category-value {
    font-size: 1rem;
    color: #111827;
    font-weight: 600;
}

.product-detail-actions {
    display: flex;
    gap: 16px;
    margin-top: auto;
}

.product-detail-btn {
    flex: 1;
    display: inline-block;
    padding: 16px 24px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: background-color 0.3s ease;
}

.product-detail-btn:hover {
    background-color: #1d4ed8;
}

.product-detail-btn-secondary {
    flex: 1;
    display: inline-block;
    padding: 16px 24px;
    background-color: #ffffff;
    color: #2563eb;
    text-decoration: none;
    border: 2px solid #2563eb;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.product-detail-btn-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.product-detail-content {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 2px solid #e5e7eb;
}

.product-detail-content-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 30px;
}

.product-detail-content-body {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.8;
}

.product-detail-content-body ul,
.product-detail-content-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.product-detail-content-body li {
    margin-bottom: 12px;
}

.product-detail-content-body p {
    margin-bottom: 20px;
}

/* Products Responsive */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .product-detail-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }

    .products-category {
        margin-bottom: 40px;
    }

    .products-category-title {
        font-size: 1.75rem;
        margin-bottom: 24px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-detail-section {
        padding: 60px 0;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-detail-title {
        font-size: 2rem;
    }

    .product-detail-actions {
        flex-direction: column;
    }

    .product-gallery {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 40px 0;
    }

    .products-category-title {
        font-size: 1.5rem;
    }

    .product-card {
        border-radius: 12px;
    }

    .product-content {
        padding: 20px;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .product-price {
        font-size: 1.25rem;
    }

    .product-detail-section {
        padding: 40px 0;
    }

    .product-detail-title {
        font-size: 1.75rem;
    }

    .product-detail-meta-desc {
        font-size: 1rem;
    }

    .price-value {
        font-size: 1.5rem;
    }

    .product-detail-content {
        margin-top: 40px;
        padding-top: 40px;
    }

    .product-detail-content-title {
        font-size: 1.5rem;
    }

    .product-detail-content-body {
        font-size: 1rem;
    }

    .product-gallery {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-main-image {
        min-height: 300px;
    }
}

/* FAQ Section Styles */
.faq-section {
    background-color: #f9fafb;
    padding: 80px 0;
}

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

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    border-color: #2563eb;
}

.faq-item.active {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #2563eb;
}

.faq-question span:first-child {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #2563eb;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    margin: 0;
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    padding-top: 16px;
}

/* FAQ Responsive */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 1rem;
    }

    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-container {
        padding: 0 16px;
    }

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

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }

    .faq-icon {
        font-size: 1.25rem;
        width: 20px;
        height: 20px;
    }

    .faq-answer {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer {
        padding: 0 16px 16px 16px;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

