@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

:root {
    --blue: #2563EB;
    --blue-dark: #1E40AF;
    --text: #1F2937;
    --text-light: #6B7280;
    --background: #FFFFFF;
    --background-alt: #F9FAFB;
    --border: #E5E7EB;
    --accent: #F59E0B;
    --accent-light: #FCD34D;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2.75rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

a {
    color: var(--blue);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--blue-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.image-container {
    width: 100%;
    margin-bottom: 2rem;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.image-container.small {
    max-width: 400px;
    margin: 0 auto 2rem;
}

.image-container.medium {
    max-width: 600px;
    margin: 0 auto 2rem;
}

.image-container.large {
    max-width: 100%;
}

.image-container.full-width {
    width: 100%;
    margin-left: -40px;
    margin-right: -40px;
}

@media (max-width: 768px) {
    .image-container.full-width {
        margin-left: -24px;
        margin-right: -24px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.container ul, .container ol {
    padding-left: 20px;
}
header {
    background-color: var(--background);
    border-bottom: 2px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

nav {
    min-height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--blue);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text);
    padding: 0.5rem;
}

.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--text);
    padding: 8rem 0 6rem;
    text-align: left;
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 0 0 0 100px;
}

.hero h1 {
    color: var(--text);
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    max-width: 800px;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    color: var(--text-light);
    line-height: 1.8;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: #FFFFFF;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.01em;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Source Sans Pro', sans-serif;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    color: #FFFFFF;
}

section:not(.hero) {
    padding: 5rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section:not(.hero).visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: left;
    margin-bottom: 4rem;
    color: var(--text);
    position: relative;
    padding-bottom: 1.5rem;
    font-size: 2.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 5px;
    background: var(--accent);
    border-radius: 3px;
    opacity: 0.6;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.grid.asymmetric {
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.grid.asymmetric .card:nth-child(1) {
    grid-column: span 7;
}

.grid.asymmetric .card:nth-child(2) {
    grid-column: span 5;
}

.grid.asymmetric .card:nth-child(3) {
    grid-column: span 5;
}

.grid.asymmetric .card:nth-child(4) {
    grid-column: span 7;
}

.card {
    background: var(--background);
    padding: 1.5rem;
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--blue);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    color: white;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.material-icons {
    font-size: 2.5rem;
}

.features {
    background-color: var(--background);
    position: relative;
}

.features::after {
    display: none;
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient-accent);
    opacity: 0.03;
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.services {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--gradient-secondary);
    opacity: 0.03;
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    position: relative;
}

.about-content .image-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}

.about-content .image-container img {
    transition: transform 0.5s ease;
}

.about-content .image-container:hover img {
    transform: scale(1.05);
}

.hero .image-container:hover img {
    transform: scale(1.05);
}

.about-content p {
    margin-bottom: 1.75rem;
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--background);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: none;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0.03;
    border-radius: 50%;
}

.contact-form h3 {
    margin-bottom: 2rem;
    color: var(--text);
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border);
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--background);
    color: var(--text);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.checkbox-group label {
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

footer {
    background-color: var(--text);
    color: #FFFFFF;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
    color: #D1D5DB;
    margin-bottom: 0.75rem;
    display: block;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #FFFFFF;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9CA3AF;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #D1D5DB;
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: #FFFFFF;
}

.privacy-popup {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--background);
    padding: 2rem;
    border: 1px solid var(--border);
    max-width: 420px;
    z-index: 10000;
    display: none;
}

.privacy-popup.show {
    display: block;
}

.privacy-popup p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.6;
}

.privacy-popup-buttons {
    display: flex;
    gap: 1rem;
}

.privacy-popup-buttons .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
}

.success-page {
    text-align: center;
    padding: 8rem 0;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.success-page::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(60px);
}

.success-page::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: var(--gradient-accent);
    opacity: 0.1;
    border-radius: 50%;
    filter: blur(60px);
}

