/*
* Website Polish - Master Standardization File
* Ensures consistency across all pages for investors and clients
* Version: 1.0.0
*/

/* ==========================================================================
   Global Container & Layout Standardization
   ========================================================================== */

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1.5rem, 4vw, 2.5rem);
    padding-right: clamp(1.5rem, 4vw, 2.5rem);
    width: 100%;
}

.service-content,
.service-section-grid {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1.5rem, 4vw, 2.5rem);
    padding-right: clamp(1.5rem, 4vw, 2.5rem);
}

/* ==========================================================================
   Section Spacing Standardization
   ========================================================================== */

section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    position: relative;
}

.service-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.service-hero,
.contact-hero {
    padding: clamp(5rem, 10vw, 8rem) 0;
}

/* ==========================================================================
   Typography Standardization
   ========================================================================== */

/* Headings */
h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

h4, h5, h6 {
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

/* Paragraphs */
p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
    font-weight: 400;
}

/* Section Titles */
.section-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.section-title.services {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
}

/* Service Titles */
.service-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

/* ==========================================================================
   Button Standardization
   ========================================================================== */

.cta-button,
.purchase-btn,
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    letter-spacing: 0.5px;
    line-height: 1.5;
    min-height: 48px;
}

.cta-button {
    background: var(--primary-color);
    color: #ffffff;
}

.cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
}

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

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.purchase-btn {
    background: var(--primary-color);
    color: #ffffff;
}

.purchase-btn:hover {
    background: var(--secondary-color);
}

.submit-btn {
    background: var(--primary-color);
    color: #ffffff;
    width: 100%;
    max-width: 300px;
}

.submit-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.35);
}

/* ==========================================================================
   Card Standardization
   ========================================================================== */

.service-card,
.industry-card,
.story-card,
.testimonial-card,
.feature-card,
.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.service-card:hover,
.industry-card:hover,
.story-card:hover,
.testimonial-card:hover,
.feature-card:hover,
.contact-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 0, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.service-card h3,
.industry-card h3,
.story-card h3,
.feature-card h3 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card p,
.industry-card p,
.story-card p,
.feature-card p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* ==========================================================================
   Grid Standardization
   ========================================================================== */

.services-grid,
.industry-cards,
.story-grid,
.testimonial-grid,
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .services-grid,
    .industry-cards,
    .story-grid,
    .testimonial-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   Form Standardization
   ========================================================================== */

.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    line-height: 1.5;
    font-family: var(--font-primary);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.form-control:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Footer Standardization
   ========================================================================== */

.site-footer {
    background: var(--dark-bg-2);
    padding: clamp(3rem, 6vw, 4rem) 0 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ==========================================================================
   Navigation Standardization
   ========================================================================== */

.navbar {
    padding: 1rem clamp(1.5rem, 4vw, 2.5rem);
}

.nav-link {
    font-size: 1rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.purchase-btn {
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
}

/* ==========================================================================
   Hero Section Standardization
   ========================================================================== */

.hero,
.service-hero,
.contact-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}

.hero-content,
.service-hero .container,
.contact-hero .container {
    max-width: 900px;
}

.hero h1,
.service-hero h1,
.contact-hero h1 {
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   Process Steps Standardization
   ========================================================================== */

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 107, 0, 0.2);
    transform: translateY(-4px);
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

/* ==========================================================================
   Contact Cards Standardization
   ========================================================================== */

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    text-align: center;
    min-height: 200px;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 12px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ==========================================================================
   Service Content Grid Standardization
   ========================================================================== */

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .service-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ==========================================================================
   Image Standardization
   ========================================================================== */

.service-image-container {
    width: 100%;
    min-height: 400px;
    max-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-image-container:hover .service-image {
    transform: scale(1.02);
}

/* ==========================================================================
   Learn More Links Standardization
   ========================================================================== */

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.learn-more:hover {
    color: var(--secondary-color);
    gap: 0.75rem;
}

/* ==========================================================================
   Service Number Standardization
   ========================================================================== */

.service-number {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(255, 107, 0, 0.2);
}

/* ==========================================================================
   Industry Features List Standardization
   ========================================================================== */

.industry-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.industry-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.industry-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ==========================================================================
   CTA Section Standardization
   ========================================================================== */

.cta-section {
    text-align: center;
    padding: clamp(4rem, 8vw, 6rem) 0;
}

.cta-section .container {
    max-width: 800px;
}

.cta-section h2 {
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 1024px) {
    .container {
        padding-left: clamp(1.25rem, 3vw, 2rem);
        padding-right: clamp(1.25rem, 3vw, 2rem);
    }
    
    section {
        padding: clamp(3rem, 6vw, 5rem) 0;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }
    
    h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .section-title {
        font-size: clamp(2rem, 7vw, 3rem);
        margin-bottom: 2rem;
    }
    
    .service-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
    
    .cta-button,
    .purchase-btn,
    .submit-btn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .service-card,
    .industry-card,
    .story-card,
    .contact-card {
        padding: 1.5rem;
        min-height: auto;
    }
}

