/* ===========================================
   GET STARTED PAGE STYLES - MAIN STYLESHEET
   =========================================== */

/* Get Started Page Specific Styles */

/* ===========================================
   GET STARTED HERO SECTION - HERO BACKGROUND
   =========================================== */

/* Get Started Hero Section */
.get-started-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(0, 0, 0, 0.7) 100%), 
                url(../Image/Background/Get-started_Background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 8rem 0 12rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Remove top padding when hero class is present */
body:has(.hero) .get-started-hero {
    padding-top: 0 !important;
}

/* Center hero content vertically and horizontally when hero class is present */
body:has(.hero) .get-started-hero {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100vh !important;
}

/* Ensure container within hero is also centered */
body:has(.hero) .get-started-hero .container {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100vh !important;
}

/* Center the hero content within the container */
body:has(.hero) .get-started-hero .hero-content {
    text-align: center !important;
    width: 100% !important;
}

/* ===========================================
   GET STARTED HERO OVERLAY - HERO OVERLAY EFFECTS
   =========================================== */

.get-started-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 30%, rgba(74, 222, 128, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* ===========================================
   GET STARTED HERO THEME VARIATIONS - THEME BACKGROUNDS
   =========================================== */

/* Dark theme background adjustment */
body.dark-theme .get-started-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 46, 0.8) 50%, rgba(0, 0, 0, 0.8) 100%), 
                url(../Image/Background/Get-started_Background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* Light theme background adjustment */
body:not(.dark-theme) .get-started-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 46, 0.7) 50%, rgba(0, 0, 0, 0.7) 100%), 
                url(../Image/Background/Get-started_Background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/* ===========================================
   GET STARTED TITLE - HERO TITLE STYLES
   =========================================== */

.get-started-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================================
   GET STARTED SUBTITLE - HERO SUBTITLE STYLES
   =========================================== */

.get-started-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* ===========================================
   CONTACT FORM SECTION - MAIN CONTACT FORM
   =========================================== */

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: #f9fafb; /* Day mode background */
}

/* ===========================================
   CONTACT FORM THEME VARIATIONS - THEME BACKGROUNDS
   =========================================== */

/* Dark theme background */
body.dark-theme .contact-form-section {
    background: #111827; /* Night mode background */
}

/* ===========================================
   CONTACT FORM DARK THEME - DARK THEME FORM STYLES
   =========================================== */

/* Dark theme form styles */
body.dark-theme .consultation-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}


body.dark-theme .form-intro p {
    color: rgba(255, 255, 255, 0.8);
}

body.dark-theme .form-group label {
    color: #ffffff;
}

body.dark-theme .form-group input,
body.dark-theme .form-group select,
body.dark-theme .form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    backdrop-filter: blur(5px);
}

