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

body {
    font-family: 'Open Runde', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a237e;
    min-height: 100vh;
    color: #ffffff;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0;
    padding: 40px 60px;
    overflow-x: hidden;
}

/* Header */
.header {
    text-align: center;
    color: #ffffff;
    margin-bottom: 60px;
}

.header-main {
    margin-bottom: 48px;
}

.header h1 {
    font-size: 3.2rem;
    font-weight: 200;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.header-subtitle {
    font-size: 1.3rem;
    color: #c5cae9;
    font-weight: 300;
    letter-spacing: 0.01em;
    margin: 0;
}

.header-intro {
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.intro-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
}

.intro-profile {
    flex-shrink: 0;
}

.profile-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.intro-content {
    flex: 1;
    min-width: 0;
}

.intro-message {
    font-size: 1rem;
    color: #e8eaf6;
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 300;
}

.intro-note {
    font-size: 0.9rem;
    color: #c5cae9;
    line-height: 1.5;
    margin-bottom: 24px;
    font-weight: 300;
}

.intro-signature {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.signature-text {
    font-size: 0.9rem;
    color: #c5cae9;
    font-style: italic;
}

.signature-name {
    font-size: 1rem;
    color: #e8eaf6;
    font-weight: 400;
}

/* Calculator Wrapper */
.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

/* Panels */
.left-panel {
    background: #ffffff;
    border-radius: 16px;
    padding: 60px;
    color: #2c2c2c;
}

.right-panel {
    position: sticky;
    top: 40px;
}

/* Sections */
.section {
    margin-bottom: 60px;
}

.section:last-child {
    margin-bottom: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e5e0;
}

.section-header h2 {
    font-size: 1.4rem;
    font-weight: 300;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

.section-header h2 i {
    margin-right: 12px;
    color: #1a237e;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    letter-spacing: 0.01em;
    font-family: inherit;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn i {
    font-size: 16px;
    width: 16px;
    text-align: center;
}

/* Consistent icon sizing */
.section-header i,
.page-controls i,
.feature-controls i,
.timeline-item-controls i {
    font-size: 16px;
    width: 16px;
    text-align: center;
}

.btn-primary {
    background: #1a237e;
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background: #0d1660;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(26, 35, 126, 0.25);
}

.btn-secondary {
    background: #ffffff;
    color: #6a6a6a;
    border: 1px solid #e8e5e0;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #d0ccc7;
    transform: translateY(-1px);
}

.btn-danger {
    background: #ffffff;
    color: #8a8a8a;
    border: 1px solid #e8e5e0;
}

.btn-danger:hover {
    background: #dc3545;
    color: #ffffff;
    border-color: #dc3545;
    transform: translateY(-1px);
}

.btn-small {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-add-feature {
    background: #7986cb;
    color: #ffffff;
    border: none;
    margin-top: 20px;
}

.btn-add-feature:hover {
    background: #5c6bc0;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(121, 134, 203, 0.25);
}

/* Templates Dropdown */
.templates-dropdown {
    margin-bottom: 24px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.templates-header {
    padding: 16px 20px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #e8e5e0;
}

.templates-header:hover {
    background: #f8f9fa;
}

.templates-header h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1a1a1a;
    letter-spacing: -0.01em;
}

.templates-toggle {
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.templates-toggle.collapsed {
    transform: rotate(-90deg);
}

.templates-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    border: 1px solid #e8e5e0;
    border-top: none;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.templates-content.show {
    max-height: 2000px;
}

.templates-list {
    padding: 0;
}

/* Page Items */
.page-item {
    border-bottom: 1px solid #e8e5e0;
    transition: background-color 0.2s ease;
    position: relative;
}

.page-item:last-child {
    border-bottom: none;
}

.page-item:hover {
    background-color: #f8f9fa;
}

.page-drag-handle {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 24px;
    color: #e8e5e0;
    cursor: grabbing;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 5;
    font-size: 12px;
}

.page-drag-handle:hover {
    color: #7986cb;
    transform: translateY(-50%) scale(1.1);
}

.page-drag-handle:active {
    cursor: grabbing;
    color: #1a237e;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    gap: 16px;
    cursor: pointer;
}

.page-header:hover {
    background-color: transparent;
}

.page-name {
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 500;
    color: #1a1a1a;
    flex: 1;
    min-width: 0;
}

.page-name span {
    display: block;
    font-size: 0.8rem;
    color: #8a8a8a;
    font-weight: 300;
}

.page-type-label {
    font-size: 0.75rem;
    font-weight: 400;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    color: #1a237e;
    min-width: 80px;
    text-align: right;
    margin-right: 0;
    margin-left: auto;
    flex-shrink: 0;
}

.page-type-label.static {
    color: #388e3c;
    background: rgba(56, 142, 60, 0.1);
    align-items: center;
}

.page-type-label.cms {
    color: #7986cb;
    background: rgba(121, 134, 203, 0.1);
}

.page-type-label.collection {
    color: #f57600;
    background: rgba(245, 118, 0, 0.1);
}

.page-complexity-label {
    font-size: 0.75rem;
    font-weight: 400;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-left: 6px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.page-complexity-label.basic {
    color: #2e7d32;
    background: rgba(46, 125, 50, 0.1);
}

.page-complexity-label.advanced {
    color: #f57600;
    background: rgba(245, 118, 0, 0.1);
}

.page-complexity-label.premium {
    color: #c62828;
    background: rgba(198, 40, 40, 0.1);
}

.page-cost-summary {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #1a237e;
    min-width: 60px;
    text-align: right;
    margin-left: 16px;
    flex-shrink: 0;
}

.page-controls {
    display: flex;
    gap: 8px;
    align-items: center;
}

.page-toggle {
    font-size: 0.9rem;
    color: #8a8a8a;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-toggle.collapsed {
    transform: rotate(-90deg);
}

.page-details {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.page-details.show {
    padding: 0 32px 24px 32px;
    max-height: 300px;
    opacity: 1;
}

.page-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.page-cost-detailed {
    grid-column: 1 / -1;
    background: #f8f9fa;
    padding: 16px 20px;
    border-radius: 16px;
    border: 1px solid #e8e5e0;
    text-align: center;
}

.page-cost-amount {
    font-size: 1.4rem;
    font-weight: 400;
    color: #1a237e;
    margin-bottom: 8px;
}

.page-cost-breakdown {
    font-size: 0.85rem;
    color: #8a8a8a;
    font-weight: 300;
}

/* Ultra Modern Form Groups */
.form-group {
    margin-bottom: 24px;
    position: relative;
    overflow: visible;
}

.form-group label {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 15px;
    color: #8a8a8a;
    font-weight: 300;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    background: #ffffff;
    padding: 0 8px;
    z-index: 2;
    transform-origin: left top;
    border-radius: 4px;
}

.form-group.focused label,
.form-group.has-value label {
    top: -12px;
    left: 16px;
    font-size: 13px;
    color: #1a237e;
    font-weight: 400;
    transform: scale(1);
    background: linear-gradient(to bottom, transparent 0%, transparent 40%, #ffffff 40%, #ffffff 60%, transparent 60%);
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 20px;
    border: 2px solid #e8e5e0;
    border-radius: 20px;
    font-size: 15px;
    font-family: inherit;
    font-weight: 300;
    background: #ffffff;
    color: #2c2c2c;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    appearance: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-group select:hover,
.form-group input:hover {
    border-color: #c5cae9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: #1a237e;
    box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.08), 0 8px 24px rgba(26, 35, 126, 0.12);
    background: #fafbff;
    transform: translateY(-2px);
}

.form-group select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%238a8a8a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 18px;
    padding-right: 52px;
    cursor: pointer;
}

/* Editable Page Title Styles */
.page-title {
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-title:hover {
    background: rgba(26, 35, 126, 0.1);
    color: #1a237e;
}

.page-title-edit {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    border: 2px solid #1a237e;
    border-radius: 4px;
    padding: 2px 6px;
    background: #ffffff;
    min-width: 120px;
}

.page-title-edit:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.2);
}

/* Editable Feature Title Styles */
.feature-title {
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-title:hover {
    background: rgba(26, 35, 126, 0.1);
    color: #1a237e;
}

.feature-title-edit {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    border: 2px solid #1a237e;
    border-radius: 4px;
    padding: 2px 6px;
    background: #ffffff;
    min-width: 120px;
}

.feature-title-edit:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.2);
}

/* Feature Items */
.feature-item {
    background: #f8f9fa;
    border: 1px solid #e8e5e0;
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-item:hover {
    border-color: #1a237e;
    box-shadow: 0 4px 16px rgba(26, 35, 126, 0.1);
    transform: translateY(-2px);
}

.feature-info {
    flex: 1;
}

.feature-name {
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
    align-items: center;
    gap: 16px;
}

.feature-hours {
    font-size: 12px;
    color: #8a8a8a;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-hours input {
    width: 60px;
    padding: 6px 10px;
    border: 2px solid #e8e5e0;
    border-radius: 16px;
    font-size: 12px;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-hours input:focus {
    outline: none;
    border-color: #1a237e;
    box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.1);
}

.feature-cost {
    font-weight: 400;
    color: #1a237e;
    margin-right: 20px;
    font-size: 1rem;
    letter-spacing: -0.01em;
    min-width: 80px;
    text-align: right;
}

.feature-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-toggle {
    width: 48px;
    height: 28px;
    background: #e0e0e0;
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #dcdcdc;
}

.feature-toggle.active {
    background: #4caf50;
    border-color: #43a047;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.feature-toggle::after {
    content: '';
    width: 22px;
    height: 22px;
    background: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.feature-toggle.active::after {
    transform: translateX(20px);
}

.feature-delete {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-delete:hover {
    background: #dc3545;
    color: #ffffff;
    transform: scale(1.1);
}

/* Add Feature Form */
.add-feature-form {
    background: #f8f9fa;
    border: 2px solid #e8e5e0;
    border-radius: 16px;
    padding: 20px;
    margin-top: 20px;
    display: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.add-feature-form.show {
    display: block;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.add-feature-form .form-row {
    display: grid;
    grid-template-columns: 1fr 80px 100px;
    gap: 12px;
    margin-bottom: 16px;
}

.add-feature-form input {
    padding: 16px 20px;
    border: 2px solid #e8e5e0;
    border-radius: 20px;
    font-size: 15px;
    font-family: inherit;
    font-weight: 300;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.add-feature-form input:hover {
    border-color: #c5cae9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.add-feature-form input:focus {
    outline: none;
    border-color: #1a237e;
    box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.08), 0 8px 24px rgba(26, 35, 126, 0.12);
    background: #fafbff;
    transform: translateY(-2px);
}

/* Price Breakdown */
.price-breakdown {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    margin-bottom: 24px;
    color: #2c2c2c;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.price-breakdown h3 {
    font-size: 1.1rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-breakdown h3 i {
    color: #1a237e;
    font-size: 1rem;
}

.breakdown-categories {
    display: grid;
    gap: 16px;
}

.breakdown-category {
    border: 1px solid #e8e5e0;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.breakdown-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #1a237e;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.breakdown-category-header:hover {
    background: #0d1660;
}

/* Branding category specific styling */
.breakdown-category:first-child .breakdown-category-header {
    background: #2e7d32;
}

.breakdown-category:first-child .breakdown-category-header:hover {
    background: #1b5e20;
}

.breakdown-category-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-right: 16px;
}

.breakdown-category-label {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.breakdown-category-value {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.breakdown-category-toggle {
    font-size: 0.9rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.breakdown-category-toggle.collapsed {
    transform: rotate(-90deg);
}

.breakdown-category-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
}

.breakdown-category-details.show {
    max-height: 500px;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid #e8e5e0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item:hover {
    background: rgba(26, 35, 126, 0.05);
}

/* Branding category item styling */
.breakdown-category:first-child .breakdown-item:hover {
    background: rgba(46, 125, 50, 0.05);
}

.breakdown-category:first-child .breakdown-value {
    color: #2e7d32;
}

.breakdown-label {
    font-weight: 300;
    color: #6a6a6a;
    font-size: 13px;
}

.breakdown-value {
    font-weight: 400;
    color: #1a237e;
    letter-spacing: -0.01em;
    font-size: 14px;
}

.breakdown-item-extra {
    background: rgba(245, 118, 0, 0.05);
    border-left: 3px solid #f57600;
}

.breakdown-extra-label {
    font-weight: 600;
    color: #f57600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-right: 6px;
}

/* Billing Suggestion */
.billing-suggestion {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e5e0;
}

/* Hosting Information */
.hosting-info {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e5e0;
}

.billing-suggestion h3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.billing-suggestion h3 i {
    margin-right: 12px;
    color: #1a237e;
    font-size: 1rem;
}

.billing-content {
    color: #2c2c2c;
}

.billing-intro {
    font-size: 14px;
    color: #6a6a6a;
    margin-bottom: 24px;
    line-height: 1.5;
}

.billing-phases {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.billing-phase {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e8e5e0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.billing-phase:hover {
    background: #f0f2f5;
    border-color: #d0ccc7;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.billing-phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.billing-phase-title {
    font-weight: 500;
    color: #2c2c2c;
    font-size: 14px;
}

.billing-phase-percentage {
    background: #1a237e;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Branding billing phase styling */
.billing-phase:first-child .billing-phase-percentage {
    background: #2e7d32;
}

.billing-phase:first-child .billing-phase-amount {
    color: #2e7d32;
}

.billing-phase-description {
    font-size: 13px;
    color: #6a6a6a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.billing-phase-amount {
    font-weight: 600;
    color: #1a237e;
    font-size: 16px;
}

.billing-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f0f2f5;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #1a237e;
}

.billing-note i {
    color: #1a237e;
    margin-top: 2px;
    flex-shrink: 0;
}

.billing-note span {
    font-size: 13px;
    color: #6a6a6a;
    line-height: 1.5;
}

.hosting-info h3 {
    font-size: 1.1rem;
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.hosting-info h3 i {
    margin-right: 12px;
    color: #1a237e;
    font-size: 1rem;
}

.hosting-content {
    color: #2c2c2c;
}

.hosting-intro {
    font-size: 14px;
    color: #6a6a6a;
    margin-bottom: 24px;
    line-height: 1.5;
}

.hosting-costs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.hosting-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e8e5e0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hosting-item:hover {
    background: #f0f2f5;
    border-color: #d0ccc7;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hosting-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.hosting-item-title {
    font-weight: 500;
    color: #2c2c2c;
    font-size: 14px;
}

.hosting-item-price {
    background: #1a237e;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.hosting-item-description {
    font-size: 13px;
    color: #6a6a6a;
    margin: 0;
    line-height: 1.4;
}

.hosting-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(26, 35, 126, 0.05);
    border-radius: 12px;
    border-left: 3px solid #1a237e;
}

.hosting-note i {
    color: #1a237e;
    margin-top: 2px;
    flex-shrink: 0;
}

.hosting-note span {
    color: #6a6a6a;
    font-size: 13px;
    line-height: 1.4;
}

/* Pricing Summary */
.pricing-summary {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
    margin-bottom: 24px;
    color: #2c2c2c;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.pricing-summary h3 {
    font-size: 1.2rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.pricing-summary h3 i {
    margin-right: 12px;
    color: #1a237e;
    font-size: 1rem;
}

.price-display {
    text-align: center;
    margin-bottom: 40px;
}

.price-range {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.price-range-item {
    flex: 1;
    background: #f8f9fa;
    padding: 20px 16px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e8e5e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.price-range-item .label {
    display: block;
    font-size: 10px;
    color: #8a8a8a;
    margin-bottom: 8px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.price-range-item .amount {
    font-weight: 400;
    color: #1a237e;
    font-size: 1.8rem;
    letter-spacing: -0.01em;
}

.price-main {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e8e5e0;
}

.price-main .label {
    font-size: 11px;
    color: #8a8a8a;
    margin-bottom: 6px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.price-amount {
    font-size: 1.4rem;
    font-weight: 300;
    color: #2c2c2c;
    letter-spacing: -0.02em;
}

/* Hours Breakdown */
.hours-breakdown {
    margin-bottom: 40px;
}

.hours-breakdown h4 {
    font-size: 1rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.hours-breakdown h4 i {
    margin-right: 10px;
    color: #1a237e;
    font-size: 0.9rem;
}

.hours-grid {
    display: grid;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e8e5e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hours-label {
    font-weight: 300;
    color: #6a6a6a;
    font-size: 13px;
}

.hours-value {
    font-weight: 400;
    color: #1a237e;
    letter-spacing: -0.01em;
}

/* Stats */
.stats h4 {
    font-size: 1rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.stats h4 i {
    margin-right: 10px;
    color: #1a237e;
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    gap: 12px;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e8e5e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-label {
    font-weight: 300;
    color: #6a6a6a;
    font-size: 13px;
}

.stat-value {
    font-weight: 400;
    color: #1a237e;
    letter-spacing: -0.01em;
}

/* Info Panel */
.info-panel {
    background: #ffffff;
    border-radius: 16px;
    overflow: visible;
    color: #2c2c2c;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.info-toggle {
    width: 100%;
    background: #ffffff;
    color: #1a237e;
    border: none;
    border-radius: 16px;
    padding: 16px 20px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: inherit;
    font-size: 13px;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.info-toggle:hover {
    background: #303f9f;
    color: #ffffff;
}

.info-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-content.show {
    padding: 32px;
    max-height: 3000px;
    overflow-y: auto;
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.info-content h5 {
    font-size: 0.9rem;
    font-weight: 400;
    color: #1a237e;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.complexity-item {
    margin-bottom: 24px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e8e5e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.complexity-item strong {
    color: #2c2c2c;
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.complexity-item ul {
    margin-left: 16px;
    margin-top: 10px;
}

.complexity-item li {
    margin-bottom: 5px;
    color: #6a6a6a;
    font-size: 13px;
    font-weight: 300;
}

.template-explanation {
    background: #e8eaf6;
    border: 1px solid #c5cae9;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.template-explanation h5 {
    color: #1a237e;
    margin-bottom: 12px;
}

.template-explanation p {
    color: #2c2c2c;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.methodology-info {
    margin-bottom: 24px;
}

.rate-info {
    margin-top: 24px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e8e5e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rate-info p {
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 8px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 35, 126, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #ffffff;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    color: #2c2c2c;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid #e8e5e0;
}

.modal-header h3 {
    font-size: 1.2rem;
    font-weight: 300;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #8a8a8a;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-close:hover {
    background: #f8f9fa;
    color: #2c2c2c;
}

.modal-body {
    padding: 32px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    padding: 24px 32px;
    border-top: 1px solid #e8e5e0;
    background: #f8f9fa;
    border-radius: 0 0 16px 16px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 32px;
    color: #8a8a8a;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .right-panel {
        position: static;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 24px 20px;
        overflow-x: hidden;
    }
    
    .header {
        margin-bottom: 48px;
    }
    
    .header h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .header-subtitle {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .header-main {
        margin-bottom: 36px;
    }

    .header-intro {
        margin-bottom: 36px;
    }

    .intro-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 24px;
        gap: 20px;
    }

    .profile-photo {
        width: 70px;
        height: 70px;
        margin-bottom: 4px;
    }

    .intro-message {
        font-size: 0.95rem;
        margin-bottom: 18px;
    }

    .intro-note {
        font-size: 0.85rem;
        margin-bottom: 24px;
    }

    .intro-signature {
        align-items: center;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
        overflow-x: hidden;
        margin-left: -20px;
        margin-right: -20px;
        padding: 20px;
    }

    .right-panel {
        position: static;
        order: -1;
    }
    
    .left-panel {
        padding: 20px 16px;
        overflow-x: hidden;
        margin: 0;
    }

    .section {
        margin-bottom: 36px;
    }

    .section-header {
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 2px solid #f0f0f0;
    }

    .section-header h2 {
        font-size: 1.4rem;
        font-weight: 500;
        color: #1a1a1a;
    }

    /* Improve templates dropdown styling */
    .templates-dropdown {
        margin-bottom: 24px;
        border: 1px solid #e0e0e0;
        border-radius: 12px;
        overflow: hidden;
    }

    .templates-header {
        padding: 16px 20px;
        font-size: 1rem;
        background: #fafafa;
        border-bottom: 1px solid #e8e8e8;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .templates-header h3 {
        font-size: 1.1rem;
        font-weight: 500;
        color: #1a1a1a;
    }

    .templates-toggle {
        color: #1a237e;
        transition: transform 0.2s ease;
        font-size: 1rem;
    }

    .templates-toggle.collapsed {
        transform: rotate(-90deg);
    }

    .templates-content {
        background: #ffffff;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .page-item {
        background: transparent;
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin-bottom: 0;
        border-bottom: 1px solid #e8e8e8;
    }

    .page-item:last-child {
        border-bottom: none;
    }

    .page-item:hover {
        background-color: #f8f9ff;
    }

    .page-header {
        flex-direction: row;
        gap: 12px;
        align-items: center;
        display: flex;
        justify-content: space-between;
        margin-bottom: 0;
        padding: 14px 16px;
        background-color: transparent;
    }

    .page-name {
        font-size: 0.9rem;
        line-height: 1.3;
        font-weight: 500;
        color: #1a1a1a;
        flex: 1;
        min-width: 0;
    }

    .page-name span {
        display: block;
        font-size: 0.8rem;
        color: #8a8a8a;
        font-weight: 300;
    }

    .page-type-label {
        font-size: 0.75rem;
        padding: 3px 8px;
        border-radius: 12px;
        font-weight: 500;
        letter-spacing: 0.02em;
        text-transform: uppercase;
    }

    .page-complexity-label {
        font-size: 0.75rem;
        padding: 3px 8px;
        border-radius: 12px;
        font-weight: 500;
        letter-spacing: 0.02em;
        text-transform: uppercase;
    }

    .page-cost-summary {
        font-size: 0.9rem;
        font-weight: 600;
        color: #1a237e;
    }

    .page-controls {
        gap: 8px;
        align-self: center;
        margin-top: 0;
    }

    .page-toggle {
        font-size: 0.85rem;
        padding: 6px 12px;
        border-radius: 8px;
        font-weight: 500;
    }
    
    .pricing-summary {
        padding: 28px 24px;
        border-radius: 16px;
        border: 1px solid #e0e0e0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        margin-bottom: 24px;
    }
    
    .price-breakdown {
        padding: 24px 20px;
        border-radius: 12px;
        border: 1px solid #e0e0e0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        margin-bottom: 20px;
    }

    .billing-suggestion {
        padding: 24px 20px;
        border-radius: 16px;
        border: 1px solid #e0e0e0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        margin-bottom: 24px;
    }

    .hosting-info {
        padding: 24px 20px;
        border-radius: 16px;
        border: 1px solid #e0e0e0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        margin-bottom: 24px;
    }

    .billing-phases {
        gap: 16px;
    }

    .billing-phase {
        padding: 20px 18px;
        border-radius: 12px;
        border: 1px solid #e8e8e8;
        background: #fafafa;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .billing-phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .billing-phase-title {
        font-size: 1rem;
        font-weight: 600;
        color: #1a1a1a;
    }

    .billing-phase-amount {
        font-size: 1.2rem;
        font-weight: 700;
        color: #1a237e;
    }

    .hosting-item {
        padding: 20px 18px;
        border-radius: 12px;
        border: 1px solid #e8e8e8;
        background: #fafafa;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .hosting-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .hosting-item-title {
        font-size: 1rem;
        font-weight: 600;
        color: #1a1a1a;
    }

    .hosting-item-price {
        font-size: 1.1rem;
        font-weight: 700;
        color: #ffffff;
        background: #1a237e;
        padding: 6px 12px;
        border-radius: 20px;
    }
    
    .price-amount {
        font-size: 2.8rem;
        font-weight: 700;
        color: #1a237e;
    }
    
    .header-actions {
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
        padding-bottom: 16px;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
        font-weight: 500;
        color: #1a1a1a;
    }
    
    .section-header h3 {
        font-size: 1.2rem;
        font-weight: 500;
        color: #1a1a1a;
    }
    
    .page-details-grid {
        grid-template-columns: 1fr;
    }
    
    .price-range {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 20px;
    }
    
    .add-feature-form .form-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .planning-section {
        padding: 24px 20px;
        margin-left: 0;
        margin-right: 0;
        border-radius: 16px;
        overflow-x: hidden;
        background: #ffffff;
        border: 1px solid #e0e0e0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        margin-bottom: 24px;
    }

    /* Convert timeline to vertical cards on mobile */
    .timeline-container {
        padding: 0;
        overflow: visible;
        gap: 8px;
        justify-content: flex-end;
    }

    .timeline-layout {
        display: block;
    }

    .timeline-header {
        display: none; /* Hide horizontal timeline header on mobile */
    }

    .timeline-items {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }

    .timeline-item {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        padding: 16px 18px;
        border: 1px solid rgba(26, 35, 126, 0.08);
        display: block;
        width: 100%;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.2s ease;
    }

    .timeline-item:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .timeline-item-left,
    .timeline-item-middle,
    .timeline-item-right {
        display: block;
        padding: 0;
        width: 100%;
    }

    .timeline-item-label {
        font-size: 1.1rem;
        font-weight: 500;
        color: #1a237e;
        margin-bottom: 12px;
        display: block;
    }

    .timeline-item-grid {
        display: none; /* Hide the grid timeline on mobile */
    }

    .timeline-item-bar {
        display: block;
        background: #e3f2fd;
        border-radius: 8px;
        padding: 12px 16px;
        font-size: 0.9rem;
        color: #1565c0;
        margin-top: 8px;
        border-left: 4px solid #1565c0;
    }

    .timeline-item-bar[title*="Branding"] {
        background: #e8f5e8;
        color: #2e7d32;
        border-left-color: #2e7d32;
    }

    .timeline-item-controls {
        margin-top: 16px;
        display: flex;
        gap: 8px;
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 16px;
        overflow-x: hidden;
    }

    .header {
        margin-bottom: 36px;
    }

    .header h1 {
        font-size: 1.9rem;
        margin-bottom: 16px;
    }

    .header-subtitle {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .header-main {
        margin-bottom: 28px;
    }

    .header-intro {
        margin-bottom: 28px;
    }

    .intro-card {
        padding: 20px 18px;
        gap: 16px;
    }

    .profile-photo {
        width: 64px;
        height: 64px;
    }

    .intro-message {
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .intro-note {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .header-actions {
        margin-top: 16px;
    }

    .calculator-wrapper {
        gap: 20px;
        overflow-x: hidden;
        margin-left: -16px;
        margin-right: -16px;
        padding: 16px;
    }

    .left-panel {
        padding: 20px 16px;
        overflow-x: hidden;
        margin: 0;
        border-radius: 12px;
    }

    .section {
        margin-bottom: 28px;
    }

    .section-header {
        margin-bottom: 20px;
        padding-bottom: 12px;
        border-bottom: 2px solid #f0f0f0;
    }

    .section-header h2 {
        font-size: 1.2rem;
        font-weight: 500;
        color: #1a1a1a;
    }

    .section-header h3 {
        font-size: 1.1rem;
        font-weight: 500;
        color: #1a1a1a;
    }

    .templates-dropdown {
        margin-bottom: 20px;
        border: 1px solid #e0e0e0;
        border-radius: 10px;
        overflow: hidden;
    }

    .templates-header {
        padding: 14px 16px;
        font-size: 0.95rem;
        background: #fafafa;
        border-bottom: 1px solid #e8e8e8;
    }

    .templates-header h3 {
        font-size: 1rem;
        font-weight: 500;
        color: #1a1a1a;
    }

    .page-item {
        padding: 14px 16px;
        border: 1px solid #e8e8e8;
        border-radius: 8px;
        margin-bottom: 10px;
        background: #ffffff;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    .page-item:last-child {
        margin-bottom: 0;
    }

    .page-header {
        gap: 6px;
        align-items: flex-start;
        flex-direction: row;
        justify-content: space-between;
        padding: 8px 16px;
    }

    .page-name {
        font-size: 0.9rem;
        line-height: 1.3;
        font-weight: 500;
        color: #1a1a1a;
        margin-bottom: 0;
        flex: 1;
    }

    .page-name span {
        display: block;
        font-size: 0.8rem;
        color: #8a8a8a;
        font-weight: 300;
    }

    .page-type-label {
        font-size: 0.75rem;
        padding: 2px 6px;
        border-radius: 4px;
        font-weight: 500;
    }

    .page-complexity-label {
        font-size: 0.75rem;
        padding: 2px 6px;
        border-radius: 4px;
        font-weight: 500;
    }

    .page-cost-summary {
        font-size: 0.9rem;
        font-weight: 600;
        color: #1a237e;
        margin-top: 0;
        text-align: right;
    }

    .page-controls {
        gap: 8px;
        align-self: flex-end;
        margin-top: 0;
    }

    .page-toggle {
        font-size: 0.8rem;
        padding: 4px 8px;
        border-radius: 6px;
        font-weight: 500;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 18px;
        border-radius: 10px;
        margin-bottom: 12px;
        border: 1px solid #e8e8e8;
        background: #ffffff;
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
        transition: all 0.2s ease;
    }

    .feature-item:hover {
        border-color: #d0d7ff;
        transform: translateY(-1px);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
    }
    
    .feature-name {
        font-size: 0.9rem;
        font-weight: 500;
        color: #1a1a1a;
    }

    .feature-cost {
        font-size: 0.9rem;
        font-weight: 600;
        color: #1a237e;
    }
    
    .feature-controls {
        align-self: flex-end;
        gap: 12px;
        display: flex;
        align-items: center;
    }

    .feature-toggle {
        position: relative;
        width: 44px;
        height: 24px;
        background: #e0e0e0;
        border-radius: 20px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .feature-toggle.active {
        background: #4caf50;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
    }

    .feature-toggle::after {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        width: 20px;
        height: 20px;
        background: white;
        border-radius: 50%;
        transition: all 0.3s ease;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

    .feature-toggle.active::after {
        left: 22px;
    }

    .pricing-summary {
        padding: 24px 20px;
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .price-breakdown {
        padding: 20px 16px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .billing-suggestion {
        padding: 20px 16px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .hosting-info {
        padding: 20px 16px;
        border-radius: 12px;
        margin-bottom: 20px;
    }

    .price-amount {
        font-size: 2.2rem;
        font-weight: 700;
        color: #1a237e;
    }

    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .planning-section {
        padding: 20px 16px;
        margin-left: 0;
        margin-right: 0;
        border-radius: 12px;
        background: #ffffff;
        border: 1px solid #e0e0e0;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        margin-bottom: 20px;
    }

    /* Convert timeline to vertical cards on mobile (480px) */
    .timeline-container {
        padding: 0;
        overflow: visible;
        gap: 8px;
        justify-content: flex-end;
    }

    .timeline-layout {
        display: block;
    }

    .timeline-header {
        display: none; /* Hide horizontal timeline header on mobile */
    }

    .timeline-items {
        display: flex;
        flex-direction: column;
        gap: 12px;
        padding: 0 16px;
    }

    .timeline-item {
        background: rgba(255, 255, 255, 0.95);
        border-radius: 10px;
        padding: 16px;
        border: 1px solid rgba(26, 35, 126, 0.1);
        display: block;
        width: 100%;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

    .timeline-item-left,
    .timeline-item-middle,
    .timeline-item-right {
        display: block;
        padding: 0;
        width: 100%;
    }

    .timeline-item-label {
        font-size: 1rem;
        font-weight: 500;
        color: #1a237e;
        margin-bottom: 10px;
        display: block;
    }

    .timeline-item-grid {
        display: none; /* Hide the grid timeline on mobile */
    }

    .timeline-item-bar {
        display: block;
        background: #e3f2fd;
        border-radius: 6px;
        padding: 10px 12px;
        font-size: 0.8rem;
        color: #1565c0;
        margin-top: 6px;
        border-left: 3px solid #1565c0;
    }

    .timeline-item-bar[title*="Branding"] {
        background: #e8f5e8;
        color: #2e7d32;
        border-left-color: #2e7d32;
    }

    .timeline-item-controls {
        margin-top: 12px;
        display: flex;
        gap: 6px;
        justify-content: flex-end;
    }

    .billing-phase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .hosting-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* Planning section header improvements */
.planning-section .timeline-container::before {
    content: 'Planning Items';
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 0 20px;
}

@media (max-width: 480px) {
    .planning-section .timeline-container::before {
        padding: 0 16px;
        font-size: 0.85rem;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.slide-out {
    animation: slideOut 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideOut {
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

/* Password Protection */
.password-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a237e;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.password-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 40px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.2);
}

.password-header h2 {
    font-size: 1.8rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.password-header p {
    color: #8a8a8a;
    font-weight: 300;
    margin-bottom: 32px;
}

.password-body .form-group {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.password-body input {
    flex: 1;
    padding: 20px;
    border: 2px solid #e8e5e0;
    border-radius: 20px;
    font-size: 16px;
    font-family: inherit;
    font-weight: 300;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.password-body input:focus {
    outline: none;
    border-color: #1a237e;
    box-shadow: 0 0 0 4px rgba(26, 35, 126, 0.08);
}

.password-error {
    color: #dc3545;
    font-size: 14px;
    font-weight: 300;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.password-error.show {
    opacity: 1;
}

/* Header Actions */
.header-actions {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Planning Section */
.planning-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    color: #2c2c2c;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.timeline-container {
    margin-top: 32px;
    position: relative;
}

.timeline-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #1a237e, #7986cb);
    left: calc(240px + ((var(--current-month, 6) - 1) * 120px) + (120px / 2) + 20px - 1.5px);
    border-radius: 2px;
    z-index: 15;
    box-shadow: 0 0 8px rgba(26, 35, 126, 0.4);
    opacity: 0.9;
    pointer-events: none;
}



.timeline-layout {
    display: grid;
    gap: 12px;
}

.timeline-header {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e8e5e0;
    overflow: hidden;
}

.timeline-header-left {
    flex: 0 0 240px;
    padding: 16px 20px;
    font-weight: 500;
    color: #6a6a6a;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.current-date-info {
    font-size: 11px;
    color: #1a237e;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(26, 35, 126, 0.1);
    padding: 6px 10px;
    border-radius: 12px;
    border: 1px solid rgba(26, 35, 126, 0.2);
}

.current-date-info i {
    font-size: 10px;
}

.timeline-header-middle {
    flex: 1;
    position: relative;
    overflow: hidden;
}



.timeline-header-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.timeline-header-scroll::-webkit-scrollbar {
    display: none;
}

.timeline-months {
    display: grid;
    grid-template-columns: repeat(12, 120px);
    gap: 8px;
    padding: 16px 20px;
}

.timeline-month {
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    color: #6a6a6a;
    padding: 8px 4px;
    white-space: nowrap;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-month.current-month {
    color: #1a237e;
    font-weight: 600;
    background: rgba(26, 35, 126, 0.1);
    border-radius: 8px;
    transform: scale(1.05);
}

.current-month-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 6px;
    height: 6px;
    background: #1a237e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
    100% { opacity: 1; transform: scale(1); }
}

.timeline-header-right {
    flex: 0 0 80px;
    padding: 16px 20px;
}

.timeline-items {
    display: grid;
    gap: 12px;
}

.timeline-item {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 16px;
    border: 1px solid #e8e5e0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 64px;
    overflow: hidden;
}

.timeline-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.timeline-item-left {
    flex: 0 0 240px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
}

.timeline-item-label-container {
    width: 100%;
}

.timeline-item-label {
    font-weight: 400;
    color: #2c2c2c;
    font-size: 13px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-bottom: 8px;
    display: block;
}

.timeline-item-label:hover {
    background: rgba(26, 35, 126, 0.1);
    color: #1a237e;
}

.timeline-title-display {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.timeline-title-edit {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    border: 2px solid #1a237e;
    border-radius: 6px;
    padding: 4px 8px;
    background: #ffffff;
    width: 100%;
    box-sizing: border-box;
}

.timeline-title-edit:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.2);
}

.timeline-item-details {
    display: none;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
}

.timeline-item.expanded .timeline-item-details {
    display: grid;
}

.timeline-detail-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.timeline-detail-group label {
    font-size: 10px;
    font-weight: 500;
    color: #8a8a8a;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-detail-group select {
    padding: 6px 8px;
    border: 1px solid #e8e5e0;
    border-radius: 8px;
    font-size: 11px;
    font-family: inherit;
    background: #ffffff;
    color: #2c2c2c;
    transition: all 0.3s ease;
}

.timeline-detail-group select:hover {
    border-color: #c5cae9;
}

.timeline-detail-group select:focus {
    outline: none;
    border-color: #1a237e;
    box-shadow: 0 0 0 2px rgba(26, 35, 126, 0.1);
}

.timeline-item-middle {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.timeline-item-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.timeline-item-scroll::-webkit-scrollbar {
    display: none;
}

.timeline-fade-left,
.timeline-fade-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    pointer-events: none;
    z-index: 10;
}

.timeline-fade-left {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}

.timeline-fade-right {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

.timeline-item-grid {
    display: grid;
    grid-template-columns: repeat(12, 120px);
    gap: 8px;
    padding: 16px 20px;
    position: relative;
}

.timeline-item-bar {
    grid-column: var(--start) / var(--end);
    height: 36px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.timeline-item-bar.phase {
    background: #1a237e;
}

.timeline-item-bar.milestone {
    background: #7986cb;
}

/* Branding timeline items */
.timeline-item-bar[title*="Branding"] {
    background: #2e7d32 !important;
}

.timeline-item-right {
    flex: 0 0 80px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-item-controls {
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-item:hover .timeline-item-controls {
    opacity: 1;
}

.timeline-edit,
.timeline-delete {
    background: none;
    border: none;
    color: #8a8a8a;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 12px;
}

.timeline-edit:hover {
    color: #1a237e;
    background: rgba(26, 35, 126, 0.1);
}

.timeline-delete:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

/* Branding Section */
.branding-container {
    display: grid;
    gap: 16px;
}

.branding-item {
    background: #f8f9fa;
    border: 1px solid #e8e5e0;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.branding-item:hover {
    border-color: #2e7d32;
    box-shadow: 0 4px 16px rgba(46, 125, 50, 0.1);
    transform: translateY(-2px);
}

.branding-info {
    flex: 1;
}

.branding-name {
    font-weight: 400;
    color: #2c2c2c;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.branding-name:hover {
    background: rgba(46, 125, 50, 0.1);
    color: #2e7d32;
}

.branding-name-edit {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    border: 2px solid #2e7d32;
    border-radius: 4px;
    padding: 2px 6px;
    background: #ffffff;
    min-width: 120px;
}

.branding-name-edit:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.branding-price-input {
    font-size: 12px;
    color: #8a8a8a;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
}

.branding-price-input input {
    width: 80px;
    padding: 6px 10px;
    border: 2px solid #e8e5e0;
    border-radius: 16px;
    font-size: 12px;
    font-family: inherit;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.branding-price-input input:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.1);
}

.branding-cost {
    font-weight: 400;
    color: #2e7d32;
    margin-right: 20px;
    font-size: 1rem;
    letter-spacing: -0.01em;
    min-width: 80px;
    text-align: right;
}

.branding-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.branding-delete {
    background: none;
    border: none;
    color: #8a8a8a;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
}

.branding-delete:hover {
    background: #dc3545;
    color: #ffffff;
    transform: translateY(-1px);
}

.add-branding-form {
    background: #f8f9fa;
    border: 1px solid #e8e5e0;
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 16px;
    display: none;
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.add-branding-form.show {
    display: block;
}

.add-branding-form .form-row {
    display: grid;
    grid-template-columns: 1fr 120px 140px;
    gap: 12px;
    margin-bottom: 16px;
}

.add-branding-form input {
    padding: 16px 20px;
    border: 2px solid #e8e5e0;
    border-radius: 20px;
    font-size: 15px;
    font-family: inherit;
    font-weight: 300;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.add-branding-form input:hover {
    border-color: #c5cae9;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.add-branding-form input:focus {
    outline: none;
    border-color: #2e7d32;
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.08), 0 8px 24px rgba(46, 125, 50, 0.12);
    background: #f8fff8;
    transform: translateY(-2px);
}

/* Section Subsection Styling */
.section-subsection {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
    position: relative;
}

.section-subsection::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #1a237e, #3f51b5);
}

.section-subsection .section-header h3 {
    font-size: 1.2rem;
    font-weight: 300;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

/* Save Notification */
.save-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    animation: slideInFromRight 0.3s ease-out;
}

.save-notification.success {
    background: #4caf50;
    color: white;
}

.save-notification.error {
    background: #f44336;
    color: white;
}

@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Admin Styles */
.admin-link {
    color: #1a237e;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.admin-link:hover {
    background: rgba(26, 35, 126, 0.1);
    color: #0d1660;
}

.admin-modal .modal-content {
    max-width: 400px;
}

.admin-error {
    color: #c62828;
    font-size: 0.85rem;
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admin-error.show {
    opacity: 1;
}

.admin-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    backdrop-filter: blur(4px);
}

.admin-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
    width: 90%;
    max-width: 1000px;
    max-height: 80vh;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid #e8e5e0;
    background: #1a237e;
    color: #ffffff;
    border-radius: 16px 16px 0 0;
}

.admin-header h2 {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0;
}

.admin-header h2 i {
    margin-right: 12px;
}

.admin-sections {
    padding: 32px;
    display: grid;
    gap: 40px;
}

.admin-section {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
}

.admin-section-header {
    background: #1a237e;
    color: #ffffff;
    padding: 16px 24px;
}

.admin-section-header h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0;
}

.admin-section-header h3 i {
    margin-right: 10px;
}

.admin-features-list,
.admin-branding-list {
    padding: 24px;
}

.admin-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #ffffff;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid #e8e5e0;
}

.admin-item:last-child {
    margin-bottom: 0;
}

.admin-item-info {
    flex: 1;
}

.admin-item-name {
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 4px;
}

.admin-item-status {
    font-size: 0.85rem;
    color: #666;
}

.admin-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-hours-input {
    width: 80px;
    padding: 6px 8px;
    border: 1px solid #e8e5e0;
    border-radius: 6px;
    font-size: 0.9rem;
    text-align: center;
}

.admin-hours-input:focus {
    outline: none;
    border-color: #1a237e;
}

.add-feature-note {
    font-size: 0.85rem;
    color: #666;
    margin: 8px 0 0 0;
    font-style: italic;
}

.branding-hours-display {
    font-size: 0.85rem;
    color: #666;
    font-style: italic;
}

/* Admin Footer */
.admin-footer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

@media (max-width: 768px) {
    .admin-footer {
        bottom: 24px;
        right: 24px;
    }
    
    .admin-footer-link {
        padding: 12px 16px;
        font-size: 0.9rem;
        border-radius: 50px;
        gap: 8px;
        box-shadow: 0 4px 16px rgba(26, 35, 126, 0.3);
    }
}

@media (max-width: 480px) {
    .admin-footer {
        bottom: 16px;
        right: 16px;
    }
    
    .admin-footer-link {
        padding: 10px 14px;
        font-size: 0.8rem;
        border-radius: 50px;
        gap: 6px;
        box-shadow: 0 2px 12px rgba(26, 35, 126, 0.25);
    }
    
    .admin-footer-link i {
        font-size: 0.8rem;
    }
}

.admin-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #1a237e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 16px rgba(26, 35, 126, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #1a237e;
}

.admin-footer-link:hover {
    background: #0d1660;
    border-color: #0d1660;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.4);
}

.admin-footer-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(26, 35, 126, 0.3);
}

.admin-footer-link i {
    font-size: 1rem;
} 