/* ============================================
   Section Styles
   ============================================ */

/* Brand Integrations Section */
.brand-integrations {
    padding: var(--spacing-2xl) 0;
    background: var(--color-background-light);
}

.brand-ecosystem {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: var(--spacing-xl) auto;
    min-height: 200px;
    padding: var(--spacing-lg) 0;
    width: 100%;
}

/* Central S1 Hub - Neumorphism Style - Centered and on Top */
.brand-hub {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 30;
    pointer-events: none;
    margin: 0 !important;
    padding: 0 !important;
    width: auto;
    right: auto;
}

.hub-frame {
    width: 200px;
    height: 200px;
    background: linear-gradient(145deg, #FFFFFF, #F1F5F9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        12px 12px 24px rgba(0, 0, 0, 0.12),
        -12px -12px 24px rgba(255, 255, 255, 1),
        inset 2px 2px 4px rgba(255, 255, 255, 0.9),
        inset -2px -2px 4px rgba(0, 0, 0, 0.05),
        0 0 40px rgba(0, 86, 210, 0.15);
    border: 2px solid rgba(0, 86, 210, 0.2);
    transition: all var(--transition-base);
    pointer-events: auto;
    margin: 0 auto;
}

.hub-frame:hover {
    transform: translateY(-4px);
    box-shadow: 
        16px 16px 32px rgba(0, 0, 0, 0.15),
        -16px -16px 32px rgba(255, 255, 255, 1),
        0 0 60px rgba(0, 86, 210, 0.25);
}

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

.hub-logo {
    width: 130px; /* ihtiyacına göre */
    height: 110px; /* ihtiyacına göre */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gray-600);
    font-family: var(--font-body);
}

/* Brand Carousel Wrapper - Horizontal Scrolling */
.brand-carousel-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    padding: 0;
    z-index: 10;
}

.brand-band {
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
    z-index: 10;
}

.brand-band-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
    align-items: center;
    padding: var(--spacing-md) 0;
}

/* Single Band: Continuous scroll - 25 brands */
.brand-band-single .brand-band-track {
    animation: scrollBand 60s linear infinite;
}

@keyframes scrollBand {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    z-index: 10;
}

/* Brand Frame - Neumorphism Style */
.brand-frame {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #FFFFFF, #F8FAFC);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 
        4px 4px 8px rgba(0, 0, 0, 0.08),
        -4px -4px 8px rgba(255, 255, 255, 0.9),
        inset 1px 1px 2px rgba(255, 255, 255, 0.9),
        inset -1px -1px 2px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 86, 210, 0.1);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.brand-frame:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        5px 5px 10px rgba(0, 0, 0, 0.1),
        -5px -5px 10px rgba(255, 255, 255, 1);
}

.brand-logo {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(10%) opacity(0.9);
    transition: all var(--transition-base);
}

.brand-frame:hover .brand-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.brand-placeholder {
    font-size: 0.75rem;
    font-weight: 700;
    color: #334155;
    text-align: center;
    font-family: var(--font-heading);
    line-height: 1.2;
    padding: 10px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    word-break: break-word;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

/* Background pattern for brand ecosystem */
.brand-ecosystem::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, rgba(0, 86, 210, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* Brand Integrations Footer */
.brand-integrations-footer {
    text-align: center;
    max-width: 800px;
    margin: var(--spacing-2xl) auto 0;
}

.brand-integrations-text {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    line-height: 1.75;
    margin-bottom: var(--spacing-lg);
}

.brand-integrations-footer .btn {
    margin-top: var(--spacing-md);
}

/* Page Hero */
.page-hero {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
    font-weight: 700;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 4rem;
    }
}

.page-description {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* S1 Software Section */
.s1-software {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, #0a1628 0%, #1a2d4d 50%, #0d1f3c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.s1-software::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 200, 150, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.12) 0%, transparent 40%);
}

.s1-software::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

.s1-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .s1-content {
        grid-template-columns: 1fr 1fr;
    }
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(6, 182, 212, 0.2));
    color: #34d399;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-body);
    border: 1px solid rgba(52, 211, 153, 0.3);
    letter-spacing: 0.02em;
}

.section-title-large {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.15;
    color: #f8fafc;
    font-weight: 700;
}

.section-title-large .text-accent {
    color: #34d399 !important;
    display: block;
}