body.dark-theme .form-group input:focus,
body.dark-theme .form-group select:focus,
body.dark-theme .form-group textarea:focus {
    border-color: #8b5cf6;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

body.dark-theme .form-group input::placeholder,
body.dark-theme .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Dark theme styles for select options */
body.dark-theme .form-group select option {
    background: #1f2937;
    color: #ffffff;
    padding: 0.5rem;
}

body.dark-theme .form-group select:focus option {
    background: #374151;
    color: #ffffff;
}

/* Ensure selected text in select is visible */
body.dark-theme .form-group select {
    color: #ffffff !important;
}

body.dark-theme .form-group select option:checked {
    background: #8b5cf6;
    color: #ffffff;
}

body.dark-theme .checkbox-label {
    color: rgba(255, 255, 255, 0.9);
}

body.dark-theme .checkbox-label:hover {
    color: #ffffff;
}

body.dark-theme .checkmark {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* ===========================================
   FORM CONTENT - FORM CONTENT CONTAINER
   =========================================== */

.form-content {
    max-width: 800px;
    margin: 0 auto;
}

/* ===========================================
   FORM INTRO - FORM INTRODUCTION
   =========================================== */

.form-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.form-intro h2 {
    font-size: 48px;
    margin-bottom: 1rem;
    color: #1f2937;
    font-family: "Proxima Nova Semibold", sans-serif !important;
    font-weight: 700 !important;
}

/* Dark mode section titles */
body.dark-theme .form-intro h2 {
    color: #FFFFFF !important;
}

.form-intro p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* ===========================================
   CONSULTATION FORM - MAIN FORM LAYOUT
   =========================================== */

.consultation-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* ===========================================
   FORM GROUP - FORM FIELD CONTAINER
   =========================================== */

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

.form-group.full-width {
    grid-column: 1 / -1;
}

/* ===========================================
   FORM LABEL - FORM FIELD LABELS
   =========================================== */

.form-group label {
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* ===========================================
   FORM INPUTS - FORM INPUT STYLES
   =========================================== */

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    background: #f9fafb;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    color: #374151;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* ===========================================
   FORM INPUT FOCUS - FORM INPUT FOCUS STATES
   =========================================== */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

/* ===========================================
   CHECKBOX GROUP - CHECKBOX CONTAINER
   =========================================== */

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

/* ===========================================
   CHECKBOX LABEL - CHECKBOX LABEL STYLES
   =========================================== */

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    color: #8b5cf6;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

/* ===========================================
   CHECKMARK - CHECKBOX MARK STYLES
   =========================================== */

.checkmark {
    width: 20px;
    height: 20px;
    background: #f9fafb;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #8b5cf6;
    border-color: #8b5cf6;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
}

/* ===========================================
   SUBMIT BUTTON - FORM SUBMIT BUTTON
   =========================================== */

.submit-button {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--secondary-color), #8b5cf6);
    color: #FFFFFF;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.button-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
    transform: translateX(5px);
}

/* ===========================================
   PROCESS SECTION - WORK PROCESS SHOWCASE
   =========================================== */

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: #f9fafb; /* Day mode background */
}

.process-section .section-title {
    text-align: center;
    font-family: "Proxima Nova Semibold", sans-serif !important;
    font-size: 48px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
}

/* Dark mode section titles */
body.dark-theme .process-section .section-title {
    color: #FFFFFF !important;
}


/* Dark theme background */
body.dark-theme .process-section {
    background: #111827; /* Night mode background */
}

/* Dark theme process cards */
body.dark-theme .process-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

body.dark-theme .process-step h3 {
    color: #ffffff;
}

body.dark-theme .process-step p {
    color: rgba(255, 255, 255, 0.8);
}

/* ===========================================
   PROCESS GRID - PROCESS STEPS GRID
   =========================================== */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================================
   PROCESS STEP - INDIVIDUAL PROCESS STEP
   =========================================== */

.process-step {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Progress rings for process steps */
/* removed progress ring on process cards */

.process-step:hover {
    transform: translateY(-10px);
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

/* Animated progress border using SVG rect stroke */
/* removed progress border on process/faq cards */

/* ===========================================
   STEP NUMBER - PROCESS STEP NUMBER
   =========================================== */

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    position: relative;
}

/* ===========================================
   STEP NUMBER AFTER - PROCESS STEP NUMBER DECORATION
   =========================================== */

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 2rem);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
    transform: translateY(-50%);
}

/* ===========================================
   PROCESS STEP LAST CHILD - LAST STEP DECORATION
   =========================================== */

.process-step:last-child .step-number::after {
    display: none;
}

/* ===========================================
   PROCESS STEP H3 - PROCESS STEP TITLE
   =========================================== */

.process-step h3 {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Inter', 'Inter Fallback', sans-serif;
}

/* ===========================================
   PROCESS STEP H3 DARK THEME - DARK THEME PROCESS STEP TITLE
   =========================================== */

/* Dark mode card titles */
body.dark-theme .process-step h3 {
    color: #8b5cf6;
}

/* ===========================================
   PROCESS STEP P - PROCESS STEP DESCRIPTION
   =========================================== */

.process-step p {
    color: #6b7280;
    line-height: 1.5;
    font-size: 16px;
    font-family: 'Inter', 'Inter Fallback', sans-serif;
}

/* ===========================================
   PROCESS STEP P DARK THEME - DARK THEME PROCESS STEP DESCRIPTION
   =========================================== */

/* Dark mode descriptions */
body.dark-theme .process-step p {
    color: #6b7280;
}

/* ===========================================
   FAQ SECTION - FAQ SECTION LAYOUT
   =========================================== */

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #f9fafb; /* Day mode background */
}

/* ===========================================
   FAQ SECTION TITLE - FAQ SECTION TITLE
   =========================================== */

