/*
Theme Name: Kafila Sisters
Theme URI: https://kafilasisters.com
Description: Custom WordPress theme for Kafila Sisters - Women-only Umrah travel packages. Matching travelagency.weblium.site style with pixel-perfect design system, responsive layout, and enquiry-focused user experience.
Version: 1.0.0
Author: Kafila Sisters Limited
Author URI: https://kafilasisters.com
License: Proprietary
Text Domain: kafilasisters
*/

/* ========================================================================
   CSS VARIABLES (DESIGN TOKENS)
   ======================================================================== */

:root {
    /* Colors - Primary */
    --color-primary: #fda942;
    --color-primary-hover: #e89530;
    --color-secondary: #f26522;
    --color-secondary-hover: #d9571e;

    /* Colors - Text */
    --color-heading: #2a060a;
    --color-text: #373737;
    --color-muted: #5e5e5e;
    --color-footer-link: #b8b8b8;

    /* Colors - Backgrounds */
    --color-footer-bg: #272727;
    --color-cream: #fbf8ef;
    --color-white: #ffffff;
    --color-input-border: #e5e5e5;

    /* Shadows */
    --shadow-button: 0 4px 10px rgba(253, 169, 66, 0.3);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-header: 0 2px 10px rgba(0, 0, 0, 0.05);

    /* Spacing */
    --section-padding-desktop: 80px;
    --section-padding-mobile: 40px;
    --container-width: 1200px;
    --grid-gap-3col: 30px;
    --grid-gap-4col: 40px;

    /* Typography */
    --font-primary: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-body: 15px;
    --line-height-body: 24px;
    --font-size-small: 13px;
    --font-size-eyebrow: 14px;
    --font-size-h1: 68px;
    --font-size-h1-tablet: 52px;
    --font-size-h1-mobile: 42px;
    --font-size-h2: 46px;
    --font-size-h3: 28px;
    --letter-spacing-eyebrow: 2.5px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ========================================================================
   RESET & BASE STYLES
   ======================================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    color: var(--color-text);
    background: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary);
}

ul {
    list-style: none;
}

/* ========================================================================
   TYPOGRAPHY
   ======================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-heading);
    margin-bottom: 20px;
}

h1 {
    font-size: var(--font-size-h1);
    line-height: 74.8px;
}

h2 {
    font-size: var(--font-size-h2);
    text-align: center;
}

h3 {
    font-size: var(--font-size-h3);
}

.eyebrow {
    font-size: var(--font-size-eyebrow);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-eyebrow);
    color: var(--color-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.text-muted {
    color: var(--color-muted);
    font-size: var(--font-size-small);
}

/* ========================================================================
   LAYOUT COMPONENTS
   ======================================================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding-desktop) 0;
}

.section-cream {
    background: var(--color-cream);
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    max-width: 680px;
    margin: 16px auto 0;
    color: var(--color-muted);
}

.section-heading .underline {
    width: 80px;
    height: 4px;
    background: var(--color-primary);
    margin: 12px auto 0;
}

/* ========================================================================
   BUTTONS
   ======================================================================== */

.btn {
    display: inline-block;
    padding: 18px 30px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-primary);
    text-align: center;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-button);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    color: var(--color-white);
}

.btn-secondary {
    background: var(--color-secondary);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-secondary-hover);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 16px 28px;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-medium {
    padding: 14px 20px;
    font-size: 15px;
}

.btn-small {
    padding: 10px 16px;
    font-size: 14px;
}

/* ========================================================================
   HEADER & NAVIGATION
   ======================================================================== */

.top-bar {
    background: var(--color-cream);
    padding: 12px 0;
    font-size: var(--font-size-small);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar__contact a {
    margin-right: 20px;
}

.top-bar__social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--color-white);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.main-header {
    background: var(--color-white);
    box-shadow: var(--shadow-header);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.main-nav ul {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    font-weight: 500;
}

.header-cta {
    /* CTA button in header */
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-heading);
    margin: 5px 0;
    transition: var(--transition-fast);
}

/* ========================================================================
   HERO SECTION
   ======================================================================== */

