/* 
 * Zimble Master Stylesheet
 * 1:1 Static Replica of VamTam Zimble WordPress Theme
 */

/* ==========================================
   1. VARIABLES & BASE STYLES
   ========================================== */
:root {
    --primary-color: #1a1b4b;      /* Deep midnight blue */
    --primary-light: #2c2d6e;
    --accent-color: #e5b358;       /* Warm gold */
    --accent-hover: #d09c40;
    --bg-light: #f7f8fc;           /* Light cool gray */
    --bg-dark: #0f1035;            /* Dark footer background */
    --text-dark: #222222;          /* Main text */
    --text-muted: #666666;         /* Descriptive/body text */
    --text-light: #ffffff;
    --border-color: #e2e8f0;
    
    --font-family-sans: 'Poppins', 'Inter', sans-serif;
    --transition-speed: 0.3s;
    --border-radius-lg: 12px;
    --border-radius-md: 8px;
    --border-radius-sm: 4px;
    
    --container-max-width: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-sans);
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-speed);
}

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

ul, ol {
    list-style: none;
}

/* ==========================================
   2. REUSABLE UTILITIES & BUTTONS
   ========================================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.header-right-side {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-support-info {
    display: flex;
    flex-direction: column;
    text-align: right;
    font-family: var(--font-family-sans);
}

.support-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    line-height: 1.2;
}

.support-phone {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

.support-phone:hover {
    color: #4F00F8;
}

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

.bg-light {
    background-color: var(--bg-light);
}

/* Section Header Styles */
.section-header {
    margin-bottom: 50px;
}

.section-header.center-align {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tag {
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 650px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px; /* 1:1 slant curve spec */
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition-speed) ease;
}

.btn-primary {
    background-color: #4F00F8; /* Vibrant purple */
    color: var(--text-light);
}

.btn-primary:hover {
    background-color: #4300E4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 0, 248, 0.2);
}

.btn-secondary {
    background-color: #E8E5FF; /* Solid light lavender background */
    color: #4F00F8;            /* Dark purple text */
    border: none;              /* No outer border */
}

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

.btn-contact-purple {
    background-color: #4F00F8; /* Vibrant purple styling */
    color: #ffffff;
    font-weight: 700;
    padding: 12px 24px;
}

.btn-contact-purple:hover {
    background-color: #4300E4;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

/* ==========================================
   3. SITE HEADER (NAVIGATION)
   ========================================== */
.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.site-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 44px;
    width: auto;
}

.logo-text {
    display: inline-block;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    margin-left: 8px; /* Offset next to logo icon */
}

/* Nav Menu */
.site-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-item {
    position: relative;
}

.menu-item > a {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 10px 0;
    display: block;
}

.menu-item > a:hover,
.menu-item.active > a {
    color: var(--accent-color);
}

/* Dropdowns */
.menu-item.has-dropdown > a::after {
    content: " \e003"; /* Vamtam Theme chevron-down */
    font-family: 'theme' !important;
    font-size: 10px;
    display: inline-block;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-width: 220px;
    border-radius: var(--border-radius-md);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-speed) ease;
    z-index: 1001;
}

.menu-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--accent-color);
}

/* Hamburger toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1002;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: all var(--transition-speed) ease;
}

/* ==========================================
   4. HERO SECTION
   ========================================== */
.hero-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
    z-index: 10;
}

.hero-title {
    font-family: var(--font-family-sans);
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    flex: 1.25;
    display: flex;
    justify-content: center;
    position: relative;
    clip-path: polygon(12% 0%, 100% 0%, 100% 100%, 0% 100%);
    margin-left: -60px; /* Slant cutout extends diagonally under the left content block */
    height: 480px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important; /* Remove standard card border-radius framing */
    box-shadow: none !important; /* Remove standard framing shadow */
}

/* ==========================================
   5. STATS COUNTER SECTION
   ========================================== */