.success-icon {
    font-size: 5rem;
    color: var(--blue);
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.success-icon .material-icons {
    font-size: 5rem;
}

.text-center {
    text-align: center;
}

.grid.asymmetric {
    grid-template-columns: 1fr;
}

.grid.asymmetric .card {
    grid-column: span 1 !important;
}

/* Utility Classes for Inline Styles */
.grid-2-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-2-col-gap-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.grid-2-col-start {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.grid-2-col-asymmetric {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

.grid-2-col-reverse {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.flex-grow {
    flex-grow: 1;
}

.mt-auto {
    margin-top: auto;
}

.image-rounded {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.image-rounded-small {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.image-rounded-large {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
    position: relative;
}

.image-transition {
    transition: transform 0.5s ease;
}

.sticky-top {
    position: sticky;
    top: 100px;
}

.relative-z {
    position: relative;
    z-index: 1;
}

.text-large {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.text-medium {
    font-size: 1.125rem;
    margin-bottom: 1.75rem;
    line-height: 1.9;
}

.text-medium-last {
    font-size: 1.125rem;
    line-height: 1.9;
}

.text-hero {
    font-size: 1.5rem;
    line-height: 1.8;
}

.text-success-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.text-success-sub {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-2-5 {
    margin-bottom: 2.5rem;
}

.mb-1-5 {
    margin-bottom: 1.5rem;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-0-5 {
    margin-bottom: 0.5rem;
}

.text-color-primary {
    color: var(--text);
}

.text-color-light {
    color: var(--text-light);
}

.text-color-blue {
    color: var(--blue);
}

.text-size-large {
    font-size: 1.125rem;
}

.contact-info-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.contact-info-item {
    margin-bottom: 1.5rem;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.form-input-rounded {
    border-radius: 8px;
}

.hero-center {
    text-align: center;
    max-width: 800px;
}

.section-title-mb {
    margin-bottom: 2rem;
}

.section-title-mb-large {
    margin-bottom: 2.5rem;
}

.hero-mb {
    margin-bottom: 3rem;
}

.grid-2-col-center {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.mb-2rem {
    margin-bottom: 2rem;
}

.mt-1-5 {
    margin-top: 1.5rem;
}

.image-mb-2 {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--background);
        width: 100%;
        padding: 2rem;
        border-bottom: 2px solid var(--border);
        transition: left 0.3s ease;
        gap: 1.5rem;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .container {
        padding: 0 24px;
    }
   

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero {
        padding: 5rem 0 4rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .grid.asymmetric {
        grid-template-columns: 1fr;
    }

    .grid.asymmetric .card {
        grid-column: span 1 !important;
    }

    section {
        padding: 3.5rem 0;
    }

    .card {
        padding: 2rem;
    }

    .privacy-popup {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }

    /* Responsive grid layouts - Utility Classes */
    .grid-2-col,
    .grid-2-col-start,
    .grid-2-col-asymmetric,
    .grid-2-col-reverse,
    .grid-2-col-gap-small,
    .grid-2-col-center {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .grid-3-col {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    /* Responsive text sizes */
    .text-large {
        font-size: 1.125rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .text-medium,
    .text-medium-last {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }

    .text-hero {
        font-size: 1.25rem;
        line-height: 1.7;
    }

    .text-success-title {
        font-size: 1.125rem;
    }

    .text-success-sub {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* Disable sticky on mobile */
    .sticky-top {
        position: static;
    }

    /* Responsive spacing */
    .hero-mb {
        margin-bottom: 2rem;
    }

    .section-title-mb,
    .section-title-mb-large {
        margin-bottom: 1.5rem;
    }

    .mb-2-5 {
        margin-bottom: 2rem;
    }

    .mb-2rem {
        margin-bottom: 1.5rem;
    }

    /* Responsive image containers */
    .image-rounded,
    .image-rounded-large {
        border-radius: 12px;
    }

    .image-rounded-small {
        margin-bottom: 1rem;
    }

    /* Responsive contact info */
    .contact-info-box {
        padding: 1.5rem;
    }

    .contact-info-item {
        margin-bottom: 1rem;
    }

    /* Responsive hero center */
    .hero-center {
        max-width: 100%;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.875rem;
    }

    h2 {
        font-size: 1.625rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 1.875rem;
    }

    section {
        padding: 2.5rem 0;
    }

    .btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }

    .card {
        padding: 2rem;
    }

    /* Extra small device adjustments */
    .text-large {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .text-medium,
    .text-medium-last {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .text-hero {
        font-size: 1.125rem;
    }

    .grid-2-col,
    .grid-2-col-start,
    .grid-2-col-asymmetric,
    .grid-2-col-reverse,
    .grid-2-col-gap-small,
    .grid-2-col-center,
    .grid-3-col {
        gap: 1.5rem;
    }

    .contact-info-box {
        padding: 1.25rem;
    }

    .image-rounded-small {
        margin-bottom: 0.75rem;
    }
}

.design-bg {
    background-image: url('../images/design-assistance.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.1);
}
.success-footer {
    margin-top: 0;
}