.hero {
    position: relative;
    height: 700px;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: var(--color-white);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.hero__wrapper {
    position: relative;
    z-index: 2;
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hero__content {
    flex: 1;
    max-width: 800px;
    text-align: center;
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: 24px;
    text-align: center;
    font-size: 48px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 40px;
    text-align: center;
}

.hero__cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__logo-left {
    flex-shrink: 0;
    max-width: 350px;
}

.hero__logo-left img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero__logo-right {
    flex-shrink: 0;
    max-width: 350px;
}

.hero__logo-right img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

/* Hero Content Section (below image) */
.hero-content-section {
    padding: 80px 20px 0;
    background: var(--color-white);
}

#popular-packages {
    padding-top: 0;
}

.hero-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content-wrapper .eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.hero-content-wrapper h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--color-heading);
    margin-bottom: 24px;
}

.hero-content-wrapper p {
    font-size: 18px;
    line-height: 28px;
    color: var(--color-text);
    margin-bottom: 40px;
}

.wave-separator {
    display: block;
    width: 100%;
    line-height: 0;
    margin-top: -1px;
}

.wave-separator svg {
    display: block;
    width: 100%;
    height: 90px;
}

/* ========================================================================
   CARDS
   ======================================================================== */

.card {
    background: var(--color-white);
    border-radius: 0px;
    overflow: hidden;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.card__image-wrapper {
    overflow: hidden;
    height: 250px;
}

.card__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.card:hover .card__image-wrapper img {
    transform: scale(1.05);
}

.card__content {
    padding: 30px;
}

/* Package Card Specific */
.package-card__badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    margin-right: 8px;
    margin-bottom: 12px;
}

.package-card__title {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-heading);
}

.package-card__price {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.package-card__nights {
    font-size: 14px;
    color: var(--color-muted);
    margin-bottom: 20px;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--color-cream);
    padding: 30px;
    border-radius: 5px;
}

.testimonial-card__stars {
    color: var(--color-primary);
    margin-bottom: 16px;
    font-size: 18px;
}

.testimonial-card__text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 26px;
}

.testimonial-card__author {
    font-weight: 600;
    color: var(--color-heading);
}

.testimonial-card__date {
    font-size: var(--font-size-small);
    color: var(--color-muted);
}

/* Feature Card */
.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.feature-card__title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-heading);
}

.feature-card__text {
    color: var(--color-muted);
    line-height: 24px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary);
}

/* ========================================================================
   GRIDS
   ======================================================================== */

.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap-3col);
}

.grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--grid-gap-4col);
}

/* ========================================================================
   FORMS
   ======================================================================== */

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-heading);
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--color-input-border);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 14px;
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-control::placeholder {
    color: var(--color-footer-link);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23373737' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-error {
    color: var(--color-secondary-hover);
    font-size: 13px;
    margin-top: 5px;
    margin-bottom: 15px;
}

.form-success {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    margin-bottom: 20px;
}

.enquiry-form {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 30px;
    border: 1px solid #f0f0f0;
    box-shadow: var(--shadow-card);
}

/* ========================================================================
   ABOUT SECTION
   ======================================================================== */

.about-section {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-section__image {
    flex-basis: 45%;
}

.about-section__image img {
    border-radius: 50%;
    border: 15px solid var(--color-primary);
    width: 100%;
    max-width: 500px;
}

.about-section__content {
    flex: 1;
}

/* ========================================================================
   STATS SECTION
   ======================================================================== */

.stats-section {
    background: var(--color-cream);
    background-image: radial-gradient(rgba(42, 6, 10, 0.08) 1px, transparent 1px);
    background-size: 18px 18px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item__number {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 12px;
    white-space: nowrap;
}

.stat-item__label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-muted);
}

/* ========================================================================
   FOOTER
   ======================================================================== */

