/* 
==================================================
SIMPLIFY INTERNATIONAL WEBSITE STYLES
==================================================
A comprehensive stylesheet for the SIMPLIFY business website
Organized in logical sections for easy maintenance
*/

/* 
==================================================
1. RESET & BASE STYLES
==================================================
*/

/* Universal Reset */
* {
    margin: 0;           /* Remove default margins */
    padding: 0;          /* Remove default padding */
    box-sizing: border-box; /* Include padding and border in element's total width/height */
}

/* Body and General Styles */
body {
    font-family: 'Arial', sans-serif; /* Primary font family */
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 30%, #374151 70%, #4a5568 100%); /* Professional dark gradient */
    color: #ffffff;      /* Default text color - white */
    overflow-x: hidden;  /* Prevent horizontal scroll */
    line-height: 1.6;    /* Improve text readability */
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth; /* Enable smooth scrolling for anchor links */
}

/* 
==================================================
2. BACKGROUND PATTERNS & ANIMATIONS
==================================================
*/

/* Premium Dark Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a2332;
    z-index: -2;
}

/* Background Pattern with Group-18.svg */
.background-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: url('Group-18.svg') no-repeat center right;
    background-size: 85%;
    opacity: 0.25;
    z-index: 1;
    filter: brightness(1.2) contrast(1.1) blur(0.2px);
}

/* 
==================================================
3. LAYOUT CONTAINERS
==================================================
*/

/* Main Container */
.container {
    max-width: 1200px;  /* Maximum container width for large screens */
    margin: 0 auto;     /* Center container horizontally */
    padding: 0 20px;    /* Add horizontal padding for smaller screens */
}

/* Override container centering for main sections */
/* These sections need full-width layouts with custom positioning */
.about-section .container,
.services-section .container,
.contact-section .container,
.careers-section .container {
    margin: 0;          /* Remove auto-centering */
    padding: 0;         /* Remove default padding */
    max-width: none;    /* Allow full width */
}

/* 
==================================================
4. NAVIGATION STYLES
==================================================
*/

/* Fixed Navigation Bar */
.navbar {
    position: fixed;    /* Keep navbar at top of screen when scrolling */
    top: 0;            /* Position at very top */
    left: 0;           /* Full width starting from left */
    right: 0;          /* Full width ending at right */
    z-index: 1000;     /* Ensure navbar stays above other content */
    background: rgba(26, 35, 50, 0.95); /* Professional dark background */
    backdrop-filter: blur(25px); /* Enhanced blur effect */
    border-bottom: 1px solid rgba(10, 186, 181, 0.3); /* Professional teal border */
    box-shadow: 0 4px 20px rgba(10, 186, 181, 0.15); /* Professional teal glow shadow */
}

/* Navigation Container */
.nav-container {
    display: flex;               /* Flexbox layout for navbar items */
    justify-content: space-between; /* Space items across full width */
    align-items: center;         /* Vertically center all items */
    padding: 15px 30px;          /* Internal spacing */
    position: relative;          /* Allow positioning of child elements */
}

/* Logo Styles */
.logo-container {
    z-index: 1001;
}

.logo {
    height: 60px;
    width: auto;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    z-index: 1001;
}

/* Navigation Links */
.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #56DFCF;
}

/* Active Link Underline Effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0ABAB5;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: #0ABAB5;
}

/* Navigation Circuit Pattern */
.circuit-pattern {
    display: none;
}

/* 
==================================================
5. HERO SECTION STYLES
==================================================
*/

/* Hero Section Layout */
.hero-section {
    min-height: 100vh;
    padding: 100px 50px 100px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

/* Hero Content Container */
.hero-content {
    max-width: 1000px;
    z-index: 2;
    text-align: left;
    width: 100%;
}

/* Hero Title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(10, 186, 181, 0.4);
    text-align: left;
    max-width: 1400px;
    width: 65%;
}

/* 
==================================================
6. SECTION STYLES
==================================================
*/

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: left;
    padding-left: 100px;
    color: #0ABAB5;
    text-shadow: 0 0 20px rgba(10, 186, 181, 0.4);
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

/* About Content */
.about-content {
    padding-left: 100px;
    padding-right: 100px;
    max-width: 1200px;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #e2e8f0;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.05);
}

/* 
==================================================
7. SERVICES GRID
==================================================
*/

/* Services Grid Layout */
.services-grid {
    display: grid;           /* CSS Grid layout */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive columns */
    gap: 30px;              /* Space between grid items */
    padding: 0 100px;       /* Horizontal padding to match other sections */
    margin-bottom: 50px;    /* Space before next section */
}

/* Individual Service Item */
.service-item {
    background: rgba(10, 186, 181, 0.08);  /* Professional teal background */
    border: 1px solid rgba(10, 186, 181, 0.25); /* Professional teal border */
    border-radius: 20px;                 /* More rounded corners */
    padding: 35px;                       /* Enhanced spacing */
    text-align: center;                  /* Center align content */
    transition: all 0.4s ease;          /* Smoother animations */
    cursor: pointer;                     /* Indicate interactivity */
    backdrop-filter: blur(15px);         /* Enhanced glass effect */
}

/* Service item hover effects */
.service-item:hover {
    background: rgba(86, 223, 207, 0.15);    /* Enhanced cyan background on hover */
    transform: translateY(-12px);        /* More pronounced lift effect */
    box-shadow: 0 25px 50px rgba(10, 186, 181, 0.3); /* Premium teal glowing shadow */
}

/* Service Icon */
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0ABAB5, #56DFCF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.4);
}

