/* 
* ADAM Consult - Responsive Stylesheet
* Author: ADAM Consult
* Version: 1.0
*/

/* --------------------------------------------
   Responsive Styles
-------------------------------------------- */

/* Large Desktop (1440px and up) */
@media screen and (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-content {
        gap: 60px;
    }
}

/* Desktop (1200px and up) */
@media screen and (min-width: 1200px) {
    .hero-content {
        gap: 40px;
    }
    
    .service-grid.two-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium Devices (992px and up) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-large {
        font-size: 1.25rem;
    }
    
    .hero-content {
        gap: 30px;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid,
    .certification-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .implementation-steps {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
    }
}

/* Tablets (768px and up) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Header & Navigation */
    .header-content {
        padding: 10px 0;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        padding: 15px;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-links {
        flex-direction: column;
    }
    
    .nav-links li {
        margin: 0;
    }
    
    .nav-links a {
        padding: 12px 0;
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 0 15px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle i {
        transition: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero Section */
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle-large {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-services {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* About Section */
    .about-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .values-container {
        flex-direction: column;
    }
    
    /* Expertise Section */
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Services Overview */
    .service-highlights {
        grid-template-columns: 1fr;
    }
    
    .service-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }
    
    .tab-navigation {
        justify-content: flex-start;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    
    .tab-btn {
        padding: 10px 15px;
    }
    
    /* Service Detail */
    .service-grid.two-col {
        grid-template-columns: 1fr;
    }
    
    .certification-grid,
    .implementation-steps,
    .approach-steps,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

/* Mobile Large (576px and up) */
@media screen and (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    /* Header & Navigation */
    .header-content {
        padding: 10px 0;
    }
    
    .cta-button {
        display: none;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        padding: 15px;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-links {
        flex-direction: column;
    }
    
    .nav-links li {
        margin: 0;
    }
    
    .nav-links a {
        padding: 12px 0;
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 0 15px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle i {
        transition: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero Section */
    .hero {
        padding: 50px 0;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle-large {
        font-size: 1.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin: 0 auto 20px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-services {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    /* About Section */
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .values-container {
        flex-direction: column;
    }
    
    /* Expertise Section */
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    /* Services Overview */
    .service-highlights {
        grid-template-columns: 1fr;
    }
    
    .service-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }
    
    .tab-navigation {
        justify-content: flex-start;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    
    .tab-btn {
        padding: 10px 15px;
    }
    
    /* Service Detail */
    .service-item {
        flex-direction: column;
    }
    
    .service-item .icon {
        margin-bottom: 15px;
    }
    
    .certification-grid,
    .implementation-steps,
    .approach-steps,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: auto;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

/* Mobile Small (575px and down) */
@media screen and (max-width: 575px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.4rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    /* Header & Navigation */
    .header-content {
        padding: 10px 0;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .cta-button {
        display: none;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: var(--shadow-md);
        z-index: 1000;
        padding: 15px;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-links {
        flex-direction: column;
    }
    
    .nav-links li {
        margin: 0;
    }
    
    .nav-links a {
        padding: 10px 0;
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        padding: 0 0 0 15px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle i {
        transition: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 0;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle-large {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin: 0 auto 20px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-services {
        grid-template-columns: 1fr;
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* About Section */
    .about-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .values-container {
        flex-direction: column;
    }
    
    .about-image .image-container {
        height: 300px;
    }
    
    .about-image .overlay-text {
        font-size: 1.2rem;
        padding: 15px 20px;
    }
    
    /* Expertise Section */
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    /* Services Overview */
    .service-highlights {
        grid-template-columns: 1fr;
    }
    
    .service-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }
    
    .tab-navigation {
        justify-content: flex-start;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    
    .tab-btn {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    
    .service-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-cta .btn {
        width: 100%;
    }
    
    /* Service Detail */
    .service-item {
        flex-direction: column;
    }
    
    .service-item .icon {
        margin-bottom: 15px;
    }
    
    .service-detail h2 {
        font-size: 1.4rem;
    }
    
    .service-summary {
        font-size: 1rem;
    }
    
    .certification-grid,
    .implementation-steps,
    .approach-steps,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: auto;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}


@media screen and (max-width: 575px) {
  /* Drop-in fix here */
  .hero-title {
    font-size: 1.5rem;
  }
}
