/*

TemplateMo 584 Pod Talk - HerzWeg Edition

https://templatemo.com/tm-584-pod-talk

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
    --white-color: #ffffff;
    --primary-color: #2C2C2C;
    --secondary-color: #B8860B;
    --accent-color: #DAA520;
    --warm-brown: #8B7355;
    --light-brown: #D2B48C;
    --section-bg-color: #F5F5DC;
    --custom-btn-bg-color: #2C2C2C;
    --custom-btn-bg-hover-color: #B8860B;
    --dark-color: #1A1A1A;
    --p-color: #4A4A4A;
    --border-color: #8B7355;
    --link-hover-color: #B8860B;
    --gradient-primary: linear-gradient(135deg, #2C2C2C 0%, #B8860B 100%);
    --gradient-secondary: linear-gradient(135deg, #8B7355 0%, #D2B48C 100%);
    --shadow-soft: 0 8px 32px rgba(44, 44, 44, 0.1);
    --shadow-medium: 0 12px 40px rgba(44, 44, 44, 0.15);
    --shadow-strong: 0 20px 60px rgba(44, 44, 44, 0.2);

    --body-font-family: "Poppins", sans-serif;
    --title-font-family: "Playfair Display", serif;

    --h1-font-size: 64px;
    --h2-font-size: 48px;
    --h3-font-size: 36px;
    --h4-font-size: 28px;
    --h5-font-size: 24px;
    --h6-font-size: 20px;
    --p-font-size: 16px;
    --menu-font-size: 14px;

    --border-radius-large: 120px;
    --border-radius-medium: 24px;
    --border-radius-small: 12px;

    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
}

body {
    background-color: var(--white-color);
    font-family: var(--body-font-family);
    color: var(--dark-color);
    line-height: 1.6;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--title-font-family);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
}

h1 {
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-extrabold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
}

h3 {
    font-size: var(--h3-font-size);
}

h4 {
    font-size: var(--h4-font-size);
}

h5 {
    font-size: var(--h5-font-size);
}

h6 {
    font-size: var(--h6-font-size);
}

p {
    font-size: var(--p-font-size);
    color: var(--p-color);
    margin-bottom: 1rem;
}

ul li {
    color: var(--p-color);
    margin-bottom: 0.5rem;
}

a,
a:hover {
    text-decoration: none;
}

a {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--link-hover-color);
}

b,
strong {
    font-weight: var(--font-weight-bold);
}

::selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/*---------------------------------------
  SECTIONS               
-----------------------------------------*/

.section-title-wrap {
    text-align: center;
}

.section-title-wrap::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 20px auto 0;
    border-radius: 2px;
}

.section-title {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: var(--dark-color);
}

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

main {
    padding-top: 80px;
}

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

.section-overlay {
    position: relative;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.9) 0%, rgba(184, 134, 11, 0.8) 100%);
    color: var(--white-color);
}

.section-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.section-overlay+.container {
    position: relative;
    z-index: 2;
}

/*---------------------------------------
  CUSTOM ICONS               
-----------------------------------------*/

.custom-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-soft);
}

/*---------------------------------------
  CUSTOM BUTTONS               
-----------------------------------------*/

.custom-btn {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius-medium);
    color: var(--white-color);
    font-weight: var(--font-weight-semibold);
    padding: 12px 32px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}


.custom-border-btn {
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: var(--border-radius-medium);
    font-weight: var(--font-weight-semibold);
    padding: 12px 32px;
    transition: all 0.3s ease;
}

.custom-border-btn:hover {
    background: var(--gradient-primary);
    color: var(--white-color);
    transform: translateY(-2px);
}

.custom-btn-bg-white {
    background: var(--white-color);
    color: var(--primary-color);
    border: 2px solid var(--white-color);
    border-radius: var(--border-radius-medium);
    font-weight: var(--font-weight-semibold);
    padding: 12px 32px;
    transition: all 0.3s ease;
}

/*---------------------------------------
  SITE HEADER               
-----------------------------------------*/