@media (min-width: 768px) {
    .section-title-large {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title-large {
        font-size: 3.5rem;
    }
}

.section-description-large {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
    color: #94a3b8;
}

.s1-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.feature-item {
    display: flex;
    align-items: start;
    gap: var(--spacing-md);
    padding: var(--spacing-sm) 0;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(52, 211, 153, 0.15), rgba(6, 182, 212, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #34d399;
    flex-shrink: 0;
    border: 1px solid rgba(52, 211, 153, 0.2);
}

.feature-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #e2e8f0;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.5;
}

.s1-dashboard {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.98));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-lg);
    color: #1e293b;
    font-weight: 600;
    font-size: 0.95rem;
}

.window-controls {
    display: flex;
    gap: 6px;
}

.window-controls span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.window-controls span:nth-child(1) {
    background: #10b981;
}

.window-controls span:nth-child(2) {
    background: #f59e0b;
}

.window-controls span:nth-child(3) {
    background: #3b82f6;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.dashboard-stat {
    background: linear-gradient(145deg, #f8fafc, #f1f5f9);
    padding: var(--spacing-md);
    text-align: center;
    border-radius: 12px;
    border: 1px solid rgba(0, 86, 210, 0.08);
    border-radius: var(--radius-md);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0056D2;
    font-family: var(--font-heading);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dashboard-chart {
    height: 120px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(0, 86, 210, 0.05);
}

.dashboard-brands {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.brand-badge {
    background: linear-gradient(145deg, #f8fafc, #f1f5f9);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    color: #475569;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* S1 Section Button */
.btn-s1 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-s1:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.btn-s1 svg {
    transition: transform 0.3s ease;
}

.btn-s1:hover svg {
    transform: translateX(4px);
}

/* PDKS Section */
.pdks-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.pdks-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 86, 210, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.pdks-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .pdks-content {
        grid-template-columns: 1fr 1fr;
    }
}

.pdks-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: var(--spacing-xl);
    border-radius: 20px;
    box-shadow: 
        20px 20px 40px rgba(0, 0, 0, 0.08),
        -20px -20px 40px rgba(255, 255, 255, 0.9),
        0 0 0 1px rgba(0, 86, 210, 0.05);
    border: 1px solid rgba(0, 86, 210, 0.08);
}

.pdks-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: var(--spacing-lg);
}

.pdks-card-header h3 {
    font-size: 1.25rem;
    color: #1e293b;
    font-weight: 700;
}

.pdks-card .status-dot {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

.pdks-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.pdks-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md);
    background: linear-gradient(145deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.pdks-item:hover {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
}

.pdks-name {
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.pdks-role {
    font-size: 0.8rem;
    color: #475569;
}

.pdks-time {
    text-align: right;
}

.time-value {
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 2px;
    font-size: 1.1rem;
}

.time-label {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pdks-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    padding-top: var(--spacing-lg);
    border-top: 1px solid #e2e8f0;
    margin-top: var(--spacing-md);
}

.pdks-stat {
    text-align: center;
    padding: var(--spacing-sm) 0;
}

.pdks-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0891b2;
    font-family: var(--font-heading);
    margin-bottom: 4px;
}

.pdks-stat:nth-child(2) .pdks-stat-value {
    color: #ea580c;
}

.pdks-stat:nth-child(3) .pdks-stat-value {
    color: #059669;
}

.pdks-stat-label {
    font-size: 0.7rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* PDKS Badge - Teal/Cyan theme */
.pdks-badge {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(6, 182, 212, 0.12)) !important;
    color: #0d9488 !important;
    border: 1px solid rgba(20, 184, 166, 0.3) !important;
}

/* PDKS Text Section Styling */
.pdks-text .section-title-large {
    color: #0f172a;
    font-weight: 700;
}

.pdks-text .section-title-large .text-accent {
    background: linear-gradient(135deg, #10b981, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pdks-text .section-description-large {
    color: #334155;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Rotating Text Animation */
.rotating-text-wrapper {
    display: block;
    position: relative;
    height: 1.2em;
    overflow: hidden;
}

.rotating-text {
    display: block;
    position: relative;
}

.rotate-word {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
}

.rotate-word.active {
    opacity: 1;
    transform: translateY(0);
}

.rotate-word.exit {
    opacity: 0;
    transform: translateY(-100%);
}

.pdks-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.pdks-feature {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    padding: var(--spacing-lg);
    border-radius: 16px;
    border: 1px solid rgba(0, 86, 210, 0.06);
    transition: all 0.3s ease;
    box-shadow: 
        8px 8px 20px rgba(0, 0, 0, 0.04),
        -8px -8px 20px rgba(255, 255, 255, 0.8);
}

.pdks-feature:hover {
    transform: translateY(-4px);
    box-shadow: 
        12px 12px 30px rgba(0, 0, 0, 0.08),
        -12px -12px 30px rgba(255, 255, 255, 1);
    border-color: rgba(16, 185, 129, 0.2);
}

.pdks-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(6, 182, 212, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(20, 184, 166, 0.2);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.1);
}

.pdks-feature svg {
    color: #0d9488;
    width: 24px;
    height: 24px;
}

.pdks-feature h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    color: #0f172a;
    font-weight: 700;
}

.pdks-feature p {
    font-size: 0.875rem;
    color: #475569;
    line-height: 1.6;
}

.pdks-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.btn-outline-dark {
    border: 2px solid #0056D2;
    color: #0056D2;
    background: transparent;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background: #0056D2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 86, 210, 0.3);
}

.btn-outline-dark:hover {
    background: var(--color-primary);
    color: white;
}

/* Partners Section */
.partners {
    padding: var(--spacing-xl) 0;
    background: white;
    border-top: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--color-gray-400);
    transition: all var(--transition-base);
}
.partner-item img{
    height:100%;
  
}
.partner-item:hover {
    background: var(--color-gray-100);
    color: var(--color-secondary);
}

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

.partners-link a {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-primary);
    font-weight: 600;
    transition: color var(--transition-base);
}

.partners-link a:hover {
    color: var(--color-primary-dark);
}

/* Blog Section */
.blog-section {
    padding: var(--spacing-2xl) 0;
    background: var(--color-background-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-category {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-heading);
}

.blog-content {
    padding: var(--spacing-md);
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm);
}

.blog-category-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    background: rgba(0, 86, 210, 0.1);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
}

