/* Granalytich Solutions - Component Styles */

/* Enhanced hover effects */
.feature-item {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mission-box, .values-box {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mission-box:hover, .values-box:hover {
    transform: translateY(-5px);
    border-color: #3a6ba8;
    box-shadow: 0 12px 30px rgba(74, 123, 184, 0.2);
}

.project-card {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Buttons */
.hero-btn {
    background-color: var(--accent-gold);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #b8860b;
    transform: translateY(-2px);
}

.submit-btn {
    background-color: var(--primary-navy);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Cards */
.project-card {
    position: relative;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-blue) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 40px 30px;
    border-radius: 12px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Project card overlay for text readability */
.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    transition: all 0.4s ease;
    z-index: 1;
}

/* Text content overlay */
.project-card > div {
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.project-card .project-link {
    position: relative;
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 58, 95, 0.3);
    text-decoration: none;
    color: white;
}

.project-card:hover::before {
    background: linear-gradient(
        135deg, 
        rgba(46, 90, 138, 0.85) 0%, 
        rgba(58, 123, 200, 0.9) 100%
    );
}

.project-card:hover > div,
.project-card:hover .project-link {
    transform: translateY(0);
    opacity: 1;
}

/* Project background images */
.project-gradient-aws { 
    background-image: url('../images/projects/project-aws-thumbnail.png');
}
.project-gradient-sdws { 
    background-image: url('../images/projects/project-sdws-thumbnail.png');
}
.project-gradient-nuclear { 
    background-image: url('../images/projects/project-nuclear-thumbnail.png');
}
.project-gradient-datacenter { 
    background-image: url('../images/projects/project-datacenter-thumbnail.png');
}
.project-gradient-transport { 
    background-image: url('../images/projects/project-transport-thumbnail.png');
}
.project-gradient-utilities { 
    background-image: url('../images/projects/project-utilities-thumbnail.png');
}

.project-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-description {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 20px;
}

.project-link {
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border: 2px solid var(--primary-navy);
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(74, 123, 184, 0.1);
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #3a6ba8;
    box-shadow: 0 12px 30px rgba(74, 123, 184, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border: 3px solid var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 24px;
    color: var(--accent-gold);
    background-color: white;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background-color: var(--accent-gold);
    color: white;
    transform: translateY(-3px);
}

.feature-title {
    font-size: var(--font-size-h4);
    font-weight: var(--font-weight-bold);
    line-height: var(--line-height-heading);
    color: var(--primary-navy);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-subheading);
}

.feature-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Form Styles */
.contact-form {
    background: white;
    border: 2px solid var(--primary-navy);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(74, 123, 184, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-navy);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
}

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

/* Enhanced Select Dropdown Styling */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
    padding-right: 50px;
    cursor: pointer;
}

.form-group select:focus {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
}

.form-group select:hover {
    border-color: #ccc;
}

.form-group select option {
    padding: 10px;
    font-size: 14px;
}

/* Custom Checkbox Styles */
.form-group-checkbox {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: 400;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

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

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    opacity: 1;
}

.checkbox-label:hover .checkbox-custom {
    border-color: var(--accent-gold);
}

.checkbox-text {
    flex: 1;
}

.checkbox-text a {
    color: var(--accent-gold);
    text-decoration: underline;
    font-weight: 600;
}

.checkbox-text a:hover {
    color: var(--primary-navy);
}

/* Form Message Styles */
.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
}

.form-message-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Privacy Policy Page Styles */
.privacy-policy-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.privacy-policy-section .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-content {
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.privacy-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 10px;
    text-align: center;
}

.privacy-content .last-updated {
    text-align: center;
    color: var(--accent-gray);
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eee;
}

.privacy-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-gold);
    padding-left: 20px;
}

.privacy-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-blue);
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.privacy-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

.privacy-content li {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 8px;
}