.site-footer {
    background: var(--color-footer-bg);
    color: var(--color-footer-link);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-widget h3 {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget a:hover {
    color: var(--color-primary);
}

.footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
}

.footer-legal p {
    margin-bottom: 8px;
}

.footer-legal-links {
    margin-top: 15px;
}

.footer-legal-links a {
    margin: 0 10px;
}

/* ========================================================================
   CONTACT STRIP
   ======================================================================== */

.contact-strip {
    background: var(--color-cream);
}

.contact-strip__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.contact-strip__actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* ========================================================================
   PACKAGES LISTING
   ======================================================================== */

.packages-filter {
    margin-bottom: 40px;
}

.packages-filter .searchandfilter {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: end;
    background: var(--color-cream);
    padding: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
}

.packages-filter .searchandfilter ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.packages-filter .searchandfilter li {
    margin: 0;
}

.packages-filter .searchandfilter label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text);
}

.packages-filter .searchandfilter input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-primary);
}

.packages-filter .searchandfilter select,
.packages-filter .searchandfilter input[type="text"],
.packages-filter .searchandfilter input[type="search"],
.packages-filter .searchandfilter input,
.packages-filter .searchandfilter button {
    width: 100%;
}

.packages-filter .searchandfilter select,
.packages-filter .searchandfilter input[type="text"],
.packages-filter .searchandfilter input[type="search"] {
    padding: 12px 16px;
    border: 1px solid var(--color-input-border);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 14px;
    background: var(--color-white);
}

.packages-filter .searchandfilter select:focus,
.packages-filter .searchandfilter input[type="text"]:focus,
.packages-filter .searchandfilter input[type="search"]:focus {
    outline: none;
    border-color: var(--color-primary);
}

.packages-filter .searchandfilter input[type="submit"],
.packages-filter .searchandfilter button {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 5px;
    padding: 14px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-button);
}

.packages-filter .searchandfilter input[type="submit"]:hover,
.packages-filter .searchandfilter button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
}

/* ========================================================================
   SINGLE PACKAGE
   ======================================================================== */

.package-hero {
    padding: 80px 0;
    background: var(--color-cream);
}

