:root {
    --primary-color: #E30613;
    --secondary-color: #333333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --gradient-1: linear-gradient(135deg, #ff6b6b 0%, #E30613 100%);
    --gradient-2: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-3: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
}

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

/* Typography */
h1, h2, h3, h4 {
    margin: 0;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Navigation */
.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.mobile-logo {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'Archivo Narrow', sans-serif;
    text-transform: uppercase;
}

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

/* Phone button in navigation */
.phone-button {
    background: var(--primary);
    color: var(--white) !important;  /* Force white text */
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-family: 'Archivo Narrow', sans-serif;
    text-transform: uppercase;
}

.phone-button:hover {
    background: var(--accent-warm);
    color: var(--white) !important;  /* Force white text on hover */
}

/* Mobile phone button */
.mobile-phone {
    background: var(--primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-align: center;
    margin-top: 1rem;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.mobile-phone:hover {
    background: var(--accent-warm);
    color: var(--white);
}

/* Mobile Menu Button (Hamburger) */
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-button span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--primary);    /* Gold brand color */
    margin: 5px 0;
    transition: 0.3s;
}

/* Hover state for hamburger */
.mobile-menu-button:hover span {
    background: var(--secondary);  /* Black brand color on hover */
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: 4rem 2rem;
    scroll-margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.primary-button, .secondary-button {
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.primary-button {
    background: var(--primary);
    color: var(--white);
    font-family: 'Archivo Narrow', sans-serif;
    text-transform: uppercase;
    border: none;
}

.primary-button:hover {
    background: var(--accent-dark);
}

.secondary-button {
    background: var(--secondary);
    color: var(--white);
    font-family: 'Archivo Narrow', sans-serif;
    text-transform: uppercase;
    border: none;
}

.secondary-button:hover {
    background: var(--accent-warm);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--black-light);
}

.services h2 {
    color: var(--black);
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%; /* Ensure all cards are same height */
    display: flex;
    flex-direction: column;
}

.service-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card h3 {
    color: var(--black);
    font-family: 'Archivo Narrow', sans-serif;
    text-transform: uppercase;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.service-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Allow paragraph to take up remaining space */
    font-family: 'Archivo', sans-serif;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* Remove any nested boxes */
.service-card .service-card,
.service-card-content .service-card-content {
    padding: 0;
    box-shadow: none;
    background: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services {
        padding: 3rem 0;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }
}

/* Animation for cards */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

/* --- CONTACT SECTION - COMPLETE REMOVAL AND REPLACEMENT --- */
/* First, let's remove ALL existing contact styles */

/******************************************
 * CONTACT SECTION - NEW IMPLEMENTATION
 ******************************************/
.contact-section {
    padding: 5rem 0 !important;
    background: var(--light-gray) !important;
}

.contact-section h2 {
    color: var(--secondary-color);
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
}

.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary);
}

/* Force equal columns with fixed height */
.contact-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; /* Equal width columns */
    gap: 3rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    height: 450px !important; /* Fixed height for consistency */
    padding: 0 2rem !important;
}

/* Style for both columns - ensuring exact same dimensions */
.contact-info, 
.map-container {
    width: 100% !important;
    height: 100% !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
}

/* Style the info card with better typography matching website style */
.info-card {
    width: 100% !important;
    height: 100% !important;
    background: white !important;
    padding: 2.5rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    border-radius: 12px !important;
}

/* Style the title to match other section titles */
.info-card h3 {
    margin-top: 0 !important;
    margin-bottom: 2rem !important;
    color: var(--secondary) !important; /* Using secondary color from variables.css */
    text-align: center !important;
    font-size: 1.8rem !important;
    font-weight: 600 !important;
    position: relative !important;
}

/* Add the gold underline like other sections */
.info-card h3::after {
    content: '' !important;
    position: absolute !important;
    bottom: -0.75rem !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 40px !important;
    height: 3px !important;
    background: var(--primary) !important; /* Using primary gold color from variables.css */
}

/* Space out the info groups evenly */
.info-groups {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 1.8rem !important;
}

.info-group {
    margin-bottom: 0 !important; /* Override any other margins */
    text-align: center !important;
}

