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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.ab-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.ab-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #f0f0f0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.ab-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.ab-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.ab-logo {
    width: 50px;
    height: 50px;
    background-image: url('img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    flex-shrink: 0;
}

.ab-company-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ab-company-main {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.ab-company-sub {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff6b35;
    line-height: 1;
    letter-spacing: 0.02em;
}

.ab-nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.ab-nav-menu a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 20px;
    border-radius: 25px;
}

.ab-nav-menu a:hover,
.ab-nav-active {
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.ab-nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.ab-nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.ab-main {
    margin-top: 100px;
}

.ab-hero {
    padding: 140px 0 120px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.ab-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -50%;
    width: 100%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
    transform: rotate(-20deg);
    z-index: 1;
}

.ab-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ab-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.ab-hero-title .highlight {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.ab-hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #666666;
    font-weight: 400;
}

.ab-hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.ab-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ab-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.ab-section-description {
    font-size: 1.1rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.ab-contact-info {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.ab-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.ab-contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
}

.ab-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ab-contact-card:hover::before {
    opacity: 1;
}

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

.ab-contact-icon {
    margin-bottom: 20px;
}

.ab-contact-icon img {
    width: 60px;
    height: 60px;
}

.ab-contact-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
}

.ab-contact-number {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff6b35;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.ab-contact-desc {
    font-size: 0.9rem;
    color: #666666;
    position: relative;
    z-index: 2;
}

.ab-contact-form {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    position: relative;
    z-index: 10;
}

.ab-form-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.ab-form-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.ab-form-description {
    font-size: 1.1rem;
    color: #666666;
    line-height: 1.6;
}

.ab-form-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.ab-consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.ab-form-group input,
.ab-form-group select,
.ab-form-group textarea {
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.3s ease;
}

.ab-form-group input:focus,
.ab-form-group select:focus,
.ab-form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

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

.ab-form-submit {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.ab-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.ab-office-map {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    z-index: 10;
}

.ab-map-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: start;
}

.ab-map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.ab-map-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.ab-office-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.ab-office-address {
    margin-bottom: 30px;
}

.ab-office-address p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 5px;
}

.ab-office-address p strong {
    color: #1a1a1a;
    font-weight: 600;
}

.ab-office-hours h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.ab-office-hours p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 5px;
}

.ab-faq {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f8f8f8 100%);
    position: relative;
    z-index: 10;
}

.ab-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.ab-faq-item {
    background: #ffffff;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.ab-faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.ab-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ab-faq-question h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.ab-faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    transition: transform 0.3s ease;
}

.ab-faq-item.active .ab-faq-toggle {
    transform: rotate(45deg);
}

.ab-faq-answer {
    padding: 0 30px 25px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.ab-faq-item.active .ab-faq-answer {
    display: block;
}

.ab-faq-answer p {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

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

.ab-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.ab-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    transform: rotate(-15deg);
}

.ab-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.ab-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.ab-cta-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ab-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.ab-btn-cta-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.ab-btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

.ab-btn-cta-secondary {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.ab-footer {
    background: #f8f9fa;
    padding: 60px 0 30px;
    border-top: 1px solid #e9ecef;
}

.ab-footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 40px;
}

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

.ab-footer-description {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 25px;
}

.ab-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ab-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ab-contact-item span {
    font-weight: 600;
    color: #2c3e50;
    min-width: 70px;
}

.ab-contact-item a {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ab-contact-item a:hover {
    color: #ff6b35;
}

.ab-footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.ab-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ab-footer-links a {
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.ab-footer-links a:hover {
    color: #ff6b35;
}

.ab-footer-address {
    font-style: normal;
    color: #7f8c8d;
    line-height: 1.6;
}

.ab-footer-bottom {
    border-top: 1px solid #e9ecef;
    padding-top: 30px;
    text-align: center;
}

.ab-footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Privacy Notice */
.ab-privacy-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9999;
}

.ab-privacy-notice.show {
    transform: translateY(0);
}

.ab-privacy-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.ab-privacy-text {
    font-size: 0.95rem;
    color: #2c3e50;
    line-height: 1.5;
    flex: 1;
}

.ab-privacy-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ab-privacy-link:hover {
    color: #f7931e;
}

.ab-privacy-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.ab-btn-accept {
    padding: 10px 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ab-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.ab-btn-settings {
    padding: 10px 25px;
    background: transparent;
    color: #2c3e50;
    border: 1px solid #e9ecef;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ab-btn-settings:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .ab-container {
        padding: 0 20px;
    }

    .ab-nav {
        padding: 20px;
    }

    .ab-nav-menu {
        display: none;
    }

    .ab-nav-toggle {
        display: flex;
    }

    .ab-main {
        margin-top: 80px;
    }

    .ab-hero {
        padding: 80px 0 60px;
    }

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

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

    .ab-hero-subtitle {
        font-size: 1.1rem;
    }

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

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

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

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

    .ab-cta-title {
        font-size: 2rem;
    }

    .ab-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

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