/**
 * Gulf Models - Main Stylesheet
 * Premium Modeling Agency WordPress Theme
 *
 * Table of Contents:
 *
 *  1.  CSS Reset & Base
 *  2.  Typography
 *  3.  Layout & Containers
 *  4.  Buttons
 *  5.  Forms
 *  6.  Header & Navigation
 *  7.  Footer
 *  8.  Hero Section
 *  9.  Services Section
 *  10. Models Grid
 *  11. Pricing Section
 *  12. Testimonials Section
 *  13. CTA Section
 *  14. FAQ Section
 *  15. Single Model Profile
 *  16. Model Dashboard
 *  17. Registration Form
 *  18. Blog Styles
 *  19. Page Styles
 *  20. Utility Classes
 *  21. Preloader
 *  22. Animations & Transitions
 *  23. Responsive / Media Queries
 */


/* ==========================================================================
   1. CSS Reset & Base
   ========================================================================== */

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

:root {
    /* Color Palette */
    --gm-primary-color: #C2915F;
    --gm-secondary-color: #1a1a1a;
    --gm-accent-color: #A67951;
    --gm-text-color: #333333;
    --gm-heading-color: #1a1a1a;
    --gm-link-color: #C2915F;
    --gm-link-hover-color: #A67951;

    /* Typography */
    --gm-heading-font: 'Playfair Display', serif;
    --gm-body-font: 'Inter', sans-serif;
    --gm-body-font-size: 16px;

    /* Derived Colors */
    --gm-border-color: #e0e0e0;
    --gm-bg-light: #f9f8f6;
    --gm-bg-dark: #111111;
    --gm-white: #ffffff;
    --gm-black: #000000;
    --gm-success: #2ecc71;
    --gm-error: #e74c3c;
    --gm-warning: #f39c12;
    --gm-info: #3498db;
    --gm-muted: #999999;

    /* Spacing */
    --gm-section-padding: 80px;
    --gm-section-padding-sm: 50px;
    --gm-gap: 30px;
    --gm-gap-sm: 15px;

    /* Borders & Radius */
    --gm-radius: 4px;
    --gm-radius-lg: 8px;
    --gm-radius-pill: 50px;

    /* Shadows */
    --gm-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --gm-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --gm-shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --gm-shadow-gold: 0 4px 20px rgba(194, 145, 95, 0.25);

    /* Transitions */
    --gm-transition: all 0.3s ease;
    --gm-transition-fast: all 0.15s ease;
    --gm-transition-slow: all 0.5s ease;

    /* Z-index Scale */
    --gm-z-dropdown: 100;
    --gm-z-sticky: 500;
    --gm-z-header: 1000;
    --gm-z-overlay: 1500;
    --gm-z-modal: 2000;
    --gm-z-preloader: 9999;
}

html {
    font-size: var(--gm-body-font-size);
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--gm-body-font);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--gm-text-color);
    background-color: var(--gm-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

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

svg {
    max-width: 100%;
    fill: currentColor;
}

a {
    text-decoration: none;
    color: var(--gm-link-color);
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

a:hover,
a:focus {
    color: var(--gm-link-hover-color);
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    outline: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

iframe {
    border: 0;
}

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

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

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gm-secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gm-primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gm-accent-color);
}

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--gm-primary-color) var(--gm-secondary-color);
}


/* ==========================================================================
   2. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--gm-heading-font);
    color: var(--gm-heading-color);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.25rem;
    letter-spacing: -0.3px;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.375rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

p {
    margin-bottom: 1.25em;
}

p:last-child {
    margin-bottom: 0;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gm-muted);
    font-weight: 300;
}

strong, b {
    font-weight: 700;
}

em, i {
    font-style: italic;
}

small, .small {
    font-size: 0.875rem;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 2px;
}

blockquote {
    border-left: 4px solid var(--gm-primary-color);
    padding: 20px 30px;
    margin: 30px 0;
    font-family: var(--gm-heading-font);
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--gm-heading-color);
    background-color: var(--gm-bg-light);
}

blockquote cite {
    display: block;
    margin-top: 10px;
    font-family: var(--gm-body-font);
    font-style: normal;
    font-size: 0.875rem;
    color: var(--gm-muted);
    font-weight: 600;
}

blockquote cite::before {
    content: '\2014\00a0';
}

code {
    font-family: 'Fira Code', 'Consolas', 'Monaco', monospace;
    font-size: 0.875em;
    background-color: var(--gm-bg-light);
    padding: 2px 6px;
    border-radius: var(--gm-radius);
    color: var(--gm-accent-color);
}

pre {
    font-family: 'Fira Code', 'Consolas', 'Monaco', monospace;
    font-size: 0.875rem;
    background-color: var(--gm-secondary-color);
    color: #f8f8f2;
    padding: 25px;
    border-radius: var(--gm-radius);
    overflow-x: auto;
    margin: 25px 0;
    line-height: 1.6;
}

pre code {
    background: none;
    padding: 0;
    color: inherit;
}

hr {
    border: none;
    border-top: 1px solid var(--gm-border-color);
    margin: 40px 0;
}

mark {
    background-color: rgba(194, 145, 95, 0.2);
    padding: 2px 4px;
}

.section-title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2.25rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
    color: var(--gm-muted);
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gm-primary-color);
    margin-bottom: 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.text-gold {
    color: var(--gm-primary-color);
}

.text-white {
    color: var(--gm-white);
}

.text-muted {
    color: var(--gm-muted);
}


/* ==========================================================================
   3. Layout & Containers
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.container-wide {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.container-full {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

/* Grid System */
.grid {
    display: grid;
    gap: var(--gm-gap);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gm-gap);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gm-gap);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gm-gap);
}

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--gm-gap);
}

.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--gm-gap);
}

/* Flexbox Utilities */
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.flex-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-gap {
    gap: var(--gm-gap);
}

.flex-gap-sm {
    gap: var(--gm-gap-sm);
}

/* Section Spacing */
.section {
    padding-top: var(--gm-section-padding);
    padding-bottom: var(--gm-section-padding);
}

.section--sm {
    padding-top: var(--gm-section-padding-sm);
    padding-bottom: var(--gm-section-padding-sm);
}

.section--no-top {
    padding-top: 0;
}

.section--no-bottom {
    padding-bottom: 0;
}

