/* Combined base styles and blue theme overrides */

/* Color variables */
:root {
  --primary-blue: #104a85; /* New primary blue */
  --primary-blue-hover: #0a3057; /* Darker blue */
  --primary-blue-light: #5a9bd5; /* Light blue for dark mode */
  --primary-blue-light-hover: #81b3e0; /* Lighter blue */
  --primary-blue-bg: #cfe1f3; /* Extremely light blue */
  --primary-blue-dark-bg: #0a3057; /* Darkest blue */
  --nav-menu-text: #2a4c69; /* Desktop navigation menu text color */
  --nav-menu-text-dark: #5a9bd5; /* Desktop navigation menu text color for dark mode */
}

/* ===== BASE STYLES (from styles.css) ===== */
html {
  font-size: 18px;
  -webkit-text-size-adjust: 100%; 
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    font-size: 16px;
}

/*Font Definitions*/
/* Lato Regular */
@font-face {
  font-family: 'Lato';
  src: url('/fonts/Lato-Regular.woff2') format('woff2'),
       url('/fonts/Lato-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* Lato Bold */
@font-face {
  font-family: 'Lato';
  src: url('/fonts/Lato-Bold.woff2') format('woff2'),
       url('/fonts/Lato-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Lato Font for Tailwind */
.font-lato {
  font-family: 'Lato', sans-serif;
}

  
 
/* Basic styling */
body {
  font-size: 1rem;
   font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  background-color: #F9F9F9;
  color: #333;
  font-size-adjust: 0.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 1rem; /* 16px */
  font-family: 'Lato', Arial, Sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #F9F9F9;
  color: #333;
}

@media (max-width: 775px) {
    body {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    html {
        overflow-x: hidden;
    }
}

/*TYPOGRAPHY*/

p {
  margin-bottom: 1.5em; /* Add spacing below paragraphs for better readability */
  text-align: left; /* Justify text for a cleaner appearance */
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Lato', sans-serif;
}

h1 {
  text-align: center;
  font-weight: bold;
  font-size: 27px;
  color: black;
  margin-bottom: 10px;
  border-bottom: 1px solid #d6cec7;
  padding: 20px 0 30px 0; 
}

h2 {
  font-size: 21px;
  font-weight: bold;
  color: #1a1a1a;
  line-height: 1.2;
  margin-top: 20px;
  margin-bottom: 15px;
}

h3 {
  font-size: 19px;
  font-weight: 600;
  color: #1a1a1a;
}

h4, h5, h6 {
  font-weight: 600;
}

li {
    margin-bottom: 10px;
}

@media (max-width: 1420px) {

h1 {
  font-size: 24px;
   	margin-top: 25px;
  margin-bottom: 10px;
    border-bottom: 1px solid #d6cec7;
}

}

@media (max-width: 1200px) {

h1 {
  font-size: 23px;
  line-height: 1; 
    margin-top: 20px;
  margin-bottom: 15px;
}
}

@media (max-width: 795px) {

    h1 {
      font-size: 23px;
      line-height: 1; 
        margin-top: 1px;
      margin-bottom: 15px;
    }
    }

/*typography continued - mobile typography */
@media (max-width: 775px) {
     body {
    font-size: 18px;  
  }
   h1 {
  font-size: 22px;
  margin-bottom: 5px;
    padding: 5px 7px 25px 7px;
  }
  
  p {
    margin-bottom: 1.3em; /* Less space between paragraphs on mobile */
  }
  
 /*MENU CHANGES IN MOBILE */
  #menu {
    display: none;
  }
  .call-to-action-box {
    display: none; 
  }
  .call-to-action-box-mobile {
    display: block;  
  }


}

/* List styles */
/* Add styles for all lists */
ul, ol {
  margin: 10px;
  padding: 10px;
}

/* Add styles for list items */
li {
}

/* adjust the margin in h3 headings in lists */
ul h3, ol h3 {
  margin-top: 0; 
  margin-bottom: 0; 
}

/*HEADER LAYOUT AND STYLING*/

.header-content-wrapper {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 400;
}
.header-container {
 display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1400px; /* Example max-width */
  margin: 0 auto; /* Center the container */
}



.header-column-1 {
  flex: 0 1 20%;
  padding: .7em 0 1.2em 1em;
  order: 1;
    margin-right: auto;
}

.header-column-2 {
flex: 0 1 calc(30% - 3.75vw); /* More aggressive shrinking */
  max-width: 22.5em; /* Smaller max-width to allow further reduction */
  padding: 1em;
  margin-right: 1.25vw;
  margin-left: 1.25vw;
  order: 2;

}

.header-column-3 {
  flex: 0 1 20%;
  padding: 1em; /* Increase padding for better spacing */
  order: 3;
   max-width: 45em;
  margin-left: auto;
}


@media (max-width: 775px) {
    
    .header-content-wrapper {
        position: static; /* Make position static for mobile */
        top: auto;
        left: auto;
        width: auto; 
    }
    .header-container {
 background-color:#F9F9F9;
 padding-top: 5px;
}

.dark .header-container {
  background-color: #1e293b;
}

.header-column-1 {
  order: 2;

  margin-left: auto;
  margin-right: auto;

}

.header-column-2 {
  display:none;

}

.header-column-3 {
  display:none;
}
}

/*END HEADER LAYOUT*/

/*CONTACT INFO ON TOP OF PAGE*/


.contact-info {
    text-align: left; 
    text-shadow: 0 1px 1px #d0cfe6;
    white-space: nowrap; /* Prevents the name from breaking into multiple lines */
     transform: translateY(8px); /* Adjust the value as needed */
}

.contact-info .call-today,
.contact-info .phone {
    display: block; /* Display elements as block-level */
}

.contact-info .call-today {
    color: black;
    font-family: Arial, sans-serif !important;
    font-size: 1.2em;
    font-weight: bold; /* Emphasize the text */
}

.dark .contact-info .call-today {
    color: white;
}

.contact-info .phone {
    color: var(--primary-blue);
    font-family: Arial, sans-serif !important;
    /* Subtle embossed text effect */
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.5), /* Light upper shadow */
                 0px -1px 1px rgba(0, 0, 0, 0.2); /* Dark lower shadow */
    font-size: 1.7em;
    font-weight: bold; /* Emphasize the text */
    margin-top: -10px; /* Reduce the top margin to bring it closer to the "Call Today" text */
}

.dark .contact-info .phone {
    color: var(--primary-blue-light);
}

@media screen and (max-width: 1200px) {
.contact-info {
     transform: translateY(2px); /* Adjust the value as needed */
}
}

@media screen and (max-width: 775px) {
    .contact-info {
        display: none; /* Hides the contact info on mobile */
    }
}
/*END CONTACT INFO ON TOP OF PAGE*/

/*CONTACT INFO ON MOBILE "MOBILE CALL TO ACTION"*/
/* Base styles for the mobile call to action */
.mobile-call-to-action {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed position to stay at the top */
  top: 0; /* Align to the top of the screen */
  left: 0; /* Align to the left of the screen */
  width: 100%; /* Full width */
  background-color: #F9F9F9; 
  color: black; /* White text color */
  text-align: center; /* Center the text */
  padding: 10px 0; /* Padding top and bottom */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Box shadow for a subtle depth */
  z-index: 1400; /* High z-index to ensure visibility over other elements */
  transition: background-color 0.3s ease;
}

.dark .mobile-call-to-action {
  background-color: #1e293b;
  color: white;
}

/* Styling the content inside the call to action */
.cta-content {
  display: flex; /* Use flexbox for alignment */
  flex-direction: inline; 
  justify-content: space-between; 
  align-items: center; /* Center elements horizontally */
  padding: 0 10px 0 10px;
}

.cta-text {
    font-family: Arial, sans-serif !important;
    color: var(--primary-blue);
    font-size: 1em;
    font-weight: bold;
    text-align: center; /* Center align text */
    text-shadow: 0 1px 1px #d0cfe6;
    white-space: nowrap; /* Prevents the name from breaking into multiple lines */
    transition: color 0.3s ease;
}

.dark .cta-text {
    color: var(--primary-blue-light);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

/* Styling the phone number and button */
.cta-phone-number {
  display: inline; 
  color: var(--primary-blue); /* White text color for visibility */
  text-decoration: none; /* No underline for links */
  margin: 5px 0; /* Margin for spacing */
  font-weight: bold; /* Bold font for emphasis */
  padding-right: 0; /* Add padding to separate from the button */
  transition: color 0.3s ease;
}

.dark .cta-phone-number {
  color: var(--primary-blue-light);
}

.cta-button {
  display: block; /* Block display to take full width */
  color: white; /* White text color for visibility */
  font-size: .7em;
  text-shadow: 0 1px 1px black;
  text-decoration: none; /* No underline for links */
  margin: 5px 0; /* Margin for spacing */
  font-weight: bold; /* Bold font for emphasis */
  margin-top: 10px;
  background-color: var(--primary-blue); 
  padding: 10px 20px; /* Padding for the button */
  border-radius: 5px; /* Rounded corners for the button */
  border: none; /* No border for the button */
  font-size: 16px; /* Font size for the button */
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dark .cta-button {
  background-color: var(--primary-blue-light);
  color: white;
}

.cta-button:hover {
  background-color: var(--primary-blue-hover);
}

.dark .cta-button:hover {
  background-color: var(--primary-blue-light-hover);
}

/* Media query for mobile devices */
@media (max-width: 775px) {
  .mobile-call-to-action {
    display: block; /* Show the call to action on mobile devices */
    padding: 10px 0;
    justify-content: center; /* Center elements vertically */
    align-items: center; /* Center elements horizontally */
  }
}
/*END CONTACT INFO ON MOBILE "MOBILE CALL TO ACTION"*/

/*HEADER*/
#header {
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dark #header {
  color: white;
  background-color: var(--primary-blue-light);
}


/*Firm Name*/
.firm-name {
    font-family: "Times New Roman", serif;
    color: var(--primary-blue);
    text-align: center; /* Center align text */
    text-shadow: 0 1px 1px #d0cfe6;
    white-space: nowrap; /* Prevents the name from breaking into multiple lines */
    transform: translateY(10px); /* Adjust the value as needed */
    transition: color 0.3s ease;
}

.dark .firm-name {
    color: var(--primary-blue-light);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
}

.firm-name .law-offices-of,
.firm-name .name,
.firm-name .years {
    margin: 0; /* Removes default margin to bring lines closer */
    padding: 0; /* Adjust padding as needed */
    transition: color 0.3s ease;
}

.dark .firm-name .law-offices-of,
.dark .firm-name .years {
    color: var(--primary-blue-light); /* Blue light color for dark mode */
}

.dark .firm-name .name {
    color: var(--primary-blue-light);
}

.firm-name .law-offices-of {
    font-family: "Times New Roman", serif !important;
    font-size: 1.1em;
    margin-bottom: -5px; /* Pulls the second line closer */
    color: var(--primary-blue); /* Blue color for "LAW OFFICES OF" */
}

.firm-name .name {
    font-family: "Times New Roman", serif;
    font-size: 1.5em;
    font-weight: bold; /* Makes the name bold */
    line-height: 1; /* Adds more space before the third line */
    margin-bottom: 5px; /* Adjust spacing between lines as needed */
    color: var(--primary-blue); /* Blue color for the name */
}

.firm-name .years {
    font-family: "Times New Roman", serif;
    font-style: italic; /* Italicize the 'years of service' line */
    font-size: 1.1em;
    color: var(--primary-blue); /* Blue color for "15 Years of Service" */
}

.separator-line {
    width: 210px; /* Adjust width as needed */
    height: 1px; /* Adjust height as needed */
    background-color: var(--primary-blue); /* Color of the separator line */
    margin: 0 auto; /* Center the separator line */
    margin-bottom: 0px; /* Adjust spacing between lines as needed */
    transition: background-color 0.3s ease;
}

.dark .separator-line {
    background-color: var(--primary-blue-light);
}

.firm-name-link {
  text-decoration: none; /* Removes underline */
  color: inherit; /* Inherits text color from parent elements */
  display: block; /* Ensures the link is block-level, wrapping the entire content */
  transition: color 0.3s ease;
}

@media screen and (max-width: 775px) {
    .firm-name {
        color: white; /* Change font color to white */
        background-color: var(--primary-blue);
        font-size: 16px; /* Adjust font size for mobile */
        text-shadow: 0 1px 1px black;
        padding-top: 2em;
        transition: background-color 0.3s ease;
    }

    .dark .firm-name {
        background-color: var(--primary-blue-light);
    }

    .firm-name .law-offices-of,
    .firm-name .name,
    .firm-name .years {
        margin: 0; /* Removes default margin to bring lines closer */
        padding: 0; /* Adjust padding as needed */
    }

    .firm-name .law-offices-of {
       display: none;
    }

    .firm-name .name {
     display: none;
    }

    .firm-name .years {
 display: none;
    }

    .separator-line {
       display: none;
    }
}


/*end firm name*/

/* Media query for mobile devices */
@media (max-width: 775px) {
  #header {
    background-color: var(--primary-blue); /* Blue background for mobile */
    color: white; /* Adjusts the text color within the header, if necessary */
    transition: background-color 0.3s ease;
  }

  .dark #header {
    background-color: var(--primary-blue-light);
  }

  .firm-name, .firm-name a {
    color: white; /* White text for firm name and its link */
  }
}
/*End Header*/

/*NAVIGATION BAR*/
/* navigation styles*/

.navbar-background {
    width: 100%;
    position: relative;
    z-index: 1000;
    height: 45px;
    box-shadow: inset 0 -1px 2px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
    background-color: var(--primary-blue-bg);
}

.dark .navbar-background {
    background-color: var(--primary-blue-light);
}

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

.navbar-content {
    position: relative;
    height: 100%;
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    align-items: center;
}

/* Action buttons styling */
.nav-button {
    display: inline-block;
    background-color: #104a85; /* New primary blue */
    color: white !important;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
}

.dark .nav-button {
    background-color: #5a9bd5; /* Light blue for dark mode */
}

.nav-button:hover {
    background-color: #0a3057; /* Darker blue */
}

.dark .nav-button:hover {
    background-color: #81b3e0; /* Lighter blue */
}

/* Right-aligned container */
.nav-actions {
    position: absolute;
    right: 20px;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 20;
}

/* Burger menu icon */
.burger {
    display: none;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    width: 18px;
    height: 18px;
}

.burger div {
    width: 18px;
    height: 2px;
    background-color: #104a85; /* New primary blue */
    margin: 4px 0;
    transition: all 0.3s ease;
    position: relative;
}

.dark .burger div {
    background-color: white;
}

/* Toggle animation for burger menu */
.burger.toggle .line1 {
    transform: rotate(45deg);
    position: absolute;
    top: 8px;
}

.burger.toggle .line2 {
    opacity: 0;
}

.burger.toggle .line3 {
    transform: rotate(-45deg);
    position: absolute;
    top: 8px;
}

/* Desktop navigation styles */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    height: 100%;
    align-items: center;
}

.nav-links li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0;
}

