/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c52e0;
    --secondary-color: #764af1;
    --gradient-start: #2c52e0;
    --gradient-end: #764af1;
    --accent-color: #00e4ff;
    --text-color: #222222;
    --text-light: #5a5a5a;
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --bg-dark: #151922;
    --gradient-primary: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 18px 36px rgba(0,0,0,0.1);
    --shadow-accent: 0 18px 36px rgba(44,82,224,0.2);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-padding: 5%;
}

body {
    font-family: 'SF Pro Display', 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.sct-container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.6em;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.4rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.2rem;
    font-weight: 400;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

/* Header & Navigation */
.sct-header {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.sct-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.sct-company-logo {
    width: 180px; 
    height: 60px;
    background-image: url('img/company-logo.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: var(--transition);
}

.sct-company-logo:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.sct-nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.sct-nav-links a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    font-size: 1.05rem;
}

.sct-nav-links a:after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: 1px;
}

.sct-nav-links a:hover:after,
.sct-nav-links a.sct-active:after {
    width: 100%;
}

.sct-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.sct-menu-toggle span {
    width: 28px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
    border-radius: 1px;
}

/* Page Header */
.sct-page-header {
    background: linear-gradient(160deg, #f8faff 0%, #f2f5fa 100%);
    padding: 12rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sct-page-header:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="560" viewBox="0 0 1440 560" fill="none"><path d="M1440 140C1360 140 1300 70 1240 70C1180 70 1180 140 1120 140C1060 140 1060 70 1000 70C940 70 940 140 880 140C820 140 820 70 760 70C700 70 700 140 640 140C580 140 580 70 520 70C460 70 460 140 400 140C340 140 340 70 280 70C220 70 220 140 160 140C100 140 100 70 40 70C-20 70 -20 140 -80 140" stroke="%232c52e0" stroke-opacity="0.1" stroke-width="2"/></svg>');
    background-repeat: repeat;
    background-size: 1440px;
    opacity: 0.6;
}

.sct-page-header h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.sct-page-header h1:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.sct-page-header p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 1.5rem auto 0;
    color: var(--text-light);
}

/* Buttons */
.sct-btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.05rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sct-btn:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.sct-btn:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    transition: all 0.6s;
    z-index: -1;
}

.sct-btn:hover:before {
    width: 100%;
}

.sct-btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-accent);
}

.sct-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(44,82,224,0.3);
}

.sct-btn-secondary {
    background: var(--gradient-accent);
    color: white;
    box-shadow: var(--shadow-accent);
}

.sct-btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(44,82,224,0.3);
}

.sct-btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.sct-btn-outline:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

/* Section Styles */
.sct-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.sct-section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.sct-section-header h2:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.sct-section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 1.5rem;
}

/* Contact Section */
.sct-contact-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.sct-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}

.sct-contact-info {
    position: relative;
}

.sct-contact-info .sct-section-header {
    text-align: left;
}

.sct-contact-info .sct-section-header h2:after {
    left: 0;
    transform: none;
}

.sct-contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.sct-contact-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.sct-contact-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.sct-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.sct-contact-card:hover:before {
    height: 100%;
}

.sct-contact-card img {
    margin-bottom: 1.2rem;
    width: 48px;
    height: 48px;
    transition: var(--transition);
}

.sct-contact-card:hover img {
    transform: scale(1.1);
}

.sct-contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.sct-contact-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.sct-contact-card a {
    display: inline-block;
    color: var(--primary-color);
}

.sct-contact-card a:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

.sct-social-links {
    margin-top: 2rem;
}

.sct-social-links h3 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.sct-social-icons {
    display: flex;
    gap: 1.2rem;
}

.sct-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.sct-social-icon img {
    width: 22px;
    height: 22px;
    transition: var(--transition);
}

.sct-social-icon:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--gradient-primary);
}

.sct-social-icon:hover img {
    filter: brightness(0) invert(1);
}

/* Contact Form */
.sct-contact-form-wrapper {
    background-color: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.sct-contact-form-wrapper:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150" fill="none"><path d="M150 0L106 0C106 23.5 125.5 43 149 43L150 0Z" fill="%232c52e0" fill-opacity="0.05"/></svg>');
    background-size: cover;
    border-radius: 0 var(--radius-lg) 0 0;
    z-index: 0;
}

.sct-contact-form-wrapper .sct-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.sct-contact-form-wrapper .sct-section-header h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.sct-contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.sct-form-group {
    margin-bottom: 0.5rem;
}

.sct-form-group.sct-full-width {
    grid-column: span 2;
}

.sct-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.sct-form-group input,
.sct-form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e1e5ee;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background-color: #f8f9fd;
}

.sct-form-group input:focus,
.sct-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 82, 224, 0.15);
    background-color: white;
}

.sct-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.sct-form-group button {
    margin-top: 1rem;
    width: auto;
    justify-self: flex-start;
    border: none;
}

/* Map Section */
.sct-map-section {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

.sct-map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.sct-map-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.sct-map-container:hover img {
    transform: scale(1.02);
}

/* FAQ Section */
.sct-faq-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.sct-faq-section:before {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(44, 82, 224, 0.05), rgba(118, 74, 241, 0.05));
    z-index: 0;
}