.section--dark {
    background-color: var(--gm-secondary-color);
    color: var(--gm-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5,
.section--dark h6 {
    color: var(--gm-white);
}

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


/* ==========================================================================
   4. Buttons
   ========================================================================== */

.gm-button {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--gm-body-font);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--gm-radius);
    cursor: pointer;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
    line-height: 1.4;
    position: relative;
    overflow: hidden;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.gm-button:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.gm-button:active {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.gm-button--primary {
    background-color: var(--gm-primary-color);
    color: var(--gm-white);
    border-color: var(--gm-primary-color);
}

.gm-button--primary:hover {
    background-color: var(--gm-accent-color);
    border-color: var(--gm-accent-color);
    color: var(--gm-white);
    box-shadow: var(--gm-shadow-gold);
}

.gm-button--secondary {
    background-color: transparent;
    color: var(--gm-white);
    border-color: var(--gm-white);
}

.gm-button--secondary:hover {
    background-color: var(--gm-white);
    color: var(--gm-secondary-color);
}

.gm-button--outline {
    background-color: transparent;
    color: var(--gm-primary-color);
    border-color: var(--gm-primary-color);
}

.gm-button--outline:hover {
    background-color: var(--gm-primary-color);
    color: var(--gm-white);
}

.gm-button--dark {
    background-color: var(--gm-secondary-color);
    color: var(--gm-white);
    border-color: var(--gm-secondary-color);
}

.gm-button--dark:hover {
    background-color: var(--gm-black);
    border-color: var(--gm-black);
    color: var(--gm-white);
}

.gm-button--gold {
    background: linear-gradient(135deg, var(--gm-primary-color) 0%, #d4a574 50%, var(--gm-accent-color) 100%);
    color: var(--gm-white);
    border-color: transparent;
    background-size: 200% 200%;
}

.gm-button--gold:hover {
    background-position: 100% 100%;
    color: var(--gm-white);
    box-shadow: var(--gm-shadow-gold);
}

.gm-button--white {
    background-color: var(--gm-white);
    color: var(--gm-secondary-color);
    border-color: var(--gm-white);
}

.gm-button--white:hover {
    background-color: transparent;
    color: var(--gm-white);
}

.gm-button--large {
    padding: 18px 42px;
    font-size: 0.875rem;
    letter-spacing: 3px;
}

.gm-button--small {
    padding: 10px 22px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
}

.gm-button--full {
    display: block;
    width: 100%;
}

.gm-button--rounded {
    border-radius: var(--gm-radius-pill);
}

.gm-button--icon {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}

.gm-button--icon i,
.gm-button--icon svg {
    font-size: 1em;
}

.gm-button[disabled],
.gm-button--disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.gm-button-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


/* ==========================================================================
   5. Forms
   ========================================================================== */

.gm-form-group {
    margin-bottom: 25px;
    position: relative;
}

.gm-form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.gm-form-row .gm-form-group {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-bottom: 0;
}

.gm-form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gm-heading-color);
}

.gm-form-label .required {
    color: var(--gm-error);
    margin-left: 2px;
}

.gm-form-input,
.gm-form-textarea,
.gm-form-select {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-family: var(--gm-body-font);
    font-size: 1rem;
    color: var(--gm-text-color);
    background-color: transparent;
    border: none;
    border-bottom: 2px solid var(--gm-border-color);
    border-radius: 0;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.gm-form-input:focus,
.gm-form-textarea:focus,
.gm-form-select:focus {
    border-bottom-color: var(--gm-primary-color);
    outline: none;
    box-shadow: none;
}

.gm-form-input::-webkit-input-placeholder,
.gm-form-textarea::-webkit-input-placeholder {
    color: var(--gm-muted);
    font-weight: 300;
}

.gm-form-input::-moz-placeholder,
.gm-form-textarea::-moz-placeholder {
    color: var(--gm-muted);
    font-weight: 300;
}

.gm-form-input:-ms-input-placeholder,
.gm-form-textarea:-ms-input-placeholder {
    color: var(--gm-muted);
    font-weight: 300;
}

.gm-form-input::placeholder,
.gm-form-textarea::placeholder {
    color: var(--gm-muted);
    font-weight: 300;
}

/* Bordered variant */
.gm-form-input--bordered,
.gm-form-textarea--bordered,
.gm-form-select--bordered {
    border: 1px solid var(--gm-border-color);
    border-radius: var(--gm-radius);
    padding: 12px 16px;
    background-color: var(--gm-white);
}

.gm-form-input--bordered:focus,
.gm-form-textarea--bordered:focus,
.gm-form-select--bordered:focus {
    border-color: var(--gm-primary-color);
    box-shadow: 0 0 0 3px rgba(194, 145, 95, 0.1);
}

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

.gm-form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    padding-right: 20px;
}

.gm-form-select--bordered {
    background-position: right 16px center;
    padding-right: 40px;
}

/* Validation States */
.gm-form-group--error .gm-form-input,
.gm-form-group--error .gm-form-textarea,
.gm-form-group--error .gm-form-select {
    border-bottom-color: var(--gm-error);
}

.gm-form-group--error .gm-form-input--bordered,
.gm-form-group--error .gm-form-textarea--bordered,
.gm-form-group--error .gm-form-select--bordered {
    border-color: var(--gm-error);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.gm-form-group--success .gm-form-input,
.gm-form-group--success .gm-form-textarea,
.gm-form-group--success .gm-form-select {
    border-bottom-color: var(--gm-success);
}

.gm-form-group--success .gm-form-input--bordered,
.gm-form-group--success .gm-form-textarea--bordered,
.gm-form-group--success .gm-form-select--bordered {
    border-color: var(--gm-success);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.gm-form-error {
    display: block;
    margin-top: 6px;
    font-size: 0.8125rem;
    color: var(--gm-error);
}

.gm-form-hint {
    display: block;
    margin-top: 6px;
    font-size: 0.8125rem;
    color: var(--gm-muted);
}

/* Custom Checkbox */
.gm-checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.gm-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.gm-checkbox__mark {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--gm-border-color);
    border-radius: 3px;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
    margin-top: 2px;
}

.gm-checkbox__mark::after {
    content: '';
    display: none;
    width: 5px;
    height: 10px;
    border: solid var(--gm-white);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.gm-checkbox input[type="checkbox"]:checked ~ .gm-checkbox__mark {
    background-color: var(--gm-primary-color);
    border-color: var(--gm-primary-color);
}

.gm-checkbox input[type="checkbox"]:checked ~ .gm-checkbox__mark::after {
    display: block;
}

.gm-checkbox__label {
    font-size: 0.9375rem;
    line-height: 1.5;
}

/* Custom Radio */
.gm-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.gm-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.gm-radio__mark {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--gm-border-color);
    border-radius: 50%;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
    margin-top: 2px;
}

.gm-radio__mark::after {
    content: '';
    display: none;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gm-white);
}

.gm-radio input[type="radio"]:checked ~ .gm-radio__mark {
    background-color: var(--gm-primary-color);
    border-color: var(--gm-primary-color);
}

.gm-radio input[type="radio"]:checked ~ .gm-radio__mark::after {
    display: block;
}

/* File Upload */
.gm-file-upload {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 40px;
    border: 2px dashed var(--gm-border-color);
    border-radius: var(--gm-radius-lg);
    text-align: center;
    cursor: pointer;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.gm-file-upload:hover {
    border-color: var(--gm-primary-color);
    background-color: rgba(194, 145, 95, 0.03);
}

.gm-file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.gm-file-upload__icon {
    font-size: 2rem;
    color: var(--gm-primary-color);
    margin-bottom: 10px;
}

.gm-file-upload__text {
    font-size: 0.9375rem;
    color: var(--gm-muted);
}

.gm-file-upload__text strong {
    color: var(--gm-primary-color);
}

/* Multi-step Form */
.gm-step-progress {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.gm-step-progress__step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.gm-step-progress__number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gm-border-color);
    color: var(--gm-muted);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.gm-step-progress__label {
    margin-top: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gm-muted);
    white-space: nowrap;
}

.gm-step-progress__line {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 2px;
    background-color: var(--gm-border-color);
    margin: 0 10px;
    margin-bottom: 26px;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.gm-step-progress__step--active .gm-step-progress__number {
    background-color: var(--gm-primary-color);
    color: var(--gm-white);
    box-shadow: 0 0 0 4px rgba(194, 145, 95, 0.2);
}

.gm-step-progress__step--active .gm-step-progress__label {
    color: var(--gm-primary-color);
}

.gm-step-progress__step--completed .gm-step-progress__number {
    background-color: var(--gm-success);
    color: var(--gm-white);
}

.gm-step-progress__step--completed .gm-step-progress__label {
    color: var(--gm-success);
}

.gm-step-progress__line--active {
    background-color: var(--gm-primary-color);
}

.gm-step-content {
    display: none;
}

.gm-step-content--active {
    display: block;
    -webkit-animation: fadeIn 0.3s ease;
    animation: fadeIn 0.3s ease;
}

.gm-step-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--gm-border-color);
}