.site-header {
    background: var(--white-color);
    box-shadow: var(--shadow-soft);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-header h2 {
    font-family: var(--title-font-family);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    margin: 0;
}

:root {
    --navbar-padding-y: 1rem;
    --navbar-padding-x: 0;
}

.navbar {
    padding: var(--navbar-padding-y) var(--navbar-padding-x);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.navbar-brand {
    font-family: var(--title-font-family);
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: var(--font-weight-medium);
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
    background: rgba(44, 44, 44, 0.1);
    transform: translateY(-2px);
}

.navbar-nav .dropdown-menu {
    background: var(--white-color);
    border: none;
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
    padding: 1rem 0;
    margin-top: 0.5rem;
}

.navbar-nav .dropdown-item {
    color: var(--dark-color);
    padding: 0.75rem 1.5rem;
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background: var(--gradient-primary);
    color: var(--white-color);
    transform: translateX(5px);
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(44, 44, 44, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: transparent;
    border-radius: var(--border-radius-medium);
    font-weight: var(--font-weight-semibold);
    padding: 10px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background: var(--gradient-primary);
    border-color: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

@media (max-width: 991px) {
    .navbar-nav {
        padding: 1rem 0;
    }

    .btn-outline-primary {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}

/*---------------------------------------
  APPROACH SECTION               
-----------------------------------------*/

.approach-section {
    background: var(--section-bg-color);
    position: relative;
    overflow: hidden;
}

.approach-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(44,44,44,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.approach-title {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.approach-subtitle {
    font-size: 1.2rem;
    color: var(--p-color);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.approach-content h3 {
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.approach-content p {
    font-size: 1.1rem;
    color: var(--p-color);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.approach-content h4 {
    font-size: var(--h4-font-size);
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.approach-content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.approach-content ul li {
    padding: 0.75rem 0;
    border-left: 3px solid var(--primary-color);
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.approach-content ul li strong {
    color: var(--primary-color);
    font-weight: var(--font-weight-semibold);
}

.approach-content .btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius-medium);
    padding: 15px 40px;
    font-weight: var(--font-weight-semibold);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.approach-content .btn-primary:hover,
.approach-content .btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: var(--white-color);
}

@media (max-width: 991px) {
    .approach-section {
        padding: 60px 0;
    }

    .approach-title {
        font-size: var(--h3-font-size);
    }

    .approach-subtitle {
        font-size: 1rem;
    }

    .approach-content h3 {
        font-size: var(--h4-font-size);
    }
}

/*---------------------------------------
  TEAM SECTION               
-----------------------------------------*/

.team-section {
    background: var(--white-color);
    position: relative;
}

.team-title {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.team-description {
    font-size: 1.2rem;
    color: var(--p-color);
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    background: var(--white-color);
    border-radius: var(--border-radius-medium);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid rgba(44, 44, 44, 0.1);
    position: relative;
    overflow: hidden;
}

.team-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.team-image-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid var(--light-brown);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .team-image-wrapper {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

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

.team-name {
    font-size: var(--h4-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    margin: 0;
}

@media (max-width: 767px) {
    .team-section {
        padding: 60px 0;
    }

    .team-title {
        font-size: var(--h3-font-size);
    }

    .team-description {
        font-size: 1rem;
    }
}

/*---------------------------------------
  GROWTH FOCUS SECTION               
-----------------------------------------*/

.growth-focus-section {
    background: var(--section-bg-color);
    padding: 100px 0;
    position: relative;
}

.header-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.growth-title {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.growth-subtitle {
    font-size: 1.2rem;
    color: var(--p-color);
    max-width: 700px;
    margin: 0 auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.growth-card {
    background: var(--white-color);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(44, 44, 44, 0.1);
}

.growth-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.image-wrapper {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.growth-card:hover .image-wrapper img {
    transform: scale(1.1);
}

.card-content {
    padding: 2rem;
    position: relative;
}

.card-content h3 {
    font-size: var(--h4-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 1rem;
    color: var(--p-color);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 480px) {
    .growth-title {
        font-size: var(--h3-font-size);
    }

    .card-content h3 {
        font-size: var(--h5-font-size);
    }

    .card-content p {
        font-size: 0.9rem;
    }
}

/*---------------------------------------
  CONTACT ABOUT SECTION               
-----------------------------------------*/

#contact-about {
    background: var(--white-color);
    padding: 100px 0;
    position: relative;
}

#contact-about .container {
    position: relative;
    z-index: 2;
}

.contact-form-wrapper {
    background: var(--white-color);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(44, 44, 44, 0.1);
}

.form-title {
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
}

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

.contact-form label {
    font-weight: var(--font-weight-semibold);
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    display: block;
}

.required {
    color: var(--accent-color);
    font-weight: var(--font-weight-bold);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(44, 44, 44, 0.2);
    border-radius: var(--border-radius-small);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white-color);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(74, 74, 74, 0.6);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 44, 44, 0.1);
}

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

.btn-submit {
    background: var(--gradient-primary);
    color: var(--white-color);
    border: none;
    border-radius: var(--border-radius-medium);
    padding: 15px 40px;
    font-weight: var(--font-weight-semibold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.about-text-wrapper {
    background: var(--section-bg-color);
    border-radius: var(--border-radius-medium);
    border: 1px solid rgba(44, 44, 44, 0.1);
}

.about-title {
    font-size: var(--h3-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    #contact-about .row {
        flex-direction: column-reverse;
    }

    #contact-about .col-lg-6 {
        margin-bottom: 2rem;
    }

    .contact-form-wrapper,
    .about-text-wrapper {
        margin-bottom: 2rem;
    }
}

/*---------------------------------------
  INSIGHTS SECTION               
-----------------------------------------*/

.insights-section {
    background: var(--section-bg-color);
    padding: 100px 0;
    position: relative;
}

.header-wrap {
    text-align: center;
    margin-bottom: 4rem;
}

.insights-title {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.insights-subtitle {
    font-size: 1.2rem;
    color: var(--p-color);
    max-width: 700px;
    margin: 0 auto;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.insight-card {
    background: var(--white-color);
    border-radius: var(--border-radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    border: 1px solid rgba(44, 44, 44, 0.1);
}

.insight-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.image-link {
    display: block;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.insight-card:hover .image-link img {
    transform: scale(1.1);
}

.content-wrap {
    padding: 2rem;
    position: relative;
}

.content-wrap h3 {
    font-size: var(--h4-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.content-wrap h3 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-wrap h3 a:hover {
    color: var(--primary-color);
}

.content-wrap p {
    font-size: 1rem;
    color: var(--p-color);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 767px) {
    .insights-title {
        font-size: var(--h3-font-size);
    }

    .insights-subtitle {
        font-size: 1rem;
    }
}

/*---------------------------------------
  FOOTER               
-----------------------------------------*/

.footer-modern {
    background: var(--dark-color);
    color: var(--white-color);
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(44, 44, 44, 0.9) 100%);
}

.footer-top {
    padding: 60px 0 40px;
    position: relative;
    z-index: 2;
}

.footer-top .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-subscribe,
.footer-contact {
    text-align: center;
}

.footer-title {
    font-size: var(--h4-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--white-color);
    margin-bottom: 1rem;
}

.footer-subscribe p,
.footer-contact p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.footer-form {
    display: flex;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.footer-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-small);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

.footer-form button {
    background: var(--gradient-primary);
    color: var(--white-color);
    border: none;
    border-radius: var(--border-radius-small);
    padding: 12px 24px;
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.footer-contact .footer-link {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 12px 32px;
    border-radius: var(--border-radius-medium);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    transition: all 0.3s ease;
}

.footer-contact .footer-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    position: relative;
    z-index: 2;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--accent-color);
    transform: translateY(-1px);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}



/*---------------------------------------
  FOOTER MOBILE RESPONSIVE               
-----------------------------------------*/

@media (max-width: 768px) {
    .footer-modern {
        padding: 2rem 0 1rem;
    }
    
    .footer-top {
        padding: 2rem 0;
    }
    
    .footer-top .container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-subscribe,
    .footer-contact {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .footer-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-subscribe p,
    .footer-contact p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .footer-form {
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
    }
    
    .footer-form input[type="email"] {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 25px;
    }
    
    .footer-form button {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
        border-radius: 25px;
        margin-top: 0.5rem;
    }
    
    .footer-contact .footer-link {
        display: inline-block;
        margin-top: 1rem;
        padding: 10px 20px;
        background: var(--primary-color);
        color: var(--white-color);
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .footer-contact .footer-link:hover {
        background: var(--secondary-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-nav a {
        font-size: 0.85rem;
        padding: 8px 12px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .footer-nav a:hover {
        background: var(--secondary-color);
        color: var(--white-color);
        transform: translateY(-1px);
    }
    
    .footer-copy {
        font-size: 0.8rem;
        opacity: 0.8;
        text-align: center;
    }
}



/*---------------------------------------
  COOKIE BANNER               
-----------------------------------------*/

.cookie-wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white-color);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-strong);
    padding: 2rem;
    z-index: 9999;
    border: 1px solid rgba(44, 44, 44, 0.1);
    max-width: 500px;
    margin: 0 auto;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s ease;
}

.cookie-wrapper.show {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 772px) {
    .cookie-wrapper {
        left: 10px;
        right: 10px;
        padding: 1.5rem;
    }
}

.hidden {
    display: none;
}

.cookie-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.cookie-wrapper h2 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: var(--h4-font-size);
}

.data {
    margin: 1.5rem 0;
}

.data p {
    color: var(--p-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.data p a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
}

.data p a:hover {
    color: var(--secondary-color);
}

.buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.buttons .cookie-button {
    flex: 1;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius-small);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.buttons #acceptBtn {
    background: var(--gradient-primary);
    color: var(--white-color);
}

.buttons #acceptBtn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

#declineBtn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

#declineBtn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

#result {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--border-radius-small);
    text-align: center;
    font-weight: var(--font-weight-semibold);
}

/*---------------------------------------
  CONTACT INFO STYLES               
-----------------------------------------*/

.contact-info {
    background: rgba(44, 44, 44, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius-small);
    border-left: 4px solid var(--primary-color);
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

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

.contact-info a:hover {
    color: var(--secondary-color);
}

/*---------------------------------------
  THANKS PAGE STYLES               
-----------------------------------------*/

.thanks-content {
    background: var(--white-color);
    border-radius: var(--border-radius-medium);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(44, 44, 44, 0.1);
    animation: fadeInUp 1s ease-out;
}

.thanks-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.thanks-title {
    font-size: var(--h2-font-size);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--p-color);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .thanks-content {
        padding: 2rem;
    }
    
    .thanks-title {
        font-size: var(--h3-font-size);
    }
    
    .thanks-message {
        font-size: 1rem;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thanks-actions .custom-btn,
    .thanks-actions .custom-border-btn {
        width: 100%;
        max-width: 300px;
    }
}

/*---------------------------------------
  RESPONSIVE DESIGN               
-----------------------------------------*/

@media screen and (min-width: 2160px) {
    .first-section {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}

@media screen and (min-width: 1600px) {
    .site-footer {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 1240px) {
    .first-section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 991px) {
    h1 {
        font-size: 48px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 28px;
    }

    h4 {
        font-size: 24px;
    }

    h5 {
        font-size: 20px;
    }

    h6 {
        font-size: 18px;
    }

    .first-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .section-padding {
        padding: 60px 0;
    }

    .navbar-nav {
        background: rgba(255, 255, 255, 0.95);
        padding: 1rem;
        border-radius: var(--border-radius-medium);
        margin-top: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        margin: 0.25rem 0;
    }

    .navbar-nav .dropdown-menu {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: column;
    }

    .nav-tabs .nav-link:first-child {
        border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
    }

    .nav-tabs .nav-link {
        border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
    }

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

    .site-footer {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media screen and (max-width: 540px) {
    .first-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .custom-block .custom-block-top {
        flex-direction: column;
    }

    .custom-block .custom-block-top small:last-child {
        margin-top: 0.5rem;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 28px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }
}

@media screen and (max-width: 414px) {
    .search-form {
        flex-direction: column;
        gap: 1rem;
    }
}

/*---------------------------------------
  HERO SECTION               
-----------------------------------------*/

.hero-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M25,10 C30,5 35,5 40,10 C45,15 50,25 50,30 C50,35 45,40 40,45 C35,50 30,50 25,45 C20,40 15,35 15,30 C15,25 20,15 25,10 Z" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: var(--h1-font-size);
    font-weight: var(--font-weight-extrabold);
    color: var(--white-color);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-buttons {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.9s both;
}

.hero-image-wrapper img {
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-strong);
    transition: all 0.4s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong), 0 0 30px rgba(255, 255, 255, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/*---------------------------------------
  ENHANCED ANIMATIONS               
-----------------------------------------*/

.growth-card {
    animation: fadeInUp 0.6s ease-out;
}

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

.insight-card {
    animation: fadeInUp 0.6s ease-out;
}

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

.team-card {
    animation: fadeInUp 0.6s ease-out;
}

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

/*---------------------------------------
  ENHANCED HOVER EFFECTS               
-----------------------------------------*/

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}



.growth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.growth-card:hover::before {
    opacity: 0.05;
}

.team-card .team-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card:hover .team-image-wrapper::before {
    opacity: 0.2;
}

/*---------------------------------------
  ENHANCED ANIMATIONS & EFFECTS               
-----------------------------------------*/

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: var(--shadow-soft);
}

.growth-card,
.insight-card,
.team-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.growth-card.animate-in,
.insight-card.animate-in,
.team-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.growth-card.hover-active,
.insight-card.hover-active,
.team-card.hover-active {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

.form-input.error,
.form-textarea.error {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
}

body.loaded {
    opacity: 1;
}

body {
    opacity: 0;
    transition: opacity 0.5s ease;
}

/*---------------------------------------
  ENHANCED BUTTON EFFECTS               
-----------------------------------------*/

.custom-btn {
    position: relative;
    overflow: hidden;
}


/*---------------------------------------
  ENHANCED NAVIGATION EFFECTS               
-----------------------------------------*/

.navbar-nav .nav-link {
    position: relative;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::before {
    width: 80%;
}

/*---------------------------------------
  ENHANCED CARD EFFECTS               
-----------------------------------------*/

.growth-card::before,
.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: var(--border-radius-medium);
}

.growth-card:hover::before,
.insight-card:hover::before {
    opacity: 0.05;
}

/*---------------------------------------
  ENHANCED IMAGE EFFECTS               
-----------------------------------------*/

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(44, 44, 44, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.growth-card:hover .image-wrapper::after,
.insight-card:hover .image-wrapper::after {
    opacity: 1;
}

/*---------------------------------------
  ENHANCED FORM EFFECTS               
-----------------------------------------*/

.form-input:focus,
.form-textarea:focus {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-submit {
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-submit:hover::before {
    width: 300px;
    height: 300px;
}

/*---------------------------------------
  ENHANCED FOOTER EFFECTS               
-----------------------------------------*/

.footer-form input[type="email"]:focus {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.footer-link {
    position: relative;
    overflow: hidden;
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 100%;
}

/*---------------------------------------
  ENHANCED COOKIE BANNER               
-----------------------------------------*/

.cookie-wrapper {
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-wrapper.hidden {
    animation: slideOutDown 0.5s ease-in forwards;
}

@keyframes slideOutDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

/*---------------------------------------
  RESPONSIVE ENHANCEMENTS               
-----------------------------------------*/

@media (max-width: 768px) {
    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.95);
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .custom-btn,
    .hero-buttons .custom-border-btn {
        width: 100%;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/*---------------------------------------
  ACCESSIBILITY IMPROVEMENTS               
-----------------------------------------*/

@media (prefers-reduced-motion: reduce) {
    .hero-section::before {
        animation: none;
    }
    
    .thanks-icon {
        animation: none;
    }
}

/*---------------------------------------
  HERO SECTION BUTTONS               
-----------------------------------------*/





/*---------------------------------------
  HERO BUTTONS ANIMATIONS               
-----------------------------------------*/





/*---------------------------------------
  HERO BUTTONS RESPONSIVE               
-----------------------------------------*/

@media (max-width: 768px) {
    .hero-buttons .custom-btn,
    .hero-buttons .custom-border-btn {
        font-size: 12px;
        padding: 10px 24px;
        border-radius: 4px;
    }
    
    .hero-buttons .custom-btn:hover,
    .hero-buttons .custom-border-btn:hover {
        transform: translateY(-1px);
    }
}

@media (max-width: 480px) {
    .hero-buttons .custom-btn,
    .hero-buttons .custom-border-btn {
        font-size: 11px;
        padding: 8px 20px;
        border-radius: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-buttons .custom-btn:hover,
    .hero-buttons .custom-border-btn:hover {
        transform: none;
    }
}

/*---------------------------------------
  SECTIONS               
-----------------------------------------*/

/*---------------------------------------
  MOBILE RESPONSIVE - NO RIGHT MARGIN               
-----------------------------------------*/

@media (max-width: 768px) {
    /* Общие настройки для мобильных */
    .container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100%;
        width: 100%;
    }
    
    /* Hero секция */
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .custom-btn,
    .hero-buttons .custom-border-btn {
        width: 100%;
        max-width: 280px;
        margin: 0;
    }
    
    .hero-image-wrapper {
        margin-top: 2rem;
        padding: 0;
    }
    
    /* Team секция */
    .team-section {
        padding: 3rem 0;
    }
    
    .team-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .team-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .team-card {
        margin-bottom: 1.5rem;
    }
    
    /* Contact секция */
    #contact-about {
        padding: 3rem 0;
    }
    
    .contact-form-wrapper,
    .about-text-wrapper {
        padding: 1.5rem;
        margin: 0;
    }
    
    .form-input,
    .form-textarea {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .btn-submit {
        width: 100%;
        margin-top: 1rem;
    }
    
    /* Services секция */
    .growth-focus-section {
        padding: 3rem 0;
    }
    
    .growth-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .growth-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .growth-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    /* Insights секция */
    .insights-section {
        padding: 3rem 0;
    }
    
    .insights-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .insights-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .insight-card {
        margin-bottom: 1.5rem;
    }
    
    /* About секция */
    .approach-section {
        padding: 3rem 0;
    }
    
    .approach-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .approach-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .approach-content {
        padding: 1.5rem;
    }
    
    /* Navbar */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-nav {
        margin-top: 1rem;
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 25px;
        margin: 0.25rem 0;
        background: rgba(44, 44, 44, 0.05);
    }
    
    .navbar-nav .nav-link:hover {
        background: var(--secondary-color);
        color: var(--white-color);
    }
    
    /* Footer */
    .footer-modern {
        padding: 2rem 0 1rem;
    }
    
    .footer-top {
        padding: 2rem 0;
    }
    
    .footer-top .container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 0 15px;
    }
    
    .footer-subscribe,
    .footer-contact {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .footer-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .footer-subscribe p,
    .footer-contact p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .footer-form {
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
    }
    
    .footer-form input[type="email"] {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 25px;
    }
    
    .footer-form button {
        width: 100%;
        padding: 12px 24px;
        font-size: 14px;
        border-radius: 25px;
        margin-top: 0.5rem;
    }
    
    .footer-contact .footer-link {
        display: inline-block;
        margin-top: 1rem;
        padding: 10px 20px;
        background: var(--primary-color);
        color: var(--white-color);
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .footer-contact .footer-link:hover {
        background: var(--secondary-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(184, 134, 11, 0.3);
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0 15px;
    }
    
    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-nav a {
        font-size: 0.85rem;
        padding: 8px 12px;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .footer-nav a:hover {
        background: var(--secondary-color);
        color: var(--white-color);
        transform: translateY(-1px);
    }
    
    .footer-copy {
        font-size: 0.8rem;
        opacity: 0.8;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-buttons .custom-btn,
    .hero-buttons .custom-border-btn {
        max-width: 250px;
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .team-title,
    .growth-title,
    .insights-title,
    .approach-title {
        font-size: 1.6rem;
    }
    
    .team-description,
    .growth-subtitle,
    .insights-subtitle,
    .approach-subtitle {
        font-size: 0.9rem;
    }
    
    .contact-form-wrapper,
    .about-text-wrapper,
    .growth-card,
    .approach-content {
        padding: 1rem;
    }
    
    .footer-modern {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-top {
        padding: 1.5rem 0;
    }
    
    .footer-top .container,
    .footer-bottom .container {
        padding: 0 10px;
    }
    
    .footer-subscribe,
    .footer-contact {
        padding: 0;
    }
    
    .footer-title {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-subscribe p,
    .footer-contact p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    .footer-form input[type="email"] {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .footer-form button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .footer-contact .footer-link {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .footer-nav {
        gap: 0.5rem;
    }
    
    .footer-nav a {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    
    .footer-copy {
        font-size: 0.75rem;
    }
}

@media (max-width: 360px) {
    .container {
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-buttons .custom-btn,
    .hero-buttons .custom-border-btn {
        max-width: 220px;
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .team-title,
    .growth-title,
    .insights-title,
    .approach-title {
        font-size: 1.4rem;
    }
    
    .team-description,
    .growth-subtitle,
    .insights-subtitle,
    .approach-subtitle {
        font-size: 0.85rem;
    }
    
    .contact-form-wrapper,
    .about-text-wrapper,
    .growth-card,
    .approach-content {
        padding: 0.8rem;
    }
    
    .footer-modern {
        padding: 1rem 0 0.5rem;
    }
    
    .footer-top {
        padding: 1rem 0;
    }
    
    .footer-top .container,
    .footer-bottom .container {
        padding: 0 8px;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-subscribe p,
    .footer-contact p {
        font-size: 0.8rem;
    }
    
    .footer-form input[type="email"] {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .footer-form button {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .footer-contact .footer-link {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .footer-nav a {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .footer-copy {
        font-size: 0.7rem;
    }
}

/*---------------------------------------
  COOKIE BANNER               
-----------------------------------------*/

/*---------------------------------------
  HERO SECTION BUTTONS - CLASSIC               
-----------------------------------------*/

.hero-buttons .custom-btn {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--white-color);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(44, 44, 44, 0.2);
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
    padding: 12px 30px;
}

.hero-buttons .custom-btn:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

.hero-buttons .custom-border-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 14px;
    padding: 12px 30px;
}

.hero-buttons .custom-border-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 44, 44, 0.3);
}

/*---------------------------------------
  HERO BUTTONS RESPONSIVE - CLASSIC               
-----------------------------------------*/