/* Cloud Office Page Styles */
.office-page {
    min-height: 100vh;
    background-color: #fff;
}

.office-hero {
    background: #0e0a18;
    position: relative;
    color: #fff;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.office-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 150%, rgba(74, 47, 189, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% -50%, rgba(74, 47, 189, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, #0e0a18 0%, rgba(14, 10, 24, 0.9) 100%);
}

.office-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.office-hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: linear-gradient(45deg, rgba(74, 47, 189, 0.05) 0%, rgba(74, 47, 189, 0) 100%);
    transform: rotate(-12deg);
    border-radius: 30px;
    filter: blur(20px);
}

.office-hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.02) 0px,
        rgba(255, 255, 255, 0.02) 1px,
        transparent 1px,
        transparent 30px
    );
    opacity: 0.5;
}

.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.office-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.office-hero-text {
    max-width: 600px;
}

.office-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.office-subtitle {
    margin-bottom: 2rem;
}

.office-hero-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
}

.office-hero-text p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.office-hero-buttons {
    display: flex;
    gap: 1rem;
}

.office-btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #fff;
    color: #0e0a18;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.office-btn-primary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.9);
}

.office-btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.office-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.office-features {
    position: relative;
}

.office-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.office-feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.office-feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.office-feature-icon {
    font-size: 2rem;
    color: #fff;
    opacity: 0.9;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.office-feature-label {
    flex-grow: 1;
    text-align: left;
}

.office-feature-label h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        width: 100%;
        max-width: 1200px;
    }

    .office-hero-text h1 {
        font-size: 4rem;
    }

    .office-hero-text h2 {
        font-size: 2.25rem;
    }
}

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

    .office-hero-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .office-hero-text {
        max-width: 100%;
    }

    .office-hero-buttons {
        justify-content: center;
    }

    .office-feature-grid {
        max-width: 600px;
        margin: 0 auto;
    }
}

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

    .office-hero-text h1 {
        font-size: 2.5rem;
    }

    .office-hero-text h2 {
        font-size: 2rem;
    }

    .office-hero-text p {
        font-size: 1.125rem;
    }

    .office-feature-item {
        padding: 1.5rem;
        gap: 1rem;
    }

    .office-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .office-feature-label h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {
    .office-hero {
        padding: 60px 0;
    }

    .container {
        padding: 0 1rem;
    }

    .office-hero-text h1 {
        font-size: 2.5rem;
    }

    .office-hero-text h2 {
        font-size: 1.75rem;
    }

    .office-feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .office-hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .office-btn-primary,
    .office-btn-secondary {
        width: 100%;
        text-align: center;
    }
}

.office-about {
    padding: 120px 0;
    background: #fff;
    position: relative;
}

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

.office-section-header.dark {
    color: #fff;
}

.office-section-subtitle {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4a5568;
    margin-bottom: 1rem;
    display: block;
}

.office-section-subtitle.dark {
    color: rgba(255, 255, 255, 0.7);
}

.office-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.office-section-header.dark h2 {
    color: #fff;
}

.office-section-line {
    width: 60px;
    height: 4px;
    background: #4a5568;
    margin: 0 auto;
}

.office-section-line.dark {
    background: rgba(255, 255, 255, 0.2);
}

.office-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    margin-bottom: 4rem;
}

.office-about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.office-about-description {
    color: #4a5568;
}

.office-about-description p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.125rem;
}

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

.office-about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.office-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(14, 10, 24, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(14, 10, 24, 0.05);
}

.office-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0e0a18;
    display: block;
    margin-bottom: 0.5rem;
}

.office-stat-label {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
}

.office-comparison-card {
    background: rgba(14, 10, 24, 0.95);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.office-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.office-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.office-card-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.office-comparison-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.office-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.office-card-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

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

.office-card-list li i {
    font-size: 1rem;
    color: #fff;
}

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

.office-feature-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(14, 10, 24, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.office-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(14, 10, 24, 0.1);
    border-color: rgba(14, 10, 24, 0.2);
}

.office-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(14, 10, 24, 0.03);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.office-feature-icon i {
    font-size: 1.25rem;
    color: #fff;
}

.office-feature-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0e0a18;
    margin-bottom: 0.75rem;
}

.office-feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
}

@media (max-width: 1024px) {
    .office-about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .office-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .office-comparison-card {
        padding: 1.5rem;
    }
}

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

    .office-section-header h2 {
        font-size: 2.25rem;
    }

    .office-about-stats {
        grid-template-columns: 1fr;
    }

    .office-feature-box {
        padding: 2rem;
    }

    .office-comparison-card {
        padding: 1.25rem;
    }

    .office-card-header h4 {
        font-size: 1.125rem;
    }

    .office-comparison-card p,
    .office-card-list li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .office-about {
        padding: 40px 0;
    }

    .office-section-header h2 {
        font-size: 1.75rem;
    }

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

    .office-feature-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .office-comparison-card {
        padding: 1.5rem;
    }
}

.office-tech {
    padding: 120px 0;
    background: #0e0a18;
    position: relative;
    color: #fff;
}

.office-tech-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

.office-tech-item {
    background: rgba(255, 255, 255, 0.01);
    padding: 0;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.3s ease;
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
    overflow: hidden;
}

.office-tech-item.reverse {
    flex-direction: row-reverse;
}

.office-tech-item::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.213), rgba(255, 255, 255, 0.1));
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.office-tech-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.06);
}

.office-tech-item:hover::before {
    opacity: 1;
}

.office-tech-logo {
    width: 500px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    padding: 3rem;
}