/* ==========================================================================
   6. Header & Navigation
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--gm-z-header);
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
    padding: 0;
}

.header-top-bar {
    background-color: var(--gm-secondary-color);
    padding: 8px 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-top-bar .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header-top-bar__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}

.header-top-bar__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.header-top-bar a {
    color: rgba(255, 255, 255, 0.7);
}

.header-top-bar a:hover {
    color: var(--gm-primary-color);
}

.header-top-bar__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
}

.header-top-bar__social a {
    font-size: 0.875rem;
}

/* Header Transparent */
.header-transparent {
    background-color: transparent;
}

.header-transparent .header-inner {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Header Scrolled */
.header-scrolled {
    background-color: rgba(26, 26, 26, 0.97);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-scrolled .header-inner {
    border-bottom: none;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Header Solid (for non-hero pages) */
.header-solid {
    background-color: var(--gm-secondary-color);
}

/* Header Inner */
.header-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 0;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

/* Site Branding */
.site-branding {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.site-branding__logo {
    display: block;
    max-height: 45px;
    width: auto;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.header-scrolled .site-branding__logo {
    max-height: 36px;
}

.site-branding__title {
    font-family: var(--gm-heading-font);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gm-white);
    text-decoration: none;
    letter-spacing: 1px;
}

.site-branding__title:hover {
    color: var(--gm-primary-color);
}

.site-branding__title span {
    color: var(--gm-primary-color);
}

/* Primary Navigation */
.primary-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.primary-navigation .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
}

.primary-navigation .menu-item {
    position: relative;
}

.primary-navigation .menu-item > a {
    display: block;
    padding: 10px 15px;
    color: var(--gm-white);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
    position: relative;
}

.primary-navigation .menu-item > a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    right: 15px;
    height: 1px;
    background-color: var(--gm-primary-color);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    -webkit-transform-origin: right;
    transform-origin: right;
}

.primary-navigation .menu-item > a:hover::after,
.primary-navigation .menu-item.current-menu-item > a::after,
.primary-navigation .menu-item.current_page_item > a::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: left;
    transform-origin: left;
}

.primary-navigation .menu-item > a:hover,
.primary-navigation .menu-item.current-menu-item > a,
.primary-navigation .menu-item.current_page_item > a {
    color: var(--gm-primary-color);
}

/* Dropdown Menus */
.primary-navigation .menu-item-has-children > a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.primary-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--gm-white);
    box-shadow: var(--gm-shadow-lg);
    border-top: 2px solid var(--gm-primary-color);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
    z-index: var(--gm-z-dropdown);
    padding: 10px 0;
}

.primary-navigation .menu-item:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.primary-navigation .sub-menu .menu-item > a {
    color: var(--gm-text-color);
    text-transform: none;
    font-size: 0.875rem;
    letter-spacing: 0;
    padding: 8px 20px;
}

.primary-navigation .sub-menu .menu-item > a:hover {
    color: var(--gm-primary-color);
    background-color: var(--gm-bg-light);
}

.primary-navigation .sub-menu .menu-item > a::after {
    display: none;
}

/* Multi-level dropdown */
.primary-navigation .sub-menu .menu-item-has-children > .sub-menu {
    top: 0;
    left: 100%;
}

/* Header CTA */
.header-cta {
    margin-left: 20px;
}

.header-cta .gm-button {
    padding: 10px 24px;
    font-size: 0.75rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: calc(var(--gm-z-overlay) + 1);
}

.mobile-menu-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--gm-white);
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
    position: relative;
}

.mobile-menu-toggle__bar::before,
.mobile-menu-toggle__bar::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--gm-white);
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.mobile-menu-toggle__bar::before {
    top: -7px;
}

.mobile-menu-toggle__bar::after {
    bottom: -7px;
}

/* Active state (X) */
.mobile-menu-toggle.is-active .mobile-menu-toggle__bar {
    background-color: transparent;
}

.mobile-menu-toggle.is-active .mobile-menu-toggle__bar::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

.mobile-menu-toggle.is-active .mobile-menu-toggle__bar::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background-color: var(--gm-secondary-color);
    z-index: var(--gm-z-overlay);
    overflow-y: auto;
    -webkit-transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    padding: 80px 30px 30px;
}

.mobile-navigation.is-open {
    right: 0;
}

.mobile-navigation__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: calc(var(--gm-z-overlay) - 1);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.mobile-navigation__overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.mobile-navigation .menu {
    display: block;
}

