/* ================================================
   URL Forge - Shared Styles
   ================================================ */

/* CSS Variables */
:root {
    --primary: #121212;
    --secondary: #666666;
    --border: #e5e5e5;
    --accent: #667eea;
    --accent-purple: #764ba2;
    --font_sequelsansromanbody: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font_awesome: "Font Awesome 6 Free";
}

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

body {
    font-family: var(--font_sequelsansromanbody);
    color: var(--primary);
    background-color: #ffffff;
    line-height: 1.6;
}

/* ================================================
   Header Styles
   ================================================ */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

.btn-primary {
    background-color: var(--primary);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

@media only screen and (max-width: 991px) {
    .nav-links {
        gap: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .header .d-flex {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
}

/* ================================================
   Page Layout Styles
   ================================================ */
.page-area {
    padding: 60px 0 100px;
}

.section-header {
    /*border-top: 1px solid var(--border);*/
    padding-top: 37px;
}

@media only screen and (max-width: 991px) {
    .section-header {
        padding-top: 7px;
    }
}

.section-title-wrapper {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 48px;
    font-weight: 310;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 auto;
}

@media only screen and (max-width: 1399px) {
    .section-title {
        font-size: 36px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title {
        font-size: 32px;
    }
}

.subtitle-wrapper {
    margin-top: 8px;
}

.subtitle {
    font-size: 18px;
    color: var(--secondary);
    line-height: 1.6;
    margin: 0 auto;
}

.last-updated {
    background-color: #f8f9fa;
    padding: 15px;
    border-left: 3px solid var(--accent);
    margin: 20px auto;
    font-size: 16px;
    color: var(--secondary);
    max-width: 800px;
}

/* ================================================
   Content Wrapper Styles
   ================================================ */
.content-wrapper {
    max-width: 1235px;
    margin: 50px auto 0;
}

@media only screen and (max-width: 1919px) {
    .content-wrapper {
        max-width: 1000px;
    }
}

@media only screen and (max-width: 1399px) {
    .content-wrapper {
        max-width: 900px;
    }
}

@media only screen and (max-width: 1199px) {
    .content-wrapper {
        max-width: 750px;
    }
}

/* ================================================
   Accordion/FAQ Styles
   ================================================ */
.accordion-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.accordion {
    border-top: 1px solid var(--border);
    counter-reset: accordion;
}

.accordion-button {
    font-size: 24px;
    font-weight: 310;
    line-height: 1.16;
    letter-spacing: -0.05em;
    color: var(--primary);
    padding: 30px 0 33px;
    border-radius: 0 !important;
    background-color: transparent;
    outline: 0;
    box-shadow: none;
    position: relative;
    z-index: 100;
}

@media only screen and (max-width: 767px) {
    .accordion-button {
        font-size: 18px;
        padding: 20px 0 23px;
    }
}

.accordion-button::after {
    content: "+";
    font-family: var(--font_awesome);
    background-image: none;
    width: auto;
    height: auto;
    position: relative;
    z-index: 100;
}

/*.accordion-button:not(.collapsed) {
    pointer-events: none;
}*/

.accordion-button:not(.collapsed)::after {
    content: "*";
    position: relative;
    z-index: 100;
    margin-right: 10px;
    font-size: 24px;
    font-weight: 310;
    text-decoration: none;
}

.accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    position: relative;
    padding-left: 80px;
    transition: all 0.5s;
}

@media only screen and (max-width: 767px) {
    .accordion-item {
        padding-left: 50px;
    }
}

.accordion-item:before {
    counter-increment: accordion;
    content: counter(accordion, decimal-leading-zero);
    font-family: var(--font_sequelsansromanbody);
    font-size: 24px;
    font-weight: 310;
    line-height: 1.16;
    letter-spacing: -0.05em;
    position: absolute;
    top: 30px;
    left: 0;
    transition: all 0.5s;
    color: var(--primary);
}

@media only screen and (max-width: 767px) {
    .accordion-item:before {
        top: 20px;
        font-size: 18px;
    }
}

.accordion-body {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    color: var(--secondary);
    padding: 4px 0 43px;
    border: none;
}

@media only screen and (max-width: 767px) {
    .accordion-body {
        font-size: 16px;
        line-height: 24px;
    }
}

.accordion-body ul {
    margin: 15px 0;
    padding-left: 20px;
}

.accordion-body li {
    margin-bottom: 8px;
}

.accordion-body strong {
    color: var(--primary);
}

/* ================================================
   Pricing Styles
   ================================================ */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
    .pricing-cards {
        gap: 30px;
    }
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #e2e8f0;
    position: relative;
    width: 380px;
    max-width: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured {
    border-color: var(--accent);
}

.pricing-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-purple) 100%);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 10px;
}

.plan-description {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 30px;
    min-height: 48px;
}

.price {
    font-size: 48px;
    font-weight: 310;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.price-period {
    font-size: 16px;
    color: var(--secondary);
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.features-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--secondary);
    font-size: 16px;
    display: flex;
    align-items: center;
}

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

.features-list li i {
    color: var(--accent);
    margin-right: 12px;
    font-size: 18px;
}

.cta-button {
    width: 100%;
    padding: 15px 30px;
    border: 2px solid var(--primary);
    background-color: transparent;
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: var(--primary);
    color: white;
}

.cta-button.featured {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-purple) 100%);
    color: white;
    border: none;
}

.cta-button.featured:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* ================================================
   Feature Grid Styles
   ================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

@media only screen and (max-width: 767px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-purple) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary);
}

.feature-description {
    font-size: 16px;
    color: var(--secondary);
    line-height: 1.6;
}

/* ================================================
   Contact Form Styles
   ================================================ */
.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font_sequelsansromanbody);
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
}

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

.submit-button {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-purple) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-info-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
}

.contact-info-card i {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 15px;
}

.contact-info-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary);
}

.contact-info-card p {
    font-size: 16px;
    color: var(--secondary);
}

.contact-info-card a {
    color: var(--accent);
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

/* ================================================
   Footer Styles
   ================================================ */
.footer {
    background-color: #f8f9fa;
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 991px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-section p {
    color: var(--secondary);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--secondary);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--secondary);
    font-size: 14px;
}

.contact-info {
    margin-top: 15px;
}

.contact-info p {
    margin: 5px 0;
    font-size: 14px;
}

/* ================================================
   Section Divider Styles
   ================================================ */
.section-divider {
    margin-top: 100px;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.section-subtitle {
    font-size: 36px;
    font-weight: 310;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.02em;
}

@media only screen and (max-width: 767px) {
    .section-subtitle {
        font-size: 28px;
    }
}

/* ================================================
   Text Content Styles
   ================================================ */
.text-content {
    max-width: 900px;
    margin: 0 auto;
}

.text-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--primary);
}

.text-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--primary);
}

.text-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 20px;
}

.text-content ul, .text-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.text-content li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
    .text-content h2 {
        font-size: 26px;
    }
    
    .text-content h3 {
        font-size: 20px;
    }
    
    .text-content p,
    .text-content li {
        font-size: 16px;
    }
}