.stats-section {
    background-color: transparent; /* Removed unexpected dark blue full-width container bar */
    color: var(--text-dark);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.stat-item {
    padding: 10px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #4F00F8; /* Vibrant purple match */
    margin-bottom: 5px;
}

.stat-label {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.stat-desc {
    font-size: 14px;
    color: var(--text-muted);
}

/* ==========================================
   6. VALUES / KEY ADVANTAGES SECTION
   ========================================== */
.values-section {
    padding: 100px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.value-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 35px 25px;
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-speed) ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.value-icon-box {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.value-icon {
    max-height: 100%;
}

.value-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-desc {
    font-size: 14px;
    color: var(--text-muted);
}

.values-actions {
    display: flex;
    justify-content: center;
}

/* ==========================================
   7. SOLUTIONS SECTION
   ========================================== */
.solutions-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.solution-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: all var(--transition-speed) ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

.solution-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.solution-card-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.solution-learn-more {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 5px;
}

.solution-learn-more:hover {
    color: var(--accent-hover);
}

/* ==========================================
   8. INDUSTRIES SECTION
   ========================================== */
.industries-section {
    padding: 100px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.industry-card {
    background-color: #ffffff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-speed) ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.industry-img-box {
    overflow: hidden;
    height: 220px;
}

.industry-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.industry-card:hover .industry-img {
    transform: scale(1.05);
}

.industry-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 20px;
}

.industries-actions {
    display: flex;
    justify-content: center;
}

/* ==========================================
   9. VENDORS / CUSTOM TABS SECTION
   ========================================== */
.vendors-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.vendors-tabs-container {
    background-color: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    margin-top: 40px;
}

.tabs-list {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    background-color: #fafbfc;
}

.tab-button {
    flex: 1;
    padding: 20px;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    transition: all var(--transition-speed);
}

.tab-button.active {
    background-color: #ffffff;
    border-bottom: 3px solid var(--accent-color);
    color: var(--accent-color);
}

.tabs-panels {
    padding: 40px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.panel-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.panel-info {
    flex: 1.5;
}

.panel-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.panel-desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.panel-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.panel-bullets li {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.panel-bullets li::before {
    content: "\2713"; /* checkmark icon */
    color: var(--accent-color);
    font-weight: bold;
}

.panel-brand {
    flex: 1;
    display: flex;
    justify-content: center;
}

.brand-logo {
    max-height: 80px;
    width: auto;
}

/* ==========================================
   10. TESTIMONIALS CAROUSEL SECTION
   ========================================== */
.testimonials-section {
    padding: 100px 0;
    overflow: hidden;
}

.testimonials-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    display: none;
    align-items: center;
    gap: 40px;
}

.testimonial-slide.active {
    display: flex;
    animation: fadeIn 0.5s ease;
}

.testimonial-content-card {
    flex: 1.5;
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    position: relative;
}

.testimonial-text {
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-meta {
    display: flex;
    flex-direction: column;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
    font-style: normal;
}

.testimonial-role {
    font-size: 14px;
    color: var(--text-muted);
}

.testimonial-image-box {
    flex: 1;
    display: flex;
    justify-content: center;
}

.testimonial-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: contain;
    border: 5px solid var(--border-color);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all var(--transition-speed);
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.carousel-dots .dot.active {
    background-color: var(--accent-color);
}

/* ==========================================
   11. PARTNERS LOGO GRID
   ========================================== */
.partners-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.partners-logo-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.partner-logo {
    max-height: 50px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all var(--transition-speed);
}

.partner-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* ==========================================
   12. CONSULTATION FORM SECTION
   ========================================== */
.consultation-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-light);
}

.form-container {
    max-width: 750px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-light);
    margin-top: 10px;
    margin-bottom: 12px;
}

.form-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

/* Form Styles */
.consultation-static-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-field {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-field.half-width {
    flex: 1;
}

.form-field label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required-star {
    color: #e53e3e;
}

.form-field input,
.form-field textarea,
.form-field select {
    padding: 14px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    font-family: var(--font-family-sans);
    font-size: 14px;
    color: var(--text-dark);
    transition: border-color var(--transition-speed);
}

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

.error-msg {
    color: #e53e3e;
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
    display: none;
}

/* Invalid State styling */
.form-field.invalid input,
.form-field.invalid textarea,
.form-field.invalid select {
    border-color: #e53e3e;
    background-color: #fffaf0;
}

.form-field.invalid .error-msg {
    display: block;
}

.form-submit-box {
    margin-top: 10px;
}

.form-submit-box button {
    width: 100%;
}

.form-status {
    padding: 15px;
    border-radius: var(--border-radius-md);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
    display: none;
}

.form-status.success {
    background-color: #c6f6d5;
    color: #22543d;
    border: 1px solid #9ae6b4;
}

.form-status.error {
    background-color: #fed7d7;
    color: #742a2a;
    border: 1px solid #feb2b2;
}

/* ==========================================
   13. SITE FOOTER
   ========================================== */
.site-footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr) 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

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

.footer-logo-text {
    display: inline-block;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-left: 8px; /* Offset next to logo icon */
}

.footer-contact-address {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-address a:hover {
    color: var(--accent-color);
}

.footer-contact-links p {
    font-size: 14px;
    margin-bottom: 8px;
}

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

.footer-col-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links-list a:hover,
.footer-links-list a.active {
    color: var(--accent-color);
    padding-left: 5px;
}

/* Connect Column */
.social-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.social-icon-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-speed);
}

.social-icon-link:hover {
    background-color: var(--accent-color);
    color: var(--primary-color);
}

.footer-cta-box {
    margin-top: 15px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.copyright-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   14. STORY SECTIONS & ABOUT / CONTACT SPECIFIC
   ========================================== */
.about-hero-section,
.contact-hero-section {
    padding: 100px 0 80px;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.story-section {
    padding: 100px 0;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.story-grid.reverse-layout .story-image-wrapper {
    order: 2;
}

.story-image-wrapper {
    display: flex;
    justify-content: center;
}

.story-img {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.story-tag {
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
    display: inline-block;
}

.story-heading {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.25;
}

.story-text {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.7;
    margin-bottom: 15px;
}

.story-subtext {
    font-size: 15px;
    color: var(--text-muted);
}

/* Contact Specific Details */
.contact-details-section {
    padding: 80px 0;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-detail-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-speed);
}

.contact-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.contact-detail-card.highlight-card {
    background-color: var(--primary-color);
    color: var(--text-light);
    border-color: transparent;
}

.contact-detail-card.highlight-card h3 {
    color: #ffffff;
}

.card-icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 24px;
}

.contact-detail-card.highlight-card .card-icon-box {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent-color);
}

.contact-detail-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.detail-link {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 10px;
}

.detail-info {
    font-size: 13px;
    color: var(--text-muted);
}

.contact-detail-card.highlight-card .detail-info {
    color: rgba(255, 255, 255, 0.7);
}

.contact-detail-card.highlight-card .btn {
    margin: 10px 0;
}

/* Locations */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.location-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-color);
    transition: all var(--transition-speed);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.location-state {
    font-size: 13px;
    font-weight: 800;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.location-city {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.location-address {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
    min-height: 70px;
}

.location-tel {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 25px;
}

.location-tel:hover {
    color: var(--accent-color);
}

/* ==========================================
   15. ANIMATIONS
   ========================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==========================================
   16. MEDIA QUERY BREAKPOINTS
   ========================================== */

/* Breakpoint: Desktop (992px to 1200px) */
@media (max-width: 1200px) {
    :root {
        --container-max-width: 960px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .values-grid,
    .solutions-grid,
    .industries-grid,
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Breakpoint: Tablet (768px to 991px) */
@media (max-width: 991px) {
    :root {
        --container-max-width: 720px;
    }
    
    /* Header menu mobile drawer */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .site-navigation {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background-color: #ffffff;
        box-shadow: -5px 5px 15px rgba(0,0,0,0.05);
        padding: 40px;
        transition: right var(--transition-speed) ease;
        z-index: 999;
        display: block;
        overflow-y: auto;
    }
    
    .site-navigation.open {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }
    
    .menu-item {
        width: 100%;
    }
    
    .menu-item.has-dropdown > a::after {
        float: right;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 20px;
        display: none;
        min-width: 100%;
    }
    
    .menu-item.has-dropdown.open .dropdown-menu {
        display: block;
    }
    
    .header-actions {
        display: none;
    }
    
    /* Hero layout stack */
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    /* Stats Layout */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Story Grid stack */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .story-grid.reverse-layout .story-image-wrapper {
        order: 0;
    }
    
    /* Custom tabs stack */
    .panel-content {
        flex-direction: column;
        gap: 30px;
    }
    
    /* Testimonial stack */
    .testimonial-slide {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        width: 150px;
        height: 150px;
    }
    
    /* Form row stack */
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    /* Footer Stack */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Breakpoint: Mobile (up to 767px) */
@media (max-width: 767px) {
    :root {
        --container-max-width: 100%;
    }
    
    .hero-title {
        font-size: 34px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .values-grid,
    .solutions-grid,
    .industries-grid,
    .locations-grid,
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .panel-bullets {
        grid-template-columns: 1fr;
    }
    
    .consultation-static-form {
        padding: 25px 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .tabs-list {
        flex-direction: column;
    }
}