.mobile-navigation .menu-item > a {
    display: block;
    padding: 12px 0;
    color: var(--gm-white);
    font-size: 1.125rem;
    font-weight: 400;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.mobile-navigation .menu-item > a:hover {
    color: var(--gm-primary-color);
    padding-left: 10px;
}

.mobile-navigation .sub-menu {
    padding-left: 20px;
}

.mobile-navigation .sub-menu .menu-item > a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.mobile-navigation__cta {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-navigation__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.mobile-navigation__social a {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--gm-white);
    font-size: 0.875rem;
}

.mobile-navigation__social a:hover {
    background-color: var(--gm-primary-color);
    border-color: var(--gm-primary-color);
}


/* ==========================================================================
   7. Footer
   ========================================================================== */

.site-footer {
    background-color: var(--gm-secondary-color);
    color: rgba(255, 255, 255, 0.7);
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-widget__title {
    color: var(--gm-white);
    font-family: var(--gm-heading-font);
    font-size: 1.125rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gm-primary-color);
}

.footer-widget p {
    font-size: 0.9375rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-widget .footer-logo {
    max-height: 40px;
    margin-bottom: 20px;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
    position: relative;
    padding-left: 0;
}

.footer-widget ul li a:hover {
    color: var(--gm-primary-color);
    padding-left: 5px;
}

.footer-widget .contact-info li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-widget .contact-info li i {
    color: var(--gm-primary-color);
    margin-top: 4px;
    min-width: 16px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer-bottom__copyright {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom__copyright a {
    color: var(--gm-primary-color);
}

/* Footer Navigation */
.footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
}

.footer-nav a:hover {
    color: var(--gm-primary-color);
}

/* Footer Social */
.footer-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.footer-social a:hover {
    background-color: var(--gm-primary-color);
    border-color: var(--gm-primary-color);
    color: var(--gm-white);
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background-color: var(--gm-primary-color);
    color: var(--gm-white);
    border: none;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1.125rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
    z-index: var(--gm-z-sticky);
    box-shadow: var(--gm-shadow-gold);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--gm-accent-color);
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}


/* ==========================================================================
   8. Hero Section
   ========================================================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--gm-secondary-color);
}

.hero-section__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
}

.hero-section__video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -o-object-fit: cover;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content__label {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gm-primary-color);
    margin-bottom: 20px;
    padding: 8px 20px;
    border: 1px solid rgba(194, 145, 95, 0.4);
}

.hero-content__title {
    font-family: var(--gm-heading-font);
    font-size: 4rem;
    font-weight: 700;
    font-style: italic;
    color: var(--gm-white);
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content__title span {
    color: var(--gm-primary-color);
    font-style: normal;
}

.hero-content__subtitle {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
}

.hero-content__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.hero-scroll-indicator__text {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.hero-scroll-indicator__mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-indicator__mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 3px;
    height: 8px;
    margin-left: -1.5px;
    background-color: var(--gm-primary-color);
    border-radius: 2px;
    -webkit-animation: scrollBounce 2s infinite;
    animation: scrollBounce 2s infinite;
}

@-webkit-keyframes scrollBounce {
    0%, 100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
    50% { opacity: 0.3; -webkit-transform: translateY(8px); transform: translateY(8px); }
}

@keyframes scrollBounce {
    0%, 100% { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
    50% { opacity: 0.3; -webkit-transform: translateY(8px); transform: translateY(8px); }
}

/* Hero - Smaller Variant (subpages) */
.hero-section--small {
    min-height: 50vh;
}

.hero-section--small .hero-content__title {
    font-size: 3rem;
}


/* ==========================================================================
   9. Services Section
   ========================================================================== */

.services-section {
    padding-top: var(--gm-section-padding);
    padding-bottom: var(--gm-section-padding);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gm-gap);
}

.service-card {
    text-align: center;
    padding: 50px 35px;
    border: 1px solid var(--gm-border-color);
    border-radius: var(--gm-radius);
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gm-primary-color), var(--gm-accent-color));
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.service-card:hover {
    border-color: var(--gm-primary-color);
    box-shadow: var(--gm-shadow);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

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

.service-card__icon {
    font-size: 2.5rem;
    color: var(--gm-primary-color);
    margin-bottom: 25px;
    line-height: 1;
}

.service-card__title {
    font-family: var(--gm-heading-font);
    font-size: 1.375rem;
    color: var(--gm-heading-color);
    margin-bottom: 15px;
}

.service-card__description {
    font-size: 0.9375rem;
    color: var(--gm-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__link {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gm-primary-color);
}

.service-card__link::after {
    content: ' \2192';
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
    display: inline-block;
}

.service-card__link:hover::after {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}


/* ==========================================================================
   10. Models Grid
   ========================================================================== */

.models-section {
    padding-top: var(--gm-section-padding);
    padding-bottom: var(--gm-section-padding);
}

/* Filter Bar */
.models-filter-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gm-muted);
    background: none;
    border: 1px solid var(--gm-border-color);
    border-radius: var(--gm-radius-pill);
    cursor: pointer;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.filter-btn:hover {
    color: var(--gm-primary-color);
    border-color: var(--gm-primary-color);
}

.filter-btn.is-active,
.filter-btn--active {
    background-color: var(--gm-primary-color);
    color: var(--gm-white);
    border-color: var(--gm-primary-color);
}

/* Models Grid */
.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Model Card */
.model-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--gm-radius);
    cursor: pointer;
    aspect-ratio: 3 / 4;
}

.model-card__image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.model-card__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.model-card:hover .model-card__image {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.model-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.model-card:hover .model-card__overlay {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.model-card__name {
    font-family: var(--gm-heading-font);
    font-size: 1.25rem;
    color: var(--gm-white);
    margin-bottom: 4px;
    font-weight: 600;
}

.model-card__category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gm-primary-color);
    font-weight: 500;
}

.model-card__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    margin-top: 8px;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.7);
}

.model-card__badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--gm-primary-color);
    color: var(--gm-white);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 2px;
    z-index: 2;
}

/* Always visible overlay variant */
.model-card--always-visible .model-card__overlay {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

/* Models load more */
.models-load-more {
    text-align: center;
    margin-top: 50px;
}

/* Models count */
.models-count {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gm-muted);
    margin-top: 20px;
}


/* ==========================================================================
   11. Pricing Section
   ========================================================================== */

.pricing-section {
    padding-top: var(--gm-section-padding);
    padding-bottom: var(--gm-section-padding);
}

.pricing-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: var(--gm-gap);
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: var(--gm-white);
    border: 1px solid var(--gm-border-color);
    border-radius: var(--gm-radius-lg);
    padding: 40px 35px;
    width: 100%;
    max-width: 380px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 300px;
    flex: 1 1 300px;
    position: relative;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.pricing-card:hover {
    box-shadow: var(--gm-shadow-lg);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

/* Featured Card */
.pricing-card--featured {
    border-color: var(--gm-primary-color);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    box-shadow: var(--gm-shadow-lg);
    z-index: 2;
}

.pricing-card--featured:hover {
    -webkit-transform: scale(1.05) translateY(-5px);
    transform: scale(1.05) translateY(-5px);
}

/* Badge / Ribbon */
.pricing-card__badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background-color: var(--gm-primary-color);
    color: var(--gm-white);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 0 0 var(--gm-radius) var(--gm-radius);
}

.pricing-card__name {
    font-family: var(--gm-heading-font);
    font-size: 1.375rem;
    color: var(--gm-heading-color);
    margin-bottom: 10px;
}

.pricing-card__description {
    font-size: 0.9375rem;
    color: var(--gm-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Price */
.pricing-card__price {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--gm-border-color);
}

.pricing-card__price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gm-primary-color);
    vertical-align: super;
}

.pricing-card__price-amount {
    font-family: var(--gm-heading-font);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gm-primary-color);
    line-height: 1;
}

.pricing-card__price-duration {
    font-size: 0.875rem;
    color: var(--gm-muted);
    margin-left: 4px;
}

/* Features List */
.pricing-card__features {
    margin-bottom: 30px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.pricing-card__features li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--gm-text-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__features li::before {
    content: '\2713';
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    background-color: rgba(194, 145, 95, 0.1);
    color: var(--gm-primary-color);
    border-radius: 50%;
    margin-top: 2px;
}

.pricing-card__features li.disabled {
    color: var(--gm-muted);
    text-decoration: line-through;
}

.pricing-card__features li.disabled::before {
    content: '\2717';
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--gm-muted);
}

/* CTA */
.pricing-card__cta {
    margin-top: auto;
}

.pricing-card__cta .gm-button {
    width: 100%;
}

/* Toggle: Monthly / Yearly */
.pricing-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.pricing-toggle__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gm-muted);
}

.pricing-toggle__label.is-active {
    color: var(--gm-heading-color);
}

.pricing-toggle__switch {
    position: relative;
    width: 50px;
    height: 26px;
    background-color: var(--gm-border-color);
    border-radius: 13px;
    cursor: pointer;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.pricing-toggle__switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background-color: var(--gm-white);
    border-radius: 50%;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
    box-shadow: var(--gm-shadow-sm);
}

.pricing-toggle__switch.is-active {
    background-color: var(--gm-primary-color);
}

.pricing-toggle__switch.is-active::after {
    left: 27px;
}

.pricing-toggle__save {
    background-color: var(--gm-success);
    color: var(--gm-white);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: var(--gm-radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ==========================================================================
   12. Testimonials Section
   ========================================================================== */

.testimonials-section {
    background-color: var(--gm-secondary-color);
    padding-top: var(--gm-section-padding);
    padding-bottom: var(--gm-section-padding);
    overflow: hidden;
}

.testimonials-section .section-title,
.testimonials-section .section-label {
    color: var(--gm-white);
}

.testimonials-carousel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    scroll-snap-align: center;
    min-width: 400px;
    max-width: 500px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--gm-radius-lg);
    padding: 35px;
}