.office-tech-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
  
    opacity: 0.9;
    transition: all 0.3s ease;
}

.office-tech-logo img:hover {
    opacity: 1;
}

.office-tech-item:hover .office-tech-logo {
    background: rgba(0, 0, 0, 0.15);
}

.office-tech-info {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    position: relative;
    z-index: 2;
}

.office-tech-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.office-tech-title h3 {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.office-tech-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.office-tech-info p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-width: 600px;
}

@media (max-width: 1200px) {
    .office-tech-logo {
        width: 450px;
        padding: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .office-tech-logo {
        width: 400px;
        padding: 2rem;
    }

    .office-tech-info {
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .office-tech {
        padding: 80px 0;
    }

    .office-tech-item,
    .office-tech-item.reverse {
        flex-direction: column;
    }

    .office-tech-logo {
        width: 100%;
        padding: 2rem;
    }

    .office-tech-info {
        padding: 2rem;
        text-align: center;
    }

    .office-tech-title {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .office-tech {
        padding: 60px 0;
    }

    .office-tech-logo {
        padding: 1.5rem;
    }

    .office-tech-info {
        padding: 1.5rem;
    }
}

.office-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.office-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.office-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
}

.office-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.office-lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.office-lightbox-close:hover {
    transform: scale(1.1);
}

.lightbox-trigger {
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-trigger:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .office-lightbox-close {
        top: -50px;
        right: 0;
    }
}

.office-quote {
    background: #fff;
    padding: 80px 0;
}

.office-quote-content {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.office-quote-form {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(14, 10, 24, 0.1);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group.half-width {
    flex: 1;
    min-width: 280px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    color: #2d3748;
    background-color: #fff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
    color: #2d3748;
}

.form-group .required {
    color: #e53e3e;
    margin-left: 4px;
}

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

.required {
    color: #ff4b6e;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #4a5568;
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-label a {
    color: #0e0a18;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.office-quote-submit {
    background: #0e0a18;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-size: 1rem;
}

.office-quote-submit:hover {
    background: rgba(14, 10, 24, 0.9);
}

.form-note {
    margin-top: 15px;
    font-size: 0.875rem;
    color: #4a5568;
    text-align: center;
}

/* Alert stilleri */
.alert {
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-success {
    background-color: rgba(72, 187, 120, 0.1);
    border: 1px solid rgba(72, 187, 120, 0.2);
    color: #2f855a;
}

.alert-error {
    background-color: rgba(245, 101, 101, 0.1);
    border: 1px solid rgba(245, 101, 101, 0.2);
    color: #c53030;
}

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

    .office-quote-content {
        flex-direction: column;
    }

    .office-quote-form {
        padding: 20px;
    }
}

/* About section specific styles */
.office-about {
    background: #fff;
    padding: 80px 0;
}

.office-about .office-about-description {
    color: #4a5568;
}

/* Tech section specific styles */
.office-tech {
    background: #0e0a18;
    padding: 80px 0;
    color: #fff;
}

.office-tech .office-about-description {
    color: rgba(255, 255, 255, 0.7);
}

/* Quote section specific styles */
.office-quote {
    background: #fff;
    padding: 80px 0;
}

.office-quote .office-about-description {
    color: #4a5568;
}

/* Light background icons */
.office-about .office-feature-box .office-feature-icon,
.office-quote .office-feature-box .office-feature-icon {
    color: #1a202c;
    background: rgba(74, 85, 104, 0.1);
}

.office-about .office-feature-box .office-feature-icon i,
.office-quote .office-feature-box .office-feature-icon i {
    color: #1a202c;
}

.office-about .office-card-icon i,
.office-quote .office-card-icon i {
    color: #1a202c;
}

.office-about .office-card-list li i,
.office-quote .office-card-list li i {
    color: #1a202c;
}

/* Dark background icons */
.office-hero .office-feature-icon,
.office-tech .office-feature-icon {
    background: rgba(255, 255, 255, 0.1);
}

.office-hero .office-feature-icon i,
.office-tech .office-feature-icon i {
    color: #fff;
}

.office-hero .office-card-icon i,
.office-tech .office-card-icon i {
    color: #fff;
}

.office-hero .office-card-list li i,
.office-tech .office-card-list li i {
    color: #fff;
}

/* Feature boxes hover effects */
.office-feature-box:hover .office-feature-icon {
    transform: translateY(-2px);
}

.office-about .office-feature-box:hover .office-feature-icon,
.office-quote .office-feature-box:hover .office-feature-icon {
    background: rgba(74, 85, 104, 0.15);
}

.office-hero .office-feature-box:hover .office-feature-icon,
.office-tech .office-feature-box:hover .office-feature-icon {
    background: rgba(255, 255, 255, 0.15);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Offset for fixed header */
#technologies,
#quote-form {
    scroll-margin-top: 80px;
}

.faq-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.faq-section .section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 32px;
    font-weight: 700;
    color: #1a202c;
}

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

.accordion-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-button {
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #2d3748;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-button:hover {
    background-color: #f7fafc;
}

.accordion-button::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.accordion-button.active {
    background-color: #f7fafc;
}

.accordion-button.active::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-content.active {
    max-height: 1000px;
    padding: 0 25px 20px;
}

.accordion-content p {
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
}

.accordion-content ul {
    margin: 0;
    padding-left: 20px;
    color: #4a5568;
    line-height: 1.6;
}

.accordion-content li {
    margin-bottom: 8px;
}

.accordion-content li:last-child {
    margin-bottom: 0;
} 