.nav-links li a {
    display: flex;
    align-items: center;
    padding: 0 15px;
    height: 100%;
    color: var(--nav-menu-text);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dark .nav-links li a {
    color: var(--nav-menu-text-dark);
}

.nav-links li a:hover {
    background-color: #bfdbfe;
    color: var(--primary-blue-hover);
}

.dark .nav-links li a:hover {
    background-color: #1e4899;
    color: #93c5fd;
}

/* Submenu styles */
.nav-links .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;
    padding: 0;
    margin: 0;
}

.nav-links li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

.nav-links .sub-menu li {
    width: 100%;
    height: auto;
}

.nav-links .sub-menu li a {
    padding: 10px 15px;
    border-right: none;
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
    width: 100%;
    height: auto;
}

.dark .nav-links .sub-menu li a {
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}

/* Mobile responsive styling */
@media (max-width: 800px) {
    .navbar-content {
        display: block;
        padding-top: 5px;
        padding-bottom: 0;
    }
    
    .navbar-background {
        height: 35px;
    }
    
    .burger {
        display: block; /* Show burger on mobile */
        top: 60%; /* Position burger lower in the navbar */
    }
    
    .nav-links {
        position: absolute;
        right: 0;
        top: 35px; /* Updated to match new navbar height */
        background-color: #dbeafe; /* Blue-100 */
        display: none; /* Hide by default */
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        z-index: 999;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }
    
    .dark .nav-links {
        background-color: #1e3a8a; /* Blue-900 darker */
    }
    
    .nav-links.nav-active {
        display: flex !important; /* Force display when active */
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links li a {
        padding: 15px 20px;
        width: 100%;
        display: block;
        text-align: left;
        border-right: none;
        border-bottom: 1px solid rgba(30, 64, 175, 0.1);
    }
    
    .dark .nav-links li a {
        border-bottom: 1px solid rgba(96, 165, 250, 0.1);
    }
    
    .nav-actions {
        position: static;
        display: none;
        transform: none;
        width: 100%;
        height: auto;
    }
    
    .nav-actions.nav-active {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-button {
        display: block;
        background-color: transparent;
        color: inherit !important;
        padding: 12px 15px;
        border-radius: 0;
        width: 100%;
        text-align: left;
    }
    
    .nav-button:hover {
        background-color: rgba(30, 64, 175, 0.1); /* Blue-900 with opacity */
    }
    
    .dark .nav-button:hover {
        background-color: rgba(96, 165, 250, 0.1); /* Blue-400 with opacity */
    }
    
    /* Submenu styles for mobile */
    .nav-links .sub-menu {
        position: static;
        display: none;
        width: 100%;
        background-color: #eff6ff; /* Blue-50 */
        box-shadow: none;
    }
    
    .dark .nav-links .sub-menu {
        background-color: #1e4ed8; /* Blue-700 */
    }
    
    .nav-links .has-submenu.active .sub-menu {
        display: block;
    }
    
    .nav-links .sub-menu li a {
        padding-left: 40px; /* Indent submenu items */
    }
}

/* EXTRA FORMATTING OCT 24, 2024 - BLUE THEME */

/* Contact Section */
.contact-section {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.contact-section h2 {
    color: var(--primary-blue); /* Blue color for headings */
    margin-top: 0;
}

.contact-section ul {
    list-style: none;
    padding-left: 0;
}

.contact-section ul li {
    margin-bottom: 0.5rem;
}

.contact-section a {
    color: var(--primary-blue); /* Blue color for links */
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.testimonial-section {
    background-color: #f9f9f9;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
    box-shadow: inset 0 -1px 2px rgba(0, 0, 0, 0.05);
}

.testimonial {
    background-color: #d6cec7;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: inset 0 -1px 2px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial cite {
    color: var(--primary-blue); /* Blue color for citation */
    font-weight: bold;
    font-style: normal;
    display: block;
}

/* FAQ Section */
.faq-section {
    margin: 2rem 0;
}

.faq-item {
    background-color: #f9f9f9;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: inset 0 -1px 2px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: var(--primary-blue); /* Blue color for FAQ headings */
    margin-top: 0;
    margin-bottom: 1rem;
}

.faq-item p {
    margin: 0;
}

/* Breadcrumbs with blue theme */
#breadcrumbs .breadcrumb-item a {
    color: var(--primary-blue); /* Blue color for breadcrumb links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.dark #breadcrumbs .breadcrumb-item a {
    color: var(--primary-blue-light); /* Blue light color for dark mode */
}

/* Footer Styles - Blue Theme */
#footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 2rem 0;
    margin-top: 3rem;
}

.dark #footer {
    background-color: var(--primary-blue-dark-bg);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

#footer p {
    margin-bottom: 1rem;
}

#footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: #bfdbfe; /* Light blue on hover */
    text-decoration: underline;
}