.testimonial-card__rating {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-card__rating i,
.testimonial-card__rating .star {
    color: #f5c518;
    font-size: 0.875rem;
}

.testimonial-card__quote {
    font-family: var(--gm-heading-font);
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    position: relative;
}

.testimonial-card__quote::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--gm-primary-color);
    line-height: 1;
    display: block;
    margin-bottom: 10px;
    font-family: var(--gm-heading-font);
}

.testimonial-card__author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}

.testimonial-card__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    border: 2px solid var(--gm-primary-color);
}

.testimonial-card__name {
    font-weight: 600;
    color: var(--gm-white);
    font-size: 0.9375rem;
}

.testimonial-card__role {
    font-size: 0.8125rem;
    color: var(--gm-primary-color);
}

/* Carousel Navigation */
.testimonials-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
}

.testimonials-nav__arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: none;
    color: var(--gm-white);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.testimonials-nav__arrow:hover {
    background-color: var(--gm-primary-color);
    border-color: var(--gm-primary-color);
}

.testimonials-nav__dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}

.testimonials-nav__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
    padding: 0;
}

.testimonials-nav__dot.is-active {
    background-color: var(--gm-primary-color);
    width: 24px;
    border-radius: 4px;
}


/* ==========================================================================
   13. CTA Section
   ========================================================================== */

.cta-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.cta-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9) 0%, rgba(26, 26, 26, 0.75) 100%);
}

.cta-section__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-section__title {
    font-family: var(--gm-heading-font);
    font-size: 2.5rem;
    color: var(--gm-white);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-section__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.8;
    font-weight: 300;
}

.cta-section__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 15px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* Decorative gold line */
.cta-section__divider {
    width: 60px;
    height: 2px;
    background-color: var(--gm-primary-color);
    margin: 0 auto 25px;
}


/* ==========================================================================
   14. FAQ Section
   ========================================================================== */

.faq-section {
    padding-top: var(--gm-section-padding);
    padding-bottom: var(--gm-section-padding);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gm-border-color);
}

.faq-item:first-child {
    border-top: 1px solid var(--gm-border-color);
}

.faq-item details {
    overflow: hidden;
}

.faq-item summary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 0;
    cursor: pointer;
    list-style: none;
    font-family: var(--gm-heading-font);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gm-heading-color);
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-family: var(--gm-body-font);
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gm-primary-color);
    min-width: 24px;
    text-align: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}

.faq-item details[open] summary::after {
    content: '\2212';
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.faq-item summary:hover {
    color: var(--gm-primary-color);
}

.faq-item details[open] summary {
    color: var(--gm-primary-color);
}

.faq-item__answer {
    padding-bottom: 20px;
    font-size: 0.9375rem;
    line-height: 1.8;
    color: var(--gm-text-color);
    -webkit-animation: fadeInDown 0.3s ease;
    animation: fadeInDown 0.3s ease;
}

@-webkit-keyframes fadeInDown {
    from { opacity: 0; -webkit-transform: translateY(-10px); transform: translateY(-10px); }
    to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; -webkit-transform: translateY(-10px); transform: translateY(-10px); }
    to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}


/* ==========================================================================
   15. Single Model Profile
   ========================================================================== */

/* Model Hero */
.model-hero {
    position: relative;
    min-height: 60vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    background-size: cover;
    background-position: center top;
    padding-bottom: 60px;
}

.model-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
}

.model-hero__content {
    position: relative;
    z-index: 2;
}

.model-hero__name {
    font-family: var(--gm-heading-font);
    font-size: 3.5rem;
    color: var(--gm-white);
    margin-bottom: 10px;
}

.model-hero__tagline {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.model-hero__badges {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* Model Profile Layout */
.model-profile {
    padding: var(--gm-section-padding) 0;
}

.model-profile__layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
}

/* Portfolio Gallery */
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.portfolio-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--gm-radius);
    cursor: pointer;
    aspect-ratio: 3 / 4;
}

.portfolio-gallery__item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
}

.portfolio-gallery__item:hover img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
}

.portfolio-gallery__item::after {
    content: '\f065';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    color: var(--gm-white);
    font-size: 1.25rem;
    opacity: 0;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
    z-index: 2;
}

.portfolio-gallery__item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    opacity: 0;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.portfolio-gallery__item:hover::after,
.portfolio-gallery__item:hover::before {
    opacity: 1;
}

/* Featured / Larger gallery item */
.portfolio-gallery__item--featured {
    grid-column: span 2;
    grid-row: span 2;
}

/* Model Details Sidebar Card */
.model-details-card {
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    background-color: var(--gm-white);
    border: 1px solid var(--gm-border-color);
    border-radius: var(--gm-radius-lg);
    overflow: hidden;
}

.model-details-card__header {
    background-color: var(--gm-secondary-color);
    padding: 25px;
    text-align: center;
}

.model-details-card__header h3 {
    color: var(--gm-white);
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.model-details-card__body {
    padding: 25px;
}

/* Measurements */
.model-measurements {
    width: 100%;
}

.model-measurements__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gm-border-color);
    font-size: 0.9375rem;
}

.model-measurements__row:last-child {
    border-bottom: none;
}

.model-measurements__label {
    color: var(--gm-muted);
    font-weight: 400;
}

.model-measurements__value {
    color: var(--gm-heading-color);
    font-weight: 600;
}

/* Model Badge */
.model-badge {
    display: inline-block;
    padding: 5px 14px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    background-color: rgba(194, 145, 95, 0.15);
    color: var(--gm-primary-color);
}

.model-badge--premium {
    background: linear-gradient(135deg, var(--gm-primary-color), var(--gm-accent-color));
    color: var(--gm-white);
}

.model-badge--new {
    background-color: rgba(46, 204, 113, 0.15);
    color: var(--gm-success);
}

.model-badge--featured {
    background-color: rgba(243, 156, 18, 0.15);
    color: var(--gm-warning);
}

/* Related Models */
.related-models {
    padding: var(--gm-section-padding) 0;
    border-top: 1px solid var(--gm-border-color);
}

.related-models__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Share Buttons */
.share-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.share-buttons__label {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gm-heading-color);
    margin-right: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.share-buttons a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gm-border-color);
    border-radius: 50%;
    color: var(--gm-text-color);
    font-size: 0.875rem;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.share-buttons a:hover {
    background-color: var(--gm-primary-color);
    border-color: var(--gm-primary-color);
    color: var(--gm-white);
}


/* ==========================================================================
   16. Model Dashboard
   ========================================================================== */

.dashboard-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    background-color: var(--gm-secondary-color);
    padding: 30px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.dashboard-sidebar__user {
    text-align: center;
    padding: 0 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

.dashboard-sidebar__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    border: 3px solid var(--gm-primary-color);
    margin-bottom: 12px;
}

.dashboard-sidebar__name {
    color: var(--gm-white);
    font-size: 1rem;
    font-weight: 600;
}

.dashboard-sidebar__role {
    color: var(--gm-primary-color);
    font-size: 0.8125rem;
}

.dashboard-nav li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
    border-left: 3px solid transparent;
}

.dashboard-nav li a:hover,
.dashboard-nav li a.is-active {
    color: var(--gm-white);
    background-color: rgba(255, 255, 255, 0.05);
    border-left-color: var(--gm-primary-color);
}