.privacy-content a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.privacy-content a:hover {
    color: var(--primary-navy);
    text-decoration: underline;
}

.contact-info-privacy {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-gold);
    margin: 20px 0;
}

.contact-info-privacy p {
    margin-bottom: 10px;
}

.policy-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #eee;
    text-align: center;
}

.policy-footer p {
    font-style: italic;
    color: var(--accent-gray);
    font-size: 14px;
}

/* Footer Privacy Link Styling */
.footer-content a {
    color: #c0c0c0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: white;
    text-decoration: underline;
}

/* Video Loading Optimization Styles */
.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: opacity 0.5s ease;
}

.video-poster.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: white;
    font-size: 14px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    display: none;
}

.video-loading-indicator.active {
    display: block;
}

/* Play button for manual video start */
.video-play-button {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255,255,255,0.2);
    border: 2px solid white;
    color: white;
    padding: 12px 24px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
    font-size: 14px;
    backdrop-filter: blur(10px);
    display: none;
}

.video-play-button:hover {
    background: rgba(255,255,255,0.3);
}

.video-play-button.visible {
    display: block;
}

/* ========================================
   PROJECT PAGE HEADER STYLES
   ======================================== */

/* Project Header (Hero Section) */
.project-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-blue) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 120px 0;
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Background overlay for text readability */
.project-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Ensure content is above overlay */
.project-header > * {
    position: relative;
    z-index: 2;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.header-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.header-content p {
    font-size: 1.5rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 40px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.project-stats {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.stats-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

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

.stat-label {
    font-weight: 600;
    color: rgba(255,255,255,0.9);
}

.stat-value {
    font-weight: 700;
    color: white;
}

.back-link {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 12px 25px;
    border: 2px solid white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-2px);
}

/* Project Header Background Images */
.project-header-datacenter {
    /* background-image: url('../images/projects/project-datacenter-thumbnail.png'); */
    /* Replaced with video background */
}

.project-header-nuclear {
    background-image: url('../images/projects/project-nuclear-thumbnail.png');
}

.project-header-utilities {
    background-image: url('../images/projects/project-utilities-thumbnail.png');
}

.project-header-transport {
    background-image: url('../images/projects/project-transport-thumbnail.png');
}

.project-header-aws {
    background-image: url('../images/projects/project-aws-thumbnail.png');
}

.project-header-sdws {
    /* background-image: url('../images/projects/project-sdws-thumbnail.png'); */
    /* Replaced with video background */
}

/* Project Background Videos */
.project-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.project-bg-video-zoomed {
    transform: scale(1.2);
    transform-origin: center center;
}

/* Main Content Styles */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 30px 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 30px;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--accent-gray);
    margin-bottom: 25px;
}

.highlights-section {
    background: var(--bg-light-gray);
    border-radius: 12px;
    padding: 40px;
    height: fit-content;
}

.highlights-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 25px;
}

.highlight-item {
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
}

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

.highlight-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.highlight-item p {
    font-size: 0.95rem;
    color: var(--accent-gray);
    line-height: 1.5;
    margin: 0;
}

/* Featured Projects Section */
.featured-projects {
    padding: 60px 0 160px 0;
    background-color: white;
    position: relative;
}

/* Back to Home Page link styling for project pages */
.project-back-home {
    text-align: center;
    margin-top: 40px;
}

.project-back-home .back-link {
    color: #666;
    border: 2px solid #666;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.project-back-home .back-link:hover {
    color: var(--primary-navy);
    border-color: var(--primary-navy);
    background: rgba(74, 123, 184, 0.05);
    transform: translateY(-2px);
}

.featured-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Project Gallery Section */
.project-gallery {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


.section-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-light);
    line-height: var(--line-height-heading);
    letter-spacing: var(--letter-spacing-heading);
    color: var(--light-gray);
    text-align: center;
    margin-bottom: 40px;
}