.dark #footer a:hover {
    color: var(--primary-blue-light-hover);
}

@media (max-width: 775px) {
    .footer-content {
        padding: 0 1rem;
        font-size: 0.8rem;
    }
    
    #footer {
        padding: 1.5rem 0;
    }
}

/* Credentials Bar - Blue Theme */
.credentials-bar {
    background-color: white;
    padding: 1.5rem 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(30, 64, 175, 0.1);
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
}

.dark .credentials-bar {
    background-color: #1e293b;
    border-top: 1px solid rgba(96, 165, 250, 0.1);
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}

.credentials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.credential-icon {
    max-height: 87px;
    width: auto;
    filter: grayscale(20%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.credential-icon:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@media (max-width: 775px) {
    .credentials-bar {
        padding: 1rem 0;
    }
    
    .credentials-container {
        gap: 1rem;
    }
    
    .credential-icon {
        max-height: 60px;
    }
}

/* Media Outlets Bar - Blue Theme */
.media-bar {
    background-color: white;
    padding: 2rem 0;
    margin: 2rem 0;
    border-top: 1px solid rgba(30, 64, 175, 0.1);
    border-bottom: 1px solid rgba(30, 64, 175, 0.1);
    text-align: center;
}

.dark .media-bar {
    background-color: #1e293b;
    border-top: 1px solid rgba(96, 165, 250, 0.1);
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
}

.media-container {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.media-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin: 0;
}

.dark .media-text {
    color: var(--primary-blue-light);
}

.media-icon {
    max-height: 87px;
    width: auto;
    filter: grayscale(30%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.media-icon:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.media-link {
    text-decoration: none;
    display: block;
}

@media (max-width: 775px) {
    .media-bar {
        padding: 1.5rem 0;
    }
    
    .media-container {
        gap: 1.5rem;
    }
    
    .media-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .media-icon {
        max-height: 60px;
    }
}

/* Reviews Section - Blue Theme */
.reviews-widget {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.reviews-header {
    text-align: center;
    margin-bottom: 2rem;
}

.reviews-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.dark .reviews-title {
    color: var(--primary-blue-light);
}

.reviews-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0;
}

.dark .reviews-subtitle {
    color: #aaa;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.reviews-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dark .reviews-card {
    background-color: #2d3748;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.reviews-stars {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: flex;
}

.dark .reviews-stars {
    color: var(--primary-blue-light);
}

.reviews-text {
    flex-grow: 1;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
}

.dark .reviews-text {
    color: #e2e8f0;
}

.reviews-name {
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: #333;
}

.dark .reviews-name {
    color: #e2e8f0;
}

.reviews-area {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

.dark .reviews-area {
    color: #a0aec0;
}

.reviews-action {
    text-align: center;
    margin: 2rem 0 1rem;
}

.reviews-button {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.reviews-button:hover {
    background-color: var(--primary-blue-hover);
}

.dark .reviews-button {
    background-color: var(--primary-blue-light);
}

.dark .reviews-button:hover {
    background-color: var(--primary-blue-light-hover);
}

.reviews-submit-link {
    text-align: center;
    margin: 1rem 0;
}

.reviews-submit-link a {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.9rem;
}

.dark .reviews-submit-link a {
    color: var(--primary-blue-light);
}

.reviews-submit-link a:hover {
    text-decoration: underline;
}

.reviews-footer {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    margin-top: 2rem;
}

.dark .reviews-footer {
    color: #a0aec0;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .reviews-title {
        font-size: 1.75rem;
    }
    
    .reviews-subtitle {
        font-size: 1rem;
    }
    
    .reviews-card {
        padding: 1.25rem;
    }
}

/* Consultation Form - Blue Theme */
.consultation-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.consultation-header {
    text-align: center;
    margin-bottom: 2rem;
}

.consultation-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.dark .consultation-title {
    color: var(--primary-blue-light);
}

.consultation-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-top: 0;
}

.dark .consultation-subtitle {
    color: #aaa;
}

.consultation-form {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dark .consultation-form {
    background-color: #2d3748;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

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

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.dark .form-label {
    color: #e2e8f0;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background-color: white;
    color: #333;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.dark .form-input,
.dark .form-textarea,
.dark .form-select {
    background-color: #374151;
    border-color: #4b5563;
    color: #e2e8f0;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.2);
    outline: none;
}

.dark .form-input:focus,
.dark .form-textarea:focus,
.dark .form-select:focus {
    border-color: var(--primary-blue-light);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

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

.form-button {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    width: 100%;
}

.form-button:hover {
    background-color: var(--primary-blue-hover);
}

.dark .form-button {
    background-color: var(--primary-blue-light);
}

.dark .form-button:hover {
    background-color: var(--primary-blue-light-hover);
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    text-align: center;
}

.form-message.success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.dark .form-message.success {
    background-color: #064e3b;
    color: #d1fae5;
    border: 1px solid #065f46;
}

.form-message.error {
    background-color: #fee2e2;
    color: #b91c1c;
    border: 1px solid #fecaca;
}

.dark .form-message.error {
    background-color: #7f1d1d;
    color: #fee2e2;
    border: 1px solid #b91c1c;
}

.action-buttons-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.action-button {
    display: inline-block;
    background-color: var(--primary-blue);
    color: white !important;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
    text-decoration: none;
    text-align: center;
}

.action-button:hover {
    background-color: var(--primary-blue-hover);
}

.dark .action-button {
    background-color: var(--primary-blue-light);
}

.dark .action-button:hover {
    background-color: var(--primary-blue-light-hover);
}

@media (max-width: 768px) {
    .consultation-title {
        font-size: 1.75rem;
    }
    
    .consultation-subtitle {
        font-size: 1rem;
    }
    
    .consultation-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .action-buttons-container {
        flex-direction: column;
        gap: 10px;
    }
}