.dashboard-nav li a i {
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

/* Dashboard Main Content */
.dashboard-content {
    padding: 30px;
    background-color: var(--gm-bg-light);
}

.dashboard-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 30px;
}

.dashboard-header__title {
    font-size: 1.5rem;
    color: var(--gm-heading-color);
}

/* Tab Navigation */
.dashboard-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 2px solid var(--gm-border-color);
    margin-bottom: 30px;
    gap: 0;
}

.dashboard-tab {
    padding: 12px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gm-muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
}

.dashboard-tab:hover {
    color: var(--gm-heading-color);
}

.dashboard-tab.is-active {
    color: var(--gm-primary-color);
    border-bottom-color: var(--gm-primary-color);
}

/* Overview / Stats Cards */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background-color: var(--gm-white);
    border-radius: var(--gm-radius-lg);
    padding: 25px;
    box-shadow: var(--gm-shadow-sm);
}

.stat-card__label {
    font-size: 0.8125rem;
    color: var(--gm-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stat-card__value {
    font-family: var(--gm-heading-font);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gm-heading-color);
}

.stat-card__change {
    font-size: 0.8125rem;
    margin-top: 5px;
}

.stat-card__change--up {
    color: var(--gm-success);
}

.stat-card__change--down {
    color: var(--gm-error);
}

/* Dashboard Cards */
.dashboard-card {
    background-color: var(--gm-white);
    border-radius: var(--gm-radius-lg);
    box-shadow: var(--gm-shadow-sm);
    margin-bottom: 20px;
}

.dashboard-card__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid var(--gm-border-color);
}

.dashboard-card__title {
    font-size: 1.125rem;
    margin-bottom: 0;
}

.dashboard-card__body {
    padding: 25px;
}

/* Portfolio Grid Management */
.portfolio-manage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.portfolio-manage-item {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: var(--gm-radius);
    overflow: hidden;
}

.portfolio-manage-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.portfolio-manage-item__actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.portfolio-manage-item:hover .portfolio-manage-item__actions {
    opacity: 1;
}

.portfolio-manage-item__btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0.875rem;
    cursor: pointer;
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
    border: none;
}

.portfolio-manage-item__btn--delete {
    background-color: var(--gm-error);
    color: var(--gm-white);
}

.portfolio-manage-item__btn--edit {
    background-color: var(--gm-white);
    color: var(--gm-heading-color);
}

/* Status Notices */
.status-notice {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: var(--gm-radius);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.status-notice--pending {
    background-color: rgba(243, 156, 18, 0.1);
    border-left: 4px solid var(--gm-warning);
    color: #c77d10;
}

.status-notice--approved {
    background-color: rgba(46, 204, 113, 0.1);
    border-left: 4px solid var(--gm-success);
    color: #1e8449;
}

.status-notice--rejected {
    background-color: rgba(231, 76, 60, 0.1);
    border-left: 4px solid var(--gm-error);
    color: #c0392b;
}

.status-notice--info {
    background-color: rgba(52, 152, 219, 0.1);
    border-left: 4px solid var(--gm-info);
    color: #2874a6;
}


/* ==========================================================================
   17. Registration Form
   ========================================================================== */

.registration-section {
    padding-top: var(--gm-section-padding);
    padding-bottom: var(--gm-section-padding);
    background-color: var(--gm-bg-light);
}

.registration-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--gm-white);
    border-radius: var(--gm-radius-lg);
    box-shadow: var(--gm-shadow);
    overflow: hidden;
}

.registration-card__header {
    background-color: var(--gm-secondary-color);
    padding: 35px;
    text-align: center;
}

.registration-card__header h2 {
    color: var(--gm-white);
    margin-bottom: 10px;
}

.registration-card__header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.registration-card__body {
    padding: 40px;
}

/* Wizard Step Indicators */
.registration-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px;
    counter-reset: step;
}

.registration-step {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
}

.registration-step__number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    background-color: var(--gm-border-color);
    color: var(--gm-muted);
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.registration-step__text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gm-muted);
}

.registration-step--active .registration-step__number {
    background-color: var(--gm-primary-color);
    color: var(--gm-white);
}

.registration-step--active .registration-step__text {
    color: var(--gm-heading-color);
}

.registration-step--completed .registration-step__number {
    background-color: var(--gm-success);
    color: var(--gm-white);
}

.registration-step--completed .registration-step__number::after {
    content: '\2713';
}

.registration-step__connector {
    width: 50px;
    height: 2px;
    background-color: var(--gm-border-color);
    margin: 0 10px;
}

.registration-step--completed + .registration-step__connector,
.registration-step__connector--active {
    background-color: var(--gm-primary-color);
}

/* Registration Progress Bar */
.registration-progress {
    height: 4px;
    background-color: var(--gm-border-color);
    border-radius: 2px;
    margin-bottom: 40px;
    overflow: hidden;
}

.registration-progress__bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gm-primary-color), var(--gm-accent-color));
    border-radius: 2px;
    -webkit-transition: width 0.5s ease;
    transition: width 0.5s ease;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--gm-border-color);
}

.benefit-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.benefit-item__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: rgba(194, 145, 95, 0.1);
    color: var(--gm-primary-color);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 1rem;
}

.benefit-item__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gm-heading-color);
    margin-bottom: 4px;
}

.benefit-item__text {
    font-size: 0.8125rem;
    color: var(--gm-muted);
    line-height: 1.6;
}


/* ==========================================================================
   18. Blog Styles
   ========================================================================== */

/* Post Cards Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gm-gap);
}

.post-card {
    background-color: var(--gm-white);
    border-radius: var(--gm-radius-lg);
    overflow: hidden;
    box-shadow: var(--gm-shadow-sm);
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.post-card:hover {
    box-shadow: var(--gm-shadow);
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}

.post-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.post-card__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: transform 0.5s ease;
}

.post-card:hover .post-card__image img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.post-card__category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--gm-primary-color);
    color: var(--gm-white);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 2px;
}

.post-card__body {
    padding: 25px;
}

.post-card__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    font-size: 0.8125rem;
    color: var(--gm-muted);
    margin-bottom: 12px;
}

.post-card__meta a {
    color: var(--gm-muted);
}

.post-card__meta a:hover {
    color: var(--gm-primary-color);
}

.post-card__title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.post-card__title a {
    color: var(--gm-heading-color);
}

.post-card__title a:hover {
    color: var(--gm-primary-color);
}

.post-card__excerpt {
    font-size: 0.9375rem;
    color: var(--gm-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

.post-card__readmore {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gm-primary-color);
}

.post-card__readmore::after {
    content: ' \2192';
    display: inline-block;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}

.post-card__readmore:hover::after {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
}

/* Single Post */
.single-post__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.single-post__title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.single-post__meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
    color: var(--gm-muted);
    font-size: 0.875rem;
}

.single-post__featured-image {
    margin-bottom: 40px;
    border-radius: var(--gm-radius-lg);
    overflow: hidden;
}

.single-post__content {
    max-width: 800px;
    margin: 0 auto;
}

.single-post__content p {
    font-size: 1.0625rem;
    line-height: 1.9;
    margin-bottom: 1.5em;
}

.single-post__content h2 {
    margin-top: 1.5em;
}

.single-post__content h3 {
    margin-top: 1.25em;
}

.single-post__content ul,
.single-post__content ol {
    margin-bottom: 1.5em;
    padding-left: 1.5em;
}

.single-post__content ul {
    list-style-type: disc;
}

.single-post__content ol {
    list-style-type: decimal;
}