.blog-date {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.75rem;
    color: var(--color-gray-400);
}

.blog-title {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    font-size: 0.875rem;
    color: var(--color-gray-600);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    transition: color var(--transition-base);
}

.blog-link:hover {
    color: var(--color-primary-dark);
}

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

/* Newsletter Section */
.newsletter-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-primary-light);
}

.newsletter-content-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .newsletter-content-inline {
        flex-direction: row;
    }
}

.newsletter-title-inline {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-heading);
}

.newsletter-description-inline {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.newsletter-form-inline {
    display: flex;
    gap: var(--spacing-sm);
    width: 100%;
    max-width: 500px;
}

.newsletter-input-inline {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
}

.newsletter-submit-inline {
    background: var(--color-accent);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-base);
}

.newsletter-submit-inline:hover {
    background: var(--color-accent-dark);
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
}

@media (min-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-heading);
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: start;
    gap: var(--spacing-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 86, 210, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.contact-label {
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: var(--spacing-xs);
}

.contact-value {
    color: var(--color-gray-600);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-weight: 500;
    color: var(--color-secondary);
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-base);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 86, 210, 0.1);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Footer Styles */
.footer {
    background: var(--color-secondary);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo-main {
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.footer-logo .logo-sub {
    font-size: 1.125rem;
    font-family: var(--font-body);
    margin-left: var(--spacing-xs);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background var(--transition-base);
}

    .social-icon:hover {
        color: #fff;
        background: linear-gradient(135deg,#2f80ff,#6a5cff);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(47,128,255,.35);
    }


.app-store-btn {
    background: black;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    display: inline-block;
    transition: background var(--transition-base);
}

.app-store-btn:hover {
    background: var(--color-gray-900);
}

.app-store-text {
    font-size: 0.625rem;
    font-weight: 600;
    color: white;
}

.app-store-name {
    font-size: 1rem;
    font-weight: 700;
    color: white;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
}

.footer-title-margin {
    margin-top: var(--spacing-lg);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color var(--transition-base);
}

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

.footer-newsletter {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

@media (min-width: 768px) {
    .footer-newsletter {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.newsletter-content {
    flex: 1;
}

.newsletter-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    font-family: var(--font-heading);
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.newsletter-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 400px;
}

.newsletter-input {
    flex: 1;
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    font-family: var(--font-body);
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-submit {
    background: var(--color-accent);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-base);
}

.newsletter-submit:hover {
    background: var(--color-accent-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer-brand {
    font-weight: 700;
    font-family: var(--font-heading);
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color var(--transition-base);
}

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