.section-title .highlight {
    color: var(--primary-navy);
    font-weight: 700;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

/* ========================================
   GALLERY LIGHTBOX STYLES
   ======================================== */

/* Make gallery items clickable */
.gallery-item {
    cursor: pointer;
}

.gallery-item:hover {
    opacity: 0.9;
}

/* Lightbox overlay */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

/* Lightbox container */
.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Lightbox content */
.lightbox-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Lightbox image */
#lightbox-image {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Close button */
.lightbox-close {
    position: absolute;
    top: -50px;
    right: -20px;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    font-weight: 300;
    cursor: pointer;
    z-index: 10001;
    padding: 10px;
    line-height: 1;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

/* Navigation buttons */
.lightbox-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 30px;
    font-weight: 300;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: auto;
    user-select: none;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.8);
    color: var(--accent-gold);
    transform: scale(1.1);
}

.lightbox-prev {
    margin-left: -80px;
}

.lightbox-next {
    margin-right: -80px;
}

/* Hide navigation for single images */
.lightbox-navigation.single-image .lightbox-prev,
.lightbox-navigation.single-image .lightbox-next {
    display: none;
}

/* Counter */
.lightbox-counter {
    margin-top: 20px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #lightbox-image {
        max-width: 95vw;
        max-height: 70vh;
    }
    
    .lightbox-close {
        top: -40px;
        right: -10px;
        font-size: 30px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 24px;
        padding: 12px 16px;
    }
    
    .lightbox-prev {
        margin-left: -60px;
    }
    
    .lightbox-next {
        margin-right: -60px;
    }
    
    .lightbox-counter {
        font-size: 14px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .lightbox-prev {
        margin-left: -40px;
    }
    
    .lightbox-next {
        margin-right: -40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 20px;
        padding: 10px 12px;
    }
}

/* ========================================
   PROJECT PAGE RESPONSIVE STYLES
   ======================================== */

@media (max-width: 768px) {
    .project-header {
        background-attachment: scroll;
        min-height: 60vh;
        padding: 80px 0;
    }
    
    .header-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .header-content p {
        font-size: 1.2rem;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card {
        min-height: 240px;
        padding: 30px 25px;
    }

    .wide-cards {
        grid-template-columns: 1fr;
    }
}

/* Option 2: Integrated About + Features Styles */
.integrated-header {
    text-align: center;
    margin-bottom: 60px;
}

.integrated-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.integrated-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto 40px;
}

.feature-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    border: 2px solid var(--primary-navy);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 123, 184, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(74, 123, 184, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    position: relative;
}

/* CSS-based icons */
.icon-controls::before {
    content: '';
    width: 28px;
    height: 28px;
    background: white;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Crect x='3' y='3' width='18' height='18' rx='2' ry='2'/%3E%3Cpath d='M9 9h6v6H9z'/%3E%3Cpath d='M9 1v6'/%3E%3Cpath d='M15 1v6'/%3E%3Cpath d='M9 17v6'/%3E%3Cpath d='M15 17v6'/%3E%3Cpath d='M1 9h6'/%3E%3Cpath d='M1 15h6'/%3E%3Cpath d='M17 9h6'/%3E%3Cpath d='M17 15h6'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.icon-federal::before {
    content: '';
    width: 28px;
    height: 28px;
    background: white;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9,22 9,12 15,12 15,22'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.icon-results::before {
    content: '';
    width: 28px;
    height: 28px;
    background: white;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22,4 12,14.01 9,11.01'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.wide-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.wide-card {
    background: var(--bg-light-gray);
    padding: 40px;
    border-radius: 12px;
    border-top: 4px solid var(--primary-navy);
}

.wide-card:has(.values-list) {
    text-align: center;
}

.credentials-banner {
    background: var(--bg-light-gray);
    padding: 30px;
    border-radius: 12px;
    border-left: 6px solid var(--accent-gold);
    text-align: center;
}

.credentials-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 15px;
}

.credentials-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}