.single-post__content li {
    margin-bottom: 0.5em;
    line-height: 1.8;
}

/* Comments */
.comments-section {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--gm-border-color);
}

.comment-list {
    margin-bottom: 40px;
}

.comment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid var(--gm-border-color);
}

.comment__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.comment__author {
    font-weight: 600;
    color: var(--gm-heading-color);
}

.comment__date {
    font-size: 0.8125rem;
    color: var(--gm-muted);
}

.comment__text {
    margin-top: 8px;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.comment__reply {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gm-primary-color);
    margin-top: 8px;
    display: inline-block;
}

.comment .children {
    margin-left: 40px;
}

/* Sidebar Widgets */
.sidebar .widget {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--gm-border-color);
}

.sidebar .widget:last-child {
    border-bottom: none;
}

.sidebar .widget-title {
    font-size: 1.125rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.sidebar .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--gm-primary-color);
}


/* ==========================================================================
   19. Page Styles
   ========================================================================== */

/* Page Header */
.page-header {
    background-color: var(--gm-secondary-color);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header__title {
    font-family: var(--gm-heading-font);
    font-size: 2.5rem;
    color: var(--gm-white);
    margin-bottom: 10px;
}

.page-header__subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 15px 0;
    font-size: 0.8125rem;
    color: var(--gm-muted);
    background-color: var(--gm-bg-light);
    border-bottom: 1px solid var(--gm-border-color);
}

.breadcrumbs a {
    color: var(--gm-muted);
}

.breadcrumbs a:hover {
    color: var(--gm-primary-color);
}

.breadcrumbs .separator {
    margin: 0 8px;
    color: var(--gm-border-color);
}

.breadcrumbs .current {
    color: var(--gm-heading-color);
    font-weight: 500;
}

/* 404 Page */
.error-404 {
    text-align: center;
    padding: 100px 0;
}

.error-404__number {
    font-family: var(--gm-heading-font);
    font-size: 8rem;
    font-weight: 700;
    color: var(--gm-primary-color);
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.3;
}

.error-404__title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.error-404__text {
    font-size: 1.0625rem;
    color: var(--gm-muted);
    max-width: 500px;
    margin: 0 auto 30px;
}

/* Search Results */
.search-results .search-form {
    max-width: 600px;
    margin: 0 auto 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.search-results .search-form input[type="search"] {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--gm-border-color);
    border-radius: var(--gm-radius) 0 0 var(--gm-radius);
    font-size: 1rem;
    outline: none;
}

.search-results .search-form input[type="search"]:focus {
    border-color: var(--gm-primary-color);
}

.search-results .search-form button {
    padding: 14px 24px;
    background-color: var(--gm-primary-color);
    color: var(--gm-white);
    border: none;
    border-radius: 0 var(--gm-radius) var(--gm-radius) 0;
    cursor: pointer;
    font-size: 1rem;
}

/* Archive */
.archive-header {
    margin-bottom: 40px;
}

.archive-header__title {
    font-size: 2rem;
    margin-bottom: 5px;
}

.archive-header__description {
    color: var(--gm-muted);
}

/* Pagination */
.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--gm-border-color);
    border-radius: var(--gm-radius);
    color: var(--gm-text-color);
    -webkit-transition: var(--gm-transition);
    transition: var(--gm-transition);
}

.pagination a:hover {
    border-color: var(--gm-primary-color);
    color: var(--gm-primary-color);
}

.pagination .current {
    background-color: var(--gm-primary-color);
    border-color: var(--gm-primary-color);
    color: var(--gm-white);
}


/* ==========================================================================
   20. Utility Classes
   ========================================================================== */

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Colors */
.text-primary { color: var(--gm-primary-color); }
.text-secondary { color: var(--gm-secondary-color); }
.text-accent { color: var(--gm-accent-color); }
.text-success { color: var(--gm-success); }
.text-error { color: var(--gm-error); }
.text-warning { color: var(--gm-warning); }
.text-info { color: var(--gm-info); }

/* Background Colors */
.bg-primary { background-color: var(--gm-primary-color); }
.bg-secondary { background-color: var(--gm-secondary-color); }
.bg-light { background-color: var(--gm-bg-light); }
.bg-dark { background-color: var(--gm-bg-dark); }
.bg-white { background-color: var(--gm-white); }

/* Spacing */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 60px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 60px; }
.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }
.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: -webkit-box; display: -ms-flexbox; display: flex; }
.d-inline-flex { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; }
.d-inline-block { display: inline-block; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Position */
.relative { position: relative; }

/* Width */
.w-100 { width: 100%; }

/* Screen Reader Only */
.sr-only,
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only-focusable:focus,
.screen-reader-text:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: inherit;
}

/* WordPress Core Alignment */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1em;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
}

.wp-caption {
    max-width: 100%;
    margin-bottom: 1.5em;
}

.wp-caption-text {
    font-size: 0.8125rem;
    color: var(--gm-muted);
    text-align: center;
    padding-top: 8px;
}


/* ==========================================================================
   21. Preloader
   ========================================================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gm-secondary-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: var(--gm-z-preloader);
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(194, 145, 95, 0.2);
    border-top-color: var(--gm-primary-color);
    border-radius: 50%;
    -webkit-animation: spin 0.8s linear infinite;
    animation: spin 0.8s linear infinite;
}

.preloader__logo {
    position: absolute;
    max-height: 30px;
}

/* Alternative: Pulse loader */
.preloader--pulse .preloader__dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gm-primary-color);
    margin: 0 5px;
    -webkit-animation: pulse 1.4s ease-in-out infinite;
    animation: pulse 1.4s ease-in-out infinite;
}

.preloader--pulse .preloader__dot:nth-child(2) {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.preloader--pulse .preloader__dot:nth-child(3) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}


/* ==========================================================================
   22. Animations & Transitions
   ========================================================================== */

@-webkit-keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

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

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

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

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

@-webkit-keyframes slideInRight {
    from { -webkit-transform: translateX(100%); transform: translateX(100%); }
    to { -webkit-transform: translateX(0); transform: translateX(0); }
}

@keyframes slideInRight {
    from { -webkit-transform: translateX(100%); transform: translateX(100%); }
    to { -webkit-transform: translateX(0); transform: translateX(0); }
}

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

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

@-webkit-keyframes pulse {
    0%, 80%, 100% { -webkit-transform: scale(0.6); transform: scale(0.6); opacity: 0.5; }
    40% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
}

@keyframes pulse {
    0%, 80%, 100% { -webkit-transform: scale(0.6); transform: scale(0.6); opacity: 0.5; }
    40% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
}

@-webkit-keyframes bounce {
    0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
    50% { -webkit-transform: translateY(-10px); transform: translateY(-10px); }
}

@keyframes bounce {
    0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
    50% { -webkit-transform: translateY(-10px); transform: translateY(-10px); }
}