.info-group h4 {
    color: var(--secondary) !important; /* Using secondary color from variables.css */
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.info-group p {
    margin: 0.25rem 0 !important;
    color: #555 !important;
    font-family: 'Inter', sans-serif !important;
}

.info-group a {
    color: var(--primary) !important; /* Using primary gold color from variables.css */
    text-decoration: none !important;
    transition: color 0.3s ease !important;
    font-weight: 500 !important;
}

.info-group a:hover {
    color: var(--accent-warm) !important; /* Using accent warm color from variables.css */
}

/* Make the map iframe fill its container completely */
.map-container iframe {
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block !important;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
        height: auto !important;
        gap: 2rem !important;
    }
    
    .contact-info, .map-container {
        height: 400px !important;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 0 !important;
    }
    
    .contact-grid {
        padding: 0 1rem !important;
    }
    
    .contact-info, .map-container {
        height: 350px !important;
    }
    
    .info-card {
        padding: 1.5rem !important;
    }
}

/* Footer */
.footer {
    background: var(--secondary);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-column h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    text-align: center;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -0.5rem;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

.footer-links, .footer-contact, .footer-hours {
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Archivo', sans-serif;
    text-align: center;
}

.footer-links li, .footer-contact li, .footer-hours li {
    margin-bottom: 0.8rem;
}

.footer-links a, .footer-contact a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--primary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-icon {
    flex-shrink: 0;
    stroke: var(--primary);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    color: #666;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-social {
    margin-top: 1rem;
}

.footer-certifications {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* About Section */
.about {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.about-features li {
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Contact Info Card */
.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    margin-bottom: 1.5rem;
}

.info-card p {
    margin-bottom: 1.5rem;
}

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

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

/* Add these new styles and modifications */

/* Logo adjustments */
.logo img, .footer-logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* Trust indicators section */
.trust-indicators {
    background: var(--white);
    padding: 4rem 0;
    margin: 2rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.trust-item img {
    width: 60px;
    height: auto;
    margin-bottom: 1rem;
}

.trust-item h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* Social media icons in footer */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-icons a:hover {
    background: var(--primary);
}

.social-icons img {
    width: 24px;
    height: 24px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .logo img {
        height: 32px;
    }
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.contact-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: pulse 2s infinite;
    background: var(--primary);
    opacity: 0.5;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Modern Gradient Backgrounds */
:root {
    --gradient-1: linear-gradient(135deg, #ff6b6b 0%, #E30613 100%);
    --gradient-2: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-3: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* Add scroll progress indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(165, 140, 100, 0.1);  /* Light gold background using --primary (#A58C64) with opacity */
    z-index: 1001;
}

.scroll-progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 0.1s ease;
}

/* Modern Statistics Counter */
.stats-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

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

/* Image Gallery */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    padding: 2rem 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card-content {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card-content:hover {
    transform: translateY(-5px);
}

/* Updated Team Section Styles */
.team-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.team-grid.second-row {
    margin-top: 2rem;
}

.team-card {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.team-avatar {
    width: 120px;
    height: auto;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.team-logo {
    border: none;
    border-radius: 0;
    padding: 0;
    max-width: 100%;
    height: auto;
}

.team-info {
    padding: 0 2rem 2rem;
    text-align: center;
}

.team-info h3 {
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.team-title {
    margin-bottom: 1rem;
}

.team-title p {
    color: var(--secondary);
    margin: 0.2rem 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-contact {
    margin-top: 1rem;
}

.team-contact a {
    color: var(--primary);
    text-decoration: none;
    display: block;
    margin: 0.2rem 0;
    transition: color 0.3s ease;
}

.team-contact a:hover {
    color: var(--accent-warm);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Update/add to your styles.css */
.contact-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Form Styles */
.contact-form-container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Archivo', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
    opacity: 1;
    font-family: 'Archivo', sans-serif;
}

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

/* Remove the label transform/animation styles */
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    display: none;
}

/* Contact Form Submit Button */
.submit-button,
button[type="submit"] {
    background: var(--primary);    /* Gold brand color */
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Archivo Narrow', sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.submit-button:hover,
button[type="submit"]:hover {
    background: var(--secondary);  /* Black brand color on hover */
    color: var(--white);
}

/* Form input focus states */
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);  /* Gold brand color for focus states */
    outline: none;
}

/* Contact Info Styles */
.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.info-card h3 {
    margin-bottom: 1.5rem;
}

.info-group {
    margin-bottom: 1.5rem;
}

.info-group h4 {
    color: #666;
    margin-bottom: 0.5rem;
}

.info-group p {
    margin: 0.25rem 0;
    font-family: 'Archivo', sans-serif;
}

.info-group a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-group a:hover {
    color: var(--accent-warm);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-container {
        padding: 2rem;
    }
}

.trust-badges {
    padding: 5rem 0;
    background: var(--white);
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.badge-item img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.badge-item h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.badge-item p {
    color: #666;
    font-size: 0.9rem;
    font-family: 'Archivo', sans-serif;
}

.footer-social {
    margin-top: 2rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
}

.social-links img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Intro Section */
.intro {
    padding: 5rem 0;
    background: var(--white);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    position: relative;
}

.intro-content h2::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.intro-content p {
    color: var(--text-color);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Mobile styles */
@media (max-width: 768px) {
    .intro {
        padding: 3rem 1rem;
    }

    .intro-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .intro-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        padding: 0 1rem;
    }
}

/* Additional Services Section */
.additional-services {
    padding: 5rem 0;
    background: white;
}

.additional-services h2 {
    color: var(--black);
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--black-light);
    border-radius: 8px;
}

.checkmark {
    color: var(--primary);
    font-size: 1.2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.service-text {
    font-size: 1.1rem;
    line-height: 1.6;
    font-family: 'Archivo', sans-serif;
}

.service-text strong {
    color: var(--secondary);
}

/* Network Section */
.network {
    padding: 5rem 0;
    background: var(--black-light);
}

.network .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.network h2 {
    color: var(--black);
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
}

.network p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    font-family: 'Archivo', sans-serif;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .additional-services,
    .network {
        padding: 3rem 1rem;
    }

    .additional-services h2,
    .network h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .service-item {
        padding: 0.8rem;
    }

    .service-text {
        font-size: 1rem;
    }

    .network p {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}

/* Update social media icons in footer */
.footer-social svg {
    stroke: var(--primary);
}

/* Update any remaining accent elements */
.accent-line {
    background: var(--primary);
}

/* Update mobile menu toggle */
.menu-toggle span {
    background: var(--primary);
}

/* Update any highlight or selection colors */
::selection {
    background: var(--gold-light);
    color: var(--black);
}

/* Phone number box at top */
.phone-box {
    background: var(--primary);  /* Changed from red to gold */
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.phone-box:hover {
    background: var(--secondary);
}

/* Remove red circles from images */
.team-logo {
    border: none;  /* Remove any border */
    border-radius: 0;  /* Remove border radius */
    padding: 0;  /* Remove padding */
}

.team-logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Update any other image containers that might have red borders */
.partner-logo,
.client-logo,
.certificate-logo {
    border: none;
    border-radius: 0;
    padding: 0;
}

/* If there are any other red circles or borders, they'll be removed */
.logo-container img,
.image-container img {
    border: none;
    border-radius: 0;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--secondary);  /* Dark background */
    z-index: 1001;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Menu Links */
.mobile-nav {
    padding: 2rem;
}

.mobile-nav a {
    display: block;
    padding: 1rem;
    color: var(--primary);  /* Gold color */
    text-decoration: none;
    font-family: 'Archivo Narrow', sans-serif;
    text-transform: uppercase;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--white);
}

/* Close Button */
.close-menu {
    color: var(--primary);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 1rem;
}

.close-menu:hover {
    color: var(--white);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--primary);
}

/* Scroll Offset for Sections */
section {
    scroll-margin-top: 80px; /* Adjust this value based on your nav height */
}

.footer-credits {
    text-align: center;
}

.footer-credits p {
    margin: 0.5rem 0;
    color: #666;
}

.footer-credits a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