.service-icon i {
    font-size: 28px;
    color: #ffffff;
}

.service-item:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 12px 35px rgba(86, 223, 207, 0.6);
}

/* Service Content */
.service-content h3 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    color: #0ABAB5;
    line-height: 1.4;
    font-weight: 600;
}

.service-content p {
    color: #cbd5e0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 
==================================================
8. CONTACT SECTION
==================================================
*/

/* Contact Section Layout */
.contact-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

/* Contact Container */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 100px;
}

/* Contact Left Side */
.contact-left {
    padding-right: 40px;
}

/* Contact Section Title Override */
.contact-section .section-title {
    padding-left: 0; /* Remove padding since contact-container already has padding */
}

/* Contact Right Side */
.contact-right {
    padding-left: 40px;
}

/* Contact Information */
.contact-content {
    margin-bottom: 40px;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 1.35rem;
    color: #0ABAB5;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info p {
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
}

/* 
==================================================
9. FORM STYLES
==================================================
*/

/* Form Container */
.contact-form-container {
    background: rgba(45, 55, 72, 0.4);   /* Subtle dark gray background */
    border: 1px solid rgba(10, 186, 181, 0.1); /* Very subtle teal border */
    border-radius: 24px;                 /* More rounded corners */
    padding: 50px;                       /* Enhanced spacing */
    position: relative;                  /* Allow pseudo-element positioning */
    backdrop-filter: blur(25px);         /* Enhanced blur background for glass effect */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); /* Subtle dark shadow */
}

/* Form Container Background Effect */
/* Creates a subtle glowing border effect using pseudo-element */
.contact-form-container::before {
    content: '';             /* Required for pseudo-element */
    position: absolute;      /* Position relative to parent */
    top: -1px;              /* Extend slightly beyond parent */
    left: -1px;             /* Extend slightly beyond parent */
    right: -1px;            /* Extend slightly beyond parent */
    bottom: -1px;           /* Extend slightly beyond parent */
    background: linear-gradient(45deg, rgba(10, 186, 181, 0.1), rgba(86, 223, 207, 0.1)); /* Very subtle teal gradient */
    border-radius: 24px;    /* Match parent border radius */
    z-index: -1;            /* Place behind parent content */
    opacity: 0.2;           /* Much more subtle */
}

/* Form Layout */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form Rows */
.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* Form Groups */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Form Labels */
.form-label {
    font-weight: 500;
    color: #cbd5e0;
    font-size: 0.95rem;
}

/* Required Field Indicator */
.required-indicator {
    color: #f56565;
}

/* Form Inputs */
.form-input,
.form-select,
.form-textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(160, 174, 192, 0.2);
    border-radius: 12px;
    padding: 15px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #a0aec0;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0ABAB5;
    box-shadow: 0 0 0 3px rgba(10, 186, 181, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

/* Select Wrapper */
.select-wrapper {
    position: relative;
}

.form-select {
    appearance: none;
    background-color: rgba(255, 255, 255, 0.1);
    background-image: none;
    padding-right: 45px;
    cursor: pointer;
}

.form-select option {
    background-color: #2d3748;
    color: #ffffff;
    padding: 10px;
}

/* Custom Select Arrow */
.select-caret-down-wrapper {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.caret-down-icon {
    width: 12px;
    height: 12px;
    fill: #0ABAB5;
}

.form-select:focus + .select-caret-down-wrapper .caret-down-icon {
    fill: #56DFCF;
}

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

/* Column Classes */
.col-50 {
    width: 50%;
}

.col-100 {
    width: 100%;
}

/* Submit Group */
.submit-group {
    margin-top: 20px;
}

/* Button Content */
.button-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.button-text {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, rgba(10, 186, 181, 0.8), rgba(86, 223, 207, 0.8));
    border: none;
    border-radius: 12px;
    padding: 18px 40px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(10, 186, 181, 0.15);
}

.submit-btn:hover {
    background: linear-gradient(135deg, rgba(86, 223, 207, 0.9), rgba(10, 186, 181, 0.9));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.2);
}