.package-hero__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.package-hero__price {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.package-hero__badges .package-card__badge {
    margin-right: 10px;
    margin-bottom: 10px;
}

.package-hero__image img {
    border-radius: 6px;
    width: 100%;
    height: auto;
}

.package-details__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.package-details__panel {
    background: var(--color-white);
    border: 1px solid #f0f0f0;
    padding: 30px;
    box-shadow: var(--shadow-card);
}

.package-details__row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.package-details__row:last-child {
    border-bottom: none;
}

.package-inclusions li {
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
}

.package-inclusions li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* ========================================================================
   RESPONSIVE DESIGN
   ======================================================================== */

/* Tablet (991px and below) */
@media (max-width: 991px) {
    h1 {
        font-size: var(--font-size-h1-tablet);
    }

    .section {
        padding: 60px 0;
    }

    .grid-3col,
    .grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-grid,
    .package-hero__grid,
    .package-details__grid,
    .packages-filter .searchandfilter {
        grid-template-columns: 1fr;
    }

    .contact-strip__content {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section {
        flex-direction: column;
        gap: 40px;
    }

    .about-section__image {
        flex-basis: auto;
    }

    .hero__wrapper {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero__content {
        max-width: 100%;
        text-align: center;
    }

    .hero h1,
    .hero p {
        text-align: center;
    }

    .hero__cta {
        justify-content: center;
    }

    .hero__logo-left {
        max-width: 180px;
        margin: 0 auto 20px;
    }

    .hero__logo-right {
        max-width: 70%;
        margin: 0 auto;
    }

    /* Mobile Navigation */
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right var(--transition-medium);
        padding: 80px 30px 30px;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .main-nav a {
        font-size: 18px;
    }

    .main-header .container {
        flex-wrap: wrap;
    }
}

/* Mobile (767px and below) */
@media (max-width: 767px) {
    h1 {
        font-size: var(--font-size-h1-mobile);
    }

    h2 {
        font-size: 36px;
    }

    .section {
        padding: var(--section-padding-mobile) 0;
    }

    .grid-3col,
    .grid-4col,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        display: block;
    }

    .hero {
        padding: 40px 20px 80px;
    }

    .hero__wrapper {
        gap: 30px;
    }

    .hero__logo {
        max-width: 220px;
    }

    .hero__cta {
        flex-direction: column;
    }

    .contact-strip__actions {
        width: 100%;
    }

    .contact-strip__actions .btn {
        width: 100%;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .top-bar__contact {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .top-bar__contact a {
        margin-right: 0;
    }

    .header-cta {
        width: 100%;
        margin-top: 15px;
    }
}

.menu-open {
    overflow: hidden;
}

/* ========================================================================
   UTILITY CLASSES
   ======================================================================== */

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

/* ========================================================================
   ABOUT PAGE
   ======================================================================== */

.about-hero {
    background: linear-gradient(135deg, var(--color-footer-bg) 0%, #3a1a1e 60%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: 100px 0 80px;
    text-align: center;
}

.about-hero h1 {
    color: var(--color-white);
    font-size: 52px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 18px;
    line-height: 28px;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0.9;
}

.about-welcome-text p {
    margin-bottom: 16px;
    line-height: 26px;
}

.about-mission-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    color: var(--color-text);
}

/* Pillar Cards */
.about-pillar-card {
    background: var(--color-white);
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 40px 25px;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.about-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.pillar-icon {
    font-size: 36px;
    display: block;
}

/* Value Cards */
.about-value-card {
    background: var(--color-white);
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 30px;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--color-primary);
}

.about-value-card h3 {
    font-size: 20px;
    color: var(--color-heading);
    margin-bottom: 10px;
}

.about-value-card p {
    color: var(--color-muted);
    line-height: 24px;
    margin: 0;
}

/* Commitments */
.about-commitments {
    max-width: 700px;
    margin: 0 auto;
}

.about-commitments__list {
    list-style: none;
    padding: 0;
}

.about-commitments__list li {
    padding: 16px 0 16px 40px;
    position: relative;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.about-commitments__list li:last-child {
    border-bottom: none;
}

.about-commitments__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 16px;
    color: var(--color-white);
    background: var(--color-primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

/* ========================================================================
   CONTACT PAGE
   ======================================================================== */

.contact-hero {
    background: linear-gradient(135deg, var(--color-footer-bg) 0%, #3a1a1e 60%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: 100px 0 80px;
    text-align: center;
}

.contact-hero h1 {
    color: var(--color-white);
    font-size: 52px;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 18px;
    line-height: 28px;
    max-width: 680px;
    margin: 0 auto;
    opacity: 0.9;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-info-card {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.contact-info-card__icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-info-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-info-card p {
    margin-bottom: 6px;
}

.contact-info-card a {
    color: var(--color-primary);
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--color-primary-hover);
}

.contact-company-details {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-company-details h3 {
    margin-bottom: 16px;
}

.contact-company-details p {
    margin-bottom: 8px;
    color: var(--color-muted);
}

/* ========================================================================
   ABOUT & CONTACT RESPONSIVE
   ======================================================================== */

@media (max-width: 991px) {

    .about-hero,
    .contact-hero {
        padding: 80px 0 60px;
    }

    .about-hero h1,
    .contact-hero h1 {
        font-size: 42px;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {

    .about-hero,
    .contact-hero {
        padding: 60px 0 40px;
    }

    .about-hero h1,
    .contact-hero h1 {
        font-size: 34px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .about-commitments__list li {
        font-size: 14px;
        padding-left: 34px;
    }
}

/* ========================================================================
   EMAIL US MODAL
   ======================================================================== */

.email-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.email-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.email-modal-content {
    background: var(--color-white);
    width: 90%;
    max-width: 550px;
    border-radius: 8px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-height: 90vh;
    overflow-y: auto;
}

.email-modal-overlay.is-open .email-modal-content {
    transform: translateY(0);
}

.email-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--color-muted);
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    z-index: 10;
}

.email-modal-close:hover {
    color: var(--color-secondary-hover);
}

.email-modal-header {
    text-align: center;
    padding: 30px 30px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.email-modal-header h2 {
    margin-bottom: 10px;
    font-size: 28px;
    color: var(--color-heading);
}

.email-modal-header p {
    color: var(--color-muted);
    font-size: 15px;
    margin: 0;
}

.email-modal-body {
    padding: 30px;
}

.email-modal-form .form-group {
    margin-bottom: 15px;
}

.email-modal-form textarea {
    min-height: 100px;
}