/* DUSZA Secure Agency - Professional Stylesheet */

:root {
    --primary: #c9a74a;
    --dark: #0f0f1e;
    --darker: #0a0a14;
    --navy: #1a1a2e;
    --light: #ffffff;
    --gray: #a0a0a0;
    --gray-dark: #6a6a6a;
    --accent: #e8d4a0;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(201, 167, 74, 0.1);
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 20, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    line-height: 1;
}

.logo-subtitle {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
    margin-top: 2px;
}

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

.nav-menu a {
    color: var(--light);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: var(--dark) !important;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #0f0f1e 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 167, 74, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(201, 167, 74, 0.02) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 167, 74, 0.1);
    border: 1px solid rgba(201, 167, 74, 0.3);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.title-line {
    display: block;
    animation: fadeInUp 1s ease backwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }

.title-line.highlight {
    color: var(--primary);
}

.hero-description {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.4s backwards;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease 0.5s backwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 167, 74, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--dark);
    transform: translateY(-3px);
}

.btn svg {
    width: 20px;
    height: 20px;
}

.hero-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s ease 0.6s backwards;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.stat-plus, .stat-percent, .stat-unit {
    font-size: 24px;
    color: var(--primary);
    font-weight: 700;
}

.stat-label {
    font-size: 11px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(201, 167, 74, 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
}

/* Sections */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    margin-bottom: 80px;
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.section-title {
    font-size: 52px;
    font-weight: 600;
    color: var(--light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--primary);
    margin: 30px auto;
}

.section-description {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--navy);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-content {
    padding-right: 40px;
}

.text-lead {
    font-size: 24px;
    color: var(--accent);
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.text-body {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-signature {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 167, 74, 0.2);
}

.signature-line {
    width: 120px;
    height: 2px;
    background: var(--primary);
    margin-bottom: 15px;
}

.signature-text {
    font-size: 14px;
    color: var(--primary);
    font-style: italic;
}

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

.feature-box {
    background: rgba(201, 167, 74, 0.03);
    border: 1px solid rgba(201, 167, 74, 0.1);
    padding: 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(201, 167, 74, 0.05);
    border-color: rgba(201, 167, 74, 0.3);
    transform: translateY(-5px);
}

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

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary);
}

.feature-title {
    font-size: 18px;
    color: var(--light);
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: var(--dark);
}

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

.service-card {
    background: var(--navy);
    border: 1px solid rgba(201, 167, 74, 0.1);
    padding: 40px 30px;
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: rgba(26, 26, 46, 0.8);
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-number {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0.5;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
}

.service-icon-wrapper svg {
    width: 100%;
    height: 100%;
    stroke: var(--primary);
}

.service-title {
    font-size: 24px;
    color: var(--light);
    margin-bottom: 15px;
}

.service-description {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-list {
    list-style: none;
}

.service-list li {
    color: var(--gray);
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 20px;
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-list li:last-child {
    border-bottom: none;
}

/* Approach Section */
.approach-section {
    background: var(--navy);
}

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

.approach-card {
    background: rgba(201, 167, 74, 0.03);
    border-left: 3px solid var(--primary);
    padding: 35px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.approach-card:hover {
    background: rgba(201, 167, 74, 0.05);
    transform: translateX(10px);
}

.approach-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 20px;
}

.approach-number {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
}

.approach-title {
    font-size: 22px;
    color: var(--light);
    flex: 1;
}

.approach-text {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}

/* Trust Banner */
.trust-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 80px 0;
    text-align: center;
}

.trust-title {
    font-size: 42px;
    color: var(--dark);
    margin-bottom: 20px;
}

.trust-text {
    color: rgba(15, 15, 30, 0.8);
    font-size: 16px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    background: var(--dark);
    color: var(--primary);
    padding: 20px 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-badge svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

/* Contact Section */
.contact-section {
    background: var(--dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-box {
    background: var(--navy);
    border: 1px solid rgba(201, 167, 74, 0.1);
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.contact-box:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.contact-icon-bg {
    width: 50px;
    height: 50px;
    background: rgba(201, 167, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.contact-icon-bg svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.contact-box h3 {
    font-size: 18px;
    color: var(--light);
    margin-bottom: 10px;
}

.contact-link {
    font-size: 20px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.contact-meta {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-notice {
    background: rgba(201, 167, 74, 0.05);
    border-left: 3px solid var(--primary);
    padding: 25px;
    border-radius: 4px;
}

.contact-notice h4 {
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-notice ul {
    list-style: none;
}

.contact-notice li {
    color: var(--gray);
    font-size: 13px;
    padding: 6px 0;
    padding-left: 15px;
    position: relative;
}

.contact-notice li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Contact Form */
.contact-form-modern {
    background: var(--navy);
    border: 1px solid rgba(201, 167, 74, 0.1);
    padding: 40px;
    border-radius: 8px;
}

.form-row {
    margin-bottom: 25px;
}

.form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    margin-bottom: 10px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: var(--dark);
    border: 1px solid rgba(201, 167, 74, 0.2);
    border-radius: 4px;
    color: var(--light);
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(201, 167, 74, 0.1);
}

.form-control::placeholder {
    color: var(--gray-dark);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-text {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--primary);
    text-decoration: none;
}

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

.form-note {
    text-align: center;
    font-size: 12px;
    color: var(--gray);
    margin-top: 20px;
}

/* Footer */
.footer-modern {
    background: var(--navy);
    border-top: 1px solid rgba(201, 167, 74, 0.1);
    padding: 80px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo .logo-icon {
    width: 35px;
    height: 35px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 2px;
}

.footer-logo-sub {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray);
}

.footer-description {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

.footer-heading {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light);
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 14px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
    flex-shrink: 0;
}

.footer-contact a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-legal {
    font-size: 11px;
    color: var(--gray-dark);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollLine {
    0%, 100% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-title { font-size: 64px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--navy);
        width: 100%;
        padding: 40px 0;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title { font-size: 48px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-stats { flex-direction: column; gap: 30px; }
    .stat-divider { width: 50px; height: 1px; }
    .services-grid { grid-template-columns: 1fr; }
    .about-features-grid { grid-template-columns: 1fr; }
    .form-row.two-col { grid-template-columns: 1fr; }
    .section-title { font-size: 38px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 36px; }
    .section-title { font-size: 32px; }
    .trust-title { font-size: 32px; }
}