/* 
==================================================
10. CAREERS SECTION
==================================================
*/

/* Careers Section */
.careers-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.05);
}

/* Careers Content */
.careers-content {
    text-align: center;
    padding: 0 100px;
}

/* Careers Message */
.careers-message {
    font-size: 1.2rem;
    color: #e2e8f0;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.careers-message.hidden {
    opacity: 0;
    height: 0;
    margin: 0;
    overflow: hidden;
}

/* Browse Jobs Button */
.browse-jobs-btn {
    background: linear-gradient(135deg, #0ABAB5, #56DFCF);
    border: none;
    border-radius: 12px;
    padding: 15px 30px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(10, 186, 181, 0.3);
}

.browse-jobs-btn:hover {
    background: linear-gradient(135deg, #56DFCF, #0ABAB5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.4);
}

/* 
==================================================
11. FOOTER
==================================================
*/

/* Main Footer */
.main-footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 40px 0;
    border-top: 1px solid rgba(10, 186, 181, 0.2);
}

/* Footer Header */
.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 100px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Copyright */
.footer-copyright p {
    color: #a0aec0;
    font-size: 0.9rem;
}

/* Privacy Link */
.privacy-link {
    color: #0ABAB5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #56DFCF;
}

/* 
==================================================
12. NAVIGATION BUTTONS
==================================================
*/

/* Navigation Button Base Styles */
.about-us-btn, 
.services-btn, 
.contact-btn, 
.careers-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0ABAB5, #56DFCF);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(10, 186, 181, 0.3);
    margin-top: 30px;
}

/* Individual Button Positioning */
.about-us-btn && {
    margin-left: 0;
}

.services-btn {
    margin-left: 100px;
}

.contact-btn {
    margin-left: 100px;
}

.careers-btn {
    margin-left: 0;
}

/* Button Hover Effects */
.about-us-btn:hover, 
.services-btn:hover, 
.contact-btn:hover, 
.careers-btn:hover {
    background: linear-gradient(135deg, #56DFCF, #0ABAB5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 186, 181, 0.4);
}

/* Dropdown Arrow */
.dropdown-arrow {
    transition: transform 0.3s ease;
}

/* 
==================================================
13. SCROLLBAR CUSTOMIZATION
==================================================
*/

/* Webkit Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #2d3748;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0ABAB5, #56DFCF);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #56DFCF, #0ABAB5);
}

/* 
==================================================
14. RESPONSIVE DESIGN
==================================================
*/

/* Tablet Styles */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        padding: 0 50px;
    }
    
    .contact-content {
        padding: 0 50px;
    }
    
    .contact-container {
        padding: 0 50px;
    }
    
    .contact-form-container {
        padding: 40px;
    }
    
    .circuit-bg {
        width: 300px;
        height: 300px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    
    .nav-container {
        padding: 8px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 0.9rem;
    }
    
    .hero-section {
        padding: 180px 20px 60px 20px;
        text-align: center;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
    }
    
    .about-section, 
    .services-section, 
    .contact-section, 
    .careers-section {
        padding: 60px 0;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        width: 100%;
        line-height: 1.3;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
        padding-left: 20px;
    }
    
    /* Override contact section title on mobile */
    .contact-section .section-title {
        padding-left: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .service-item {
        padding: 25px;
    }
    
    .circuit-pattern {
        display: none;
    }
    
    .background-pattern {
        opacity: 0.08;
        width: 100%;
        background-size: 60%;
        background-position: center;
    }
    
    .contact-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    
    .contact-left {
        padding: 0;
        order: 2; /* Move careers button section below form on mobile */
    }
    
    .contact-right {
        padding: 0;
        order: 1; /* Move form section above careers button on mobile */
    }
    
    .about-content {
        padding: 0 20px;
    }
    
    .careers-content {
        padding: 0 20px;
    }
    
    .footer-header {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }
    
    .about-us-btn, 
    .services-btn, 
    .contact-btn, 
    .careers-btn {
        margin-left: 0;
        margin: 0 auto;
        padding: 15px 30px;
        font-size: 1rem;
        display: flex;
        justify-content: center;
        width: fit-content;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-section {
        padding: 160px 15px 50px 15px;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 35px;
    }
    
    .about-us-btn, 
    .services-btn, 
    .contact-btn, 
    .careers-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .logo {
        height: 50px;
    }
    
    .service-item {
        padding: 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .footer-header {
        text-align: center;
    }
    
    .background-pattern {
        background-size: 50%;
        opacity: 0.05;
    }
} 