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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

/* Ad Notice */
.ad-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

/* Navigation - Asymmetric */
.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px 20px 40px;
    background: #1a1a2e;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #f39c12;
    letter-spacing: 1px;
}

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

.nav-menu a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #f39c12;
}

/* Hero - Offset Layout */
.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
    position: relative;
}

.hero-content-left {
    flex: 0 0 45%;
    padding: 80px 60px 80px 80px;
    color: #ffffff;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: #bdc3c7;
    line-height: 1.5;
}

.cta-primary {
    display: inline-block;
    background: #f39c12;
    color: #1a1a2e;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.hero-image-right {
    flex: 0 0 55%;
    height: 85vh;
    overflow: hidden;
    background-color: #2c3e50;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Insight Block */
.insight-block {
    padding: 100px 20px;
    background: #ecf0f1;
}

.insight-inner {
    max-width: 800px;
    margin: 0 0 0 auto;
    padding-right: 80px;
}

.insight-inner h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #16213e;
}

.insight-inner p {
    font-size: 19px;
    line-height: 1.7;
    color: #34495e;
}

/* Story - Asymmetric Overlap */
.story-asymmetric {
    display: flex;
    flex-direction: column;
    padding: 120px 60px 80px 60px;
    background: #ffffff;
    position: relative;
}

.story-text-overlap {
    max-width: 650px;
    margin-left: 120px;
    margin-bottom: -60px;
    background: #ffffff;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    z-index: 2;
    position: relative;
}

.story-text-overlap h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #16213e;
}

.story-text-overlap p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
}

.story-image-bottom {
    width: 70%;
    align-self: flex-end;
    margin-right: 80px;
    background-color: #bdc3c7;
}

.story-image-bottom img {
    width: 100%;
    display: block;
}

/* Problem Amplification */
.problem-amplification {
    display: flex;
    align-items: stretch;
    background: #f8f9fa;
}

.problem-left {
    flex: 0 0 40%;
    background-color: #95a5a6;
}

.problem-left img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.problem-right {
    flex: 0 0 60%;
    padding: 80px 100px 80px 70px;
}

.problem-right h3 {
    font-size: 34px;
    margin-bottom: 35px;
    color: #2c3e50;
}

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

.problem-list li {
    padding-left: 35px;
    margin-bottom: 20px;
    position: relative;
    font-size: 17px;
    line-height: 1.6;
    color: #555;
}

.problem-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 700;
    font-size: 20px;
}

/* Services Cards - Asymmetric Grid */
.services-cards {
    padding: 100px 60px 120px 60px;
    background: linear-gradient(180deg, #ffffff 0%, #ecf0f1 100%);
}

.services-title-offset {
    font-size: 42px;
    margin-bottom: 70px;
    margin-left: 80px;
    color: #16213e;
}

.cards-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.card-large {
    flex: 0 0 calc(60% - 15px);
}

.card-medium {
    flex: 0 0 calc(40% - 15px);
}

.card-small {
    flex: 0 0 calc(33.333% - 20px);
}

.card-medium-alt {
    flex: 0 0 calc(33.333% - 20px);
}

.card-wide {
    flex: 0 0 calc(33.333% - 20px);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.service-card h3 {
    font-size: 22px;
    padding: 25px 25px 15px 25px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px 20px 25px;
    font-size: 15px;
    color: #555;
    flex-grow: 1;
}

.service-card .price {
    padding: 0 25px 15px 25px;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.select-service-btn {
    margin: 0 25px 25px 25px;
    padding: 14px 0;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #2980b9;
}

/* Trust Section */
.trust-section {
    padding: 100px 60px;
    background: #16213e;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h3 {
    font-size: 38px;
    color: #f39c12;
    margin-bottom: 60px;
    text-align: center;
}

.testimonials-stagger {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonials-stagger blockquote {
    background: rgba(255,255,255,0.05);
    padding: 35px 40px;
    border-left: 4px solid #f39c12;
    color: #ecf0f1;
    font-size: 17px;
    line-height: 1.6;
}

.testimonial-left {
    align-self: flex-start;
    max-width: 65%;
    margin-left: 0;
}

.testimonial-right {
    align-self: flex-end;
    max-width: 65%;
    margin-right: 0;
}

.testimonial-center {
    align-self: center;
    max-width: 75%;
}

cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    color: #f39c12;
    font-weight: 600;
}

/* Form Section - Offset */
.form-section-offset {
    display: flex;
    min-height: 700px;
    background: #ecf0f1;
    position: relative;
}

.form-container-asymmetric {
    flex: 0 0 55%;
    padding: 80px 70px 80px 100px;
    background: #ffffff;
    z-index: 2;
}

.form-container-asymmetric h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #16213e;
}

.form-intro {
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select {
    padding: 14px;
    border: 2px solid #bdc3c7;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    padding: 16px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #229954;
}

.form-image-overlay {
    flex: 0 0 45%;
    position: absolute;
    right: 0;
    top: 80px;
    bottom: 80px;
    width: 45%;
    background-color: #95a5a6;
}

.form-image-overlay img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Footer - Asymmetric */
.footer-asymmetric {
    background: #1a1a2e;
    color: #ecf0f1;
    padding: 60px 60px 40px 60px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 60px;
}

.footer-col-brand {
    flex: 0 0 35%;
}

.footer-col-brand h4 {
    font-size: 26px;
    color: #f39c12;
    margin-bottom: 15px;
}

.footer-col-brand p {
    font-size: 15px;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-col-links,
.footer-col-contact {
    flex: 0 0 25%;
}

.footer-col-links h5,
.footer-col-contact h5 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #f39c12;
}

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

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

.footer-col-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col-links a:hover {
    color: #f39c12;
}

.footer-col-contact p {
    font-size: 15px;
    color: #bdc3c7;
}

.footer-disclaimer {
    border-top: 1px solid rgba(236,240,241,0.1);
    padding-top: 30px;
    max-width: 1000px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #95a5a6;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26,26,46,0.98);
    padding: 25px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.cookie-content p {
    color: #ecf0f1;
    font-size: 15px;
    flex: 1;
}

.cookie-content a {
    color: #f39c12;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: #ecf0f1;
    border: 2px solid #ecf0f1;
}

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

/* Thanks Page Specific */
.thanks-container {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
}

.thanks-container h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 20px;
    color: #555;
    margin-bottom: 15px;
    max-width: 700px;
}

.thanks-container .selected-service-display {
    font-size: 22px;
    font-weight: 600;
    color: #16213e;
    margin: 30px 0;
}

.thanks-container a {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 40px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-container a:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

/* Simple Pages Layout */
.simple-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background: #ffffff;
}

.simple-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #16213e;
}

.simple-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.simple-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.simple-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.simple-page ul {
    margin: 20px 0 20px 30px;
}

.simple-page li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
}

/* Contact Page */
.contact-info-section {
    padding: 80px 60px;
    background: #ecf0f1;
}

.contact-info-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #16213e;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-detail p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-content-left,
    .hero-image-right {
        flex: 1 1 100%;
    }

    .cards-grid-asymmetric .service-card {
        flex: 0 0 100%;
    }

    .form-section-offset {
        flex-direction: column;
    }

    .form-container-asymmetric,
    .form-image-overlay {
        flex: 1 1 100%;
        position: relative;
        width: 100%;
    }
}