@-webkit-keyframes spin {
    to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@keyframes spin {
    to { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@-webkit-keyframes scaleIn {
    from { -webkit-transform: scale(0.9); transform: scale(0.9); opacity: 0; }
    to { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
}

@keyframes scaleIn {
    from { -webkit-transform: scale(0.9); transform: scale(0.9); opacity: 0; }
    to { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
}

@-webkit-keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll[data-animate="fadeIn"] {
    opacity: 0;
}

.animate-on-scroll[data-animate="fadeInUp"] {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}

.animate-on-scroll[data-animate="fadeInLeft"] {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
}

.animate-on-scroll[data-animate="fadeInRight"] {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
}

.animate-on-scroll[data-animate="scaleIn"] {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    -webkit-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
}

/* Stagger Delay Classes */
.animate-delay-1 { -webkit-transition-delay: 0.1s; transition-delay: 0.1s; }
.animate-delay-2 { -webkit-transition-delay: 0.2s; transition-delay: 0.2s; }
.animate-delay-3 { -webkit-transition-delay: 0.3s; transition-delay: 0.3s; }
.animate-delay-4 { -webkit-transition-delay: 0.4s; transition-delay: 0.4s; }
.animate-delay-5 { -webkit-transition-delay: 0.5s; transition-delay: 0.5s; }
.animate-delay-6 { -webkit-transition-delay: 0.6s; transition-delay: 0.6s; }

/* Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        -webkit-animation-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        -webkit-transition-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}


/* ==========================================================================
   23. Responsive / Media Queries
   ========================================================================== */

/* Large Desktop: 1400px+ */
@media (min-width: 1400px) {
    .container-wide {
        padding-left: 40px;
        padding-right: 40px;
    }
}

/* Desktop down: up to 1200px */
@media (max-width: 1200px) {
    .models-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-widgets {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card--featured {
        -webkit-transform: none;
        transform: none;
    }

    .pricing-card--featured:hover {
        -webkit-transform: translateY(-5px);
        transform: translateY(-5px);
    }

    .related-models__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet: up to 992px */
@media (max-width: 992px) {
    :root {
        --gm-section-padding: 60px;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Header - switch to mobile */
    .primary-navigation,
    .header-cta,
    .header-top-bar {
        display: none;
    }

    .mobile-menu-toggle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    /* Hero */
    .hero-content__title {
        font-size: 3rem;
    }

    .hero-content__subtitle {
        font-size: 1rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Models */
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Pricing */
    .pricing-grid {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .pricing-card {
        max-width: 450px;
    }

    /* Testimonials */
    .testimonial-card {
        min-width: 320px;
    }

    /* Model Profile */
    .model-profile__layout {
        grid-template-columns: 1fr;
    }

    .model-details-card {
        position: static;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }

    .model-hero__name {
        font-size: 2.5rem;
    }

    /* Dashboard */
    .dashboard-layout {
        grid-template-columns: 1fr;
    }

    .dashboard-sidebar {
        display: none;
    }

    .portfolio-manage-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Blog */
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Registration */
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Small: up to 768px */
@media (max-width: 768px) {
    :root {
        --gm-section-padding: 50px;
        --gm-gap: 20px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .section-title {
        font-size: 1.75rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Hero */
    .hero-section {
        min-height: 80vh;
    }

    .hero-content__title {
        font-size: 2.5rem;
    }

    .hero-content__label {
        font-size: 0.6875rem;
        letter-spacing: 3px;
    }

    .hero-section--small {
        min-height: 40vh;
    }

    .hero-section--small .hero-content__title {
        font-size: 2rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 35px 25px;
    }

    /* Footer */
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-nav {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    /* CTA */
    .cta-section {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .cta-section__title {
        font-size: 2rem;
    }

    /* Filter Bar */
    .models-filter-bar {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    /* Form Rows */
    .gm-form-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    /* Single Post */
    .single-post__title {
        font-size: 2rem;
    }

    /* Page Header */
    .page-header {
        padding: 100px 0 40px;
    }

    .page-header__title {
        font-size: 2rem;
    }

    /* Error 404 */
    .error-404__number {
        font-size: 5rem;
    }

    /* Registration steps */
    .registration-step__text {
        display: none;
    }

    .registration-step__connector {
        width: 30px;
    }

    .gm-step-progress__label {
        display: none;
    }

    /* Dashboard */
    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .dashboard-tabs {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .dashboard-tabs::-webkit-scrollbar {
        display: none;
    }

    .dashboard-tab {
        white-space: nowrap;
        padding: 12px 16px;
        font-size: 0.8125rem;
    }

    .portfolio-manage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: up to 576px */
@media (max-width: 576px) {
    :root {
        --gm-section-padding: 40px;
        --gm-gap: 15px;
    }

    html {
        font-size: 15px;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }

    .container,
    .container-wide,
    .container-narrow,
    .container-full {
        padding-left: 15px;
        padding-right: 15px;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Buttons */
    .gm-button {
        padding: 12px 24px;
        font-size: 0.75rem;
    }

    .gm-button--large {
        padding: 14px 30px;
        font-size: 0.8125rem;
    }

    .gm-button-group {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
    }

    .gm-button-group .gm-button {
        width: 100%;
    }

    /* Hero */
    .hero-section {
        min-height: 90vh;
    }

    .hero-content__title {
        font-size: 2rem;
    }

    .hero-content__subtitle {
        font-size: 0.9375rem;
    }

    .hero-content__actions {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .hero-content__actions .gm-button {
        width: 100%;
        max-width: 280px;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Models Grid */
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .model-card__overlay {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        padding: 20px 12px 12px;
    }

    .model-card__name {
        font-size: 1rem;
    }

    .model-card__category {
        font-size: 0.625rem;
    }

    /* Testimonials */
    .testimonial-card {
        min-width: 280px;
        padding: 25px;
    }

    .testimonial-card__quote {
        font-size: 1rem;
    }

    /* Model profile */
    .portfolio-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .portfolio-gallery__item--featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .model-hero {
        min-height: 50vh;
    }

    .model-hero__name {
        font-size: 2rem;
    }

    /* Blog */
    .posts-grid {
        grid-template-columns: 1fr;
    }

    .single-post__title {
        font-size: 1.75rem;
    }

    .single-post__meta {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 5px;
    }

    .comment {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
    }

    .comment .children {
        margin-left: 20px;
    }

    /* Registration */
    .registration-card__body {
        padding: 25px;
    }

    .registration-card__header {
        padding: 25px;
    }

    /* Back to top */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    /* FAQ */
    .faq-item summary {
        font-size: 1rem;
        padding: 16px 0;
    }

    /* Mobile navigation full width */
    .mobile-navigation {
        max-width: 100%;
    }

    /* Related models */
    .related-models__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Share buttons */
    .share-buttons {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    /* CTA */
    .cta-section__title {
        font-size: 1.75rem;
    }

    .cta-section__description {
        font-size: 1rem;
    }

    /* Pagination */
    .pagination {
        gap: 3px;
    }

    .pagination a,
    .pagination span {
        min-width: 34px;
        height: 34px;
        font-size: 0.8125rem;
    }
}

/* Very small phones: up to 380px */
@media (max-width: 380px) {
    .hero-content__title {
        font-size: 1.75rem;
    }

    .models-grid {
        grid-template-columns: 1fr;
    }

    .gm-step-progress__number {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-content__title {
        font-size: 2rem;
    }
}

/* Print Styles */
@media print {
    .site-header,
    .site-footer,
    .mobile-navigation,
    .mobile-menu-toggle,
    .back-to-top,
    .preloader,
    .hero-scroll-indicator {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
        font-size: 12pt;
    }

    a {
        color: #000;
        text-decoration: underline;
    }

    .container,
    .container-wide,
    .container-narrow {
        max-width: 100%;
        padding: 0;
    }

    .section {
        padding: 20px 0;
    }

    img {
        max-width: 100% !important;
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }

    p, blockquote {
        orphans: 3;
        widows: 3;
    }
}