.faq-section .section-title {
    text-align: center;
    font-family: "Proxima Nova Semibold", sans-serif !important;
    font-size: 48px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
}

/* ===========================================
   FAQ SECTION TITLE DARK THEME - DARK THEME FAQ SECTION TITLE
   =========================================== */

/* Dark mode section titles */
body.dark-theme .faq-section .section-title {
    color: #FFFFFF !important;
}

/* ===========================================
   FAQ SECTION TITLE LIGHT THEME - LIGHT THEME FAQ SECTION TITLE
   =========================================== */

/* Light mode section titles */
body.light-theme .faq-section .section-title {
    color: #1f2937 !important;
}


/* ===========================================
   FAQ SECTION DARK THEME - DARK THEME FAQ SECTION
   =========================================== */

/* Dark theme background */
body.dark-theme .faq-section {
    background: #111827; /* Night mode background */
}

/* ===========================================
   FAQ ITEM DARK THEME - DARK THEME FAQ ITEM
   =========================================== */

/* Dark theme FAQ cards */
body.dark-theme .faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* ===========================================
   FAQ QUESTION DARK THEME - DARK THEME FAQ QUESTION
   =========================================== */

body.dark-theme .faq-question {
    color: #ffffff;
}

/* ===========================================
   FAQ ANSWER DARK THEME - DARK THEME FAQ ANSWER
   =========================================== */

body.dark-theme .faq-answer {
    color: rgba(255, 255, 255, 0.8);
}

/* ===========================================
   FAQ GRID - FAQ ITEMS GRID
   =========================================== */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================================
   FAQ ITEM - FAQ ITEM CARD
   =========================================== */

.faq-item {
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

/* Progress border for FAQ cards */
/* removed progress border on faq cards */

/* ===========================================
   FAQ ITEM HOVER - FAQ ITEM HOVER EFFECT
   =========================================== */

.faq-item:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

/* ===========================================
   FAQ QUESTION - FAQ QUESTION TEXT
   =========================================== */

.faq-question {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Inter', 'Inter Fallback', sans-serif;
}

/* ===========================================
   FAQ QUESTION DARK THEME - DARK THEME FAQ QUESTION
   =========================================== */

/* Dark mode card titles */
body.dark-theme .faq-question {
    color: #8b5cf6;
}

/* ===========================================
   FAQ QUESTION LIGHT THEME - LIGHT THEME FAQ QUESTION
   =========================================== */

/* Light mode card titles */
body.light-theme .faq-question {
    color: #8b5cf6 !important;
}

/* ===========================================
   FAQ ANSWER - FAQ ANSWER TEXT
   =========================================== */

.faq-answer {
    color: #6b7280;
    line-height: 1.6;
    font-size: 16px;
    font-family: 'Inter', 'Inter Fallback', sans-serif;
}

/* ===========================================
   FAQ ANSWER DARK THEME - DARK THEME FAQ ANSWER
   =========================================== */

/* Dark mode descriptions */
body.dark-theme .faq-answer {
    color: #6b7280;
}

/* ===========================================
   CONTACT INFO SECTION - CONTACT INFO SECTION LAYOUT
   =========================================== */

/* Contact Info Section */
.contact-info-section {
    padding: 6rem 0;
    background: #f9fafb; /* Day mode background */
}

/* ===========================================
   CONTACT INFO SECTION DARK THEME - DARK THEME CONTACT INFO SECTION
   =========================================== */

/* Dark theme background */
body.dark-theme .contact-info-section {
    background: #111827; /* Night mode background */
}

/* ===========================================
   CONTACT ITEM DARK THEME - DARK THEME CONTACT ITEM
   =========================================== */

/* Dark theme contact cards */
body.dark-theme .contact-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* ===========================================
   CONTACT ITEM H3 DARK THEME - DARK THEME CONTACT ITEM TITLE
   =========================================== */

body.dark-theme .contact-item h3 {
    color: #ffffff;
}

/* ===========================================
   CONTACT ITEM P DARK THEME - DARK THEME CONTACT ITEM DESCRIPTION
   =========================================== */

body.dark-theme .contact-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* ===========================================
   CONTACT GRID - CONTACT ITEMS GRID
   =========================================== */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================================
   CONTACT ITEM - CONTACT ITEM CARD
   =========================================== */

.contact-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* ===========================================
   CONTACT ITEM HOVER - CONTACT ITEM HOVER EFFECT
   =========================================== */

.contact-item:hover {
    transform: translateY(-8px);
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.2);
}