.sct-faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sct-faq-item {
    margin-bottom: 1.5rem;
    background-color: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.sct-faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.sct-faq-question h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    padding-right: 2rem;
    transition: var(--transition);
}

.sct-faq-question:hover h3 {
    color: var(--primary-color);
}

.sct-faq-toggle {
    position: relative;
    width: 20px;
    height: 20px;
}

.sct-faq-toggle:before,
.sct-faq-toggle:after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.sct-faq-toggle:before {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

.sct-faq-toggle:after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

.sct-faq-item.active .sct-faq-toggle:after {
    transform: rotate(90deg);
    opacity: 0;
}

.sct-faq-item.active .sct-faq-question {
    background-color: #f8faff;
}

.sct-faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, padding 0.6s ease;
}

.sct-faq-item.active .sct-faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 1000px;
}

/* CTA Section */
.sct-cta-section {
    padding: 6rem 0;
    background: linear-gradient(160deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.sct-cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1440" height="560" viewBox="0 0 1440 560" fill="none"><path d="M1440 140C1360 140 1300 70 1240 70C1180 70 1180 140 1120 140C1060 140 1060 70 1000 70C940 70 940 140 880 140C820 140 820 70 760 70C700 70 700 140 640 140C580 140 580 70 520 70C460 70 460 140 400 140C340 140 340 70 280 70C220 70 220 140 160 140C100 140 100 70 40 70C-20 70 -20 140 -80 140" stroke="%23ffffff" stroke-opacity="0.1" stroke-width="2"/></svg>');
    background-repeat: repeat;
    background-size: 1440px;
    opacity: 0.6;
}

.sct-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.sct-cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.sct-cta-content h2:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
}

.sct-cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    margin-top: 1.5rem;
}

.sct-cta-content .sct-btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    border: none;
    font-weight: 600;
}

.sct-cta-content .sct-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

/* Footer */
.sct-footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

.sct-footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--gradient-primary);
}

.sct-footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}

.sct-footer-logo {
    flex: 1;
    min-width: 280px;
}

.sct-footer-logo .sct-company-logo {
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
}

.sct-footer-logo p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.sct-footer-links {
    flex: 2;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.sct-footer-column {
    min-width: 160px;
}

.sct-footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
    position: relative;
    color: #ffffff;
}

.sct-footer-column h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 1.5px;
}

.sct-footer-column ul {
    list-style: none;
}

.sct-footer-column li {
    margin-bottom: 1rem;
}

.sct-footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    font-size: 1.05rem;
}

.sct-footer-column a:hover {
    color: white;
    transform: translateX(5px);
    display: inline-block;
}

.sct-footer-column address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.sct-footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Scroll to */
.sct-scroll-to {
    scroll-behavior: smooth;
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .sct-page-header h1 {
        font-size: 3.5rem;
    }
    
    .sct-section-header h2 {
        font-size: 2.8rem;
    }
    
    .sct-cta-content h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    h1, .sct-page-header h1 {
        font-size: 3rem;
    }
    
    h2, .sct-section-header h2 {
        font-size: 2.4rem;
    }
    
    .sct-cta-content h2 {
        font-size: 2.4rem;
    }
    
    .sct-contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .sct-contact-form-wrapper {
        padding: 2.5rem;
    }
    
    .sct-contact-section,
    .sct-map-section,
    .sct-faq-section,
    .sct-cta-section {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .sct-header {
        position: fixed;
    }
    
    .sct-nav {
        position: fixed;
        top: 92px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: var(--shadow-sm);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
        padding: 1.5rem 0;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .sct-nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .sct-nav-links {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .sct-nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .sct-nav-links a {
        display: block;
        padding: 0.8rem 0;
    }
    
    .sct-menu-toggle {
        display: flex;
    }
    
    .sct-contact-cards {
        grid-template-columns: 1fr;
    }
    
    .sct-footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .sct-footer-links {
        flex-direction: column;
        gap: 2.5rem;
    }
    
    .sct-section-header {
        margin-bottom: 2.5rem;
    }
    
    .sct-section-header p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    :root {
        --container-padding: 5%;
    }
    
    h1, .sct-page-header h1 {
        font-size: 2.5rem;
    }
    
    h2, .sct-section-header h2 {
        font-size: 2rem;
    }
    
    .sct-page-header p {
        font-size: 1.1rem;
    }
    
    .sct-contact-form {
        grid-template-columns: 1fr;
    }
    
    .sct-form-group.sct-full-width {
        grid-column: 1;
    }
    
    .sct-btn {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    
    .sct-cta-content h2 {
        font-size: 2rem;
    }
    
    .sct-cta-content p {
        font-size: 1.1rem;
    }
    
    .sct-contact-section,
    .sct-map-section,
    .sct-faq-section,
    .sct-cta-section {
        padding: 4rem 0;
    }
    
    .sct-contact-form-wrapper {
        padding: 2rem;
    }
    
    .sct-footer {
        padding: 4rem 0 2rem;
    }
    
    .sct-faq-question h3 {
        font-size: 1.1rem;
    }
} 