/* ===========================================
   CONTACT ICON - CONTACT ITEM ICON
   =========================================== */

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

/* ===========================================
   CONTACT ITEM H3 - CONTACT ITEM TITLE
   =========================================== */

.contact-item h3 {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-family: 'Inter', 'Inter Fallback', sans-serif;
}

/* ===========================================
   CONTACT ITEM H3 DARK THEME - DARK THEME CONTACT ITEM TITLE
   =========================================== */

/* Dark mode card titles */
body.dark-theme .contact-item h3 {
    color: #8b5cf6;
}

/* ===========================================
   CONTACT ITEM P - CONTACT ITEM DESCRIPTION
   =========================================== */

.contact-item p {
    color: #6b7280;
    font-size: 16px;
    font-family: 'Inter', 'Inter Fallback', sans-serif;
}

/* ===========================================
   CONTACT ITEM P DARK THEME - DARK THEME CONTACT ITEM DESCRIPTION
   =========================================== */

/* Dark mode descriptions */
body.dark-theme .contact-item p {
    color: #6b7280;
}

/* ===========================================
   CONTACT ITEM A - CONTACT ITEM LINK
   =========================================== */

.contact-item a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* ===========================================
   CONTACT ITEM A HOVER - CONTACT ITEM LINK HOVER
   =========================================== */

.contact-item a:hover {
    color: white;
}

/* ===========================================
   RESPONSIVE DESIGN - MOBILE RESPONSIVE DESIGN
   =========================================== */

/* Responsive Design */
@media screen and (max-width: 768px) {
    /* ===========================================
       GET STARTED TITLE MOBILE - MOBILE GET STARTED TITLE
       =========================================== */
    
    .get-started-title {
        font-size: 2.5rem;
    }
    
    /* ===========================================
       CONSULTATION FORM MOBILE - MOBILE CONSULTATION FORM
       =========================================== */
    
    .consultation-form {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    /* ===========================================
       CHECKBOX GROUP MOBILE - MOBILE CHECKBOX GROUP
       =========================================== */
    
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    /* ===========================================
       PROCESS GRID MOBILE - MOBILE PROCESS GRID
       =========================================== */
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        justify-content: center;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* ===========================================
       STEP NUMBER AFTER MOBILE - MOBILE STEP NUMBER DECORATION
       =========================================== */
    
    .step-number::after {
        display: none;
    }
    
    /* ===========================================
       FAQ GRID MOBILE - MOBILE FAQ GRID
       =========================================== */
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-content: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* ===========================================
       CONTACT GRID MOBILE - MOBILE CONTACT GRID
       =========================================== */
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-content: center;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===========================================
   SMALL MOBILE RESPONSIVE DESIGN - SMALL MOBILE RESPONSIVE DESIGN
   =========================================== */

@media screen and (max-width: 576px) {
    /* ===========================================
       GET STARTED HERO SMALL MOBILE - SMALL MOBILE GET STARTED HERO
       =========================================== */
    
    .get-started-hero {
        padding: 6rem 0 4rem;
    }
    
    /* ===========================================
       GET STARTED TITLE SMALL MOBILE - SMALL MOBILE GET STARTED TITLE
       =========================================== */
    
    .get-started-title {
        font-size: 2rem;
    }
    
    /* ===========================================
       GET STARTED SUBTITLE SMALL MOBILE - SMALL MOBILE GET STARTED SUBTITLE
       =========================================== */
    
    .get-started-subtitle {
        font-size: 1.1rem;
    }
    
    /* ===========================================
       CONSULTATION FORM SMALL MOBILE - SMALL MOBILE CONSULTATION FORM
       =========================================== */
    
    .consultation-form {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    /* ===========================================
       FORM GROUP INPUTS SMALL MOBILE - SMALL MOBILE FORM GROUP INPUTS
       =========================================== */
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    /* ===========================================
       SUBMIT BUTTON SMALL MOBILE - SMALL MOBILE SUBMIT BUTTON
       =========================================== */
    
    .submit-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* ===========================================
       PROCESS GRID SMALL MOBILE - SMALL MOBILE PROCESS GRID
       =========================================== */
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-content: center;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* ===========================================
       PROCESS STEP SMALL MOBILE - SMALL MOBILE PROCESS STEP
       =========================================== */
    
    .process-step {
        padding: 2rem 1rem;
    }
    
    /* ===========================================
       STEP NUMBER SMALL MOBILE - SMALL MOBILE STEP NUMBER
       =========================================== */
    
    .step-number {
        font-size: 2rem;
    }
    
    /* ===========================================
       CONTACT GRID SMALL MOBILE - SMALL MOBILE CONTACT GRID
       =========================================== */
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        justify-content: center;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* ===========================================
       CONTACT ITEM SMALL MOBILE - SMALL MOBILE CONTACT ITEM
       =========================================== */
    
    .contact-item {
        padding: 1.5rem;
    }
    
    /* ===========================================
       CONTACT ICON SMALL MOBILE - SMALL MOBILE CONTACT ICON
       =========================================== */
    
    .contact-icon {
        font-size: 2.5rem;
    }
}

/* ===========================================
   LANGUAGE SELECTOR HOVER - LANGUAGE SELECTOR HOVER EFFECT
   =========================================== */

/* Ensure language selector and company dropdown work exactly like index.html */
.language-selector:hover .language-toggle {
    min-width: 140px !important;
    padding: 0.5rem 1rem !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* ===========================================
   COMPANY DROPDOWN HOVER - COMPANY DROPDOWN HOVER EFFECT
   =========================================== */

.company-dropdown:hover .company-toggle {
    min-width: 140px !important;
    padding: 0.5rem 1rem !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* ===========================================
   LANGUAGE SELECTOR CURRENT LANG HOVER - LANGUAGE SELECTOR CURRENT LANG HOVER EFFECT
   =========================================== */

.language-selector:hover .language-toggle .current-lang {
    opacity: 1 !important;
    width: auto !important;
}

/* ===========================================
   LANGUAGE SELECTOR DROPDOWN HOVER - LANGUAGE SELECTOR DROPDOWN HOVER EFFECT
   =========================================== */

.language-selector:hover .language-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

/* ===========================================
   COMPANY DROPDOWN MENU HOVER - COMPANY DROPDOWN MENU HOVER EFFECT
   =========================================== */

.company-dropdown:hover .company-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
}

/* ===========================================
   COMPANY DROPDOWN ARROW HOVER - COMPANY DROPDOWN ARROW HOVER EFFECT
   =========================================== */

.company-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg) !important;
}

/* ===========================================
   PURPLE PARTICLES SYSTEM - PURPLE PARTICLES SYSTEM
   =========================================== */

/* Purple Particles System */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* ===========================================
   PURPLE PARTICLES SECTIONS - PURPLE PARTICLES SECTIONS
   =========================================== */

.get-started-hero,
.contact-form-section,
.process-section,
.faq-section {
    position: relative;
}

/* ===========================================
   PURPLE PARTICLES CONTAINERS - PURPLE PARTICLES CONTAINERS
   =========================================== */

.get-started-hero .container,
.contact-form-section .container,
.process-section .container,
.faq-section .container {
    position: relative;
    z-index: 2;
}

/* ===========================================
   PURPLE PARTICLES SECTIONS DUPLICATE - PURPLE PARTICLES SECTIONS DUPLICATE
   =========================================== */

.get-started-hero,
.contact-form-section,
.process-section,
.faq-section {
    position: relative;
}

/* ===========================================
   PURPLE PARTICLES CONTAINERS DUPLICATE - PURPLE PARTICLES CONTAINERS DUPLICATE
   =========================================== */

.get-started-hero .container,
.contact-form-section .container,
.process-section .container,
.faq-section .container {
    position: relative;
    z-index: 2;
}



/* ===========================================
   THEME ICON IMAGES - THEME ICON IMAGES
   =========================================== */

/* Theme Icon Images */
.theme-toggle-switch .theme-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
}

/* ===========================================
   THEME ICON IMAGES HOVER - THEME ICON IMAGES HOVER
   =========================================== */

.theme-toggle-switch .theme-icon-img:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.9));
}
/* ===========================================
   THEME ICON IMAGES GRADIENT - THEME ICON IMAGES GRADIENT
   =========================================== */

.theme-toggle-switch .theme-icon-img {
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 6px rgba(255, 165, 0, 0.5));
}


