/* Eyaletler Sayfası - Ana Sayfa Stiline Uygun */

/* States Hero Section - Ana sayfa hero-video stiline uygun */
.states-hero {
    position: relative;
    width: 100vw;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-top: 6rem;
}

.states-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

.states-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.states-hero__content {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 3;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 350px;
    max-width: 450px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
}

.states-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.states-hero__title {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.states-hero__description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

/* Map Section - Ana sayfa content-section stiline uygun */
.map-section {
    padding: var(--section-padding) 0;
    background: var(--color-light);
}

.map-section .h2 {
    font-family: 'Helvetica Now Display', 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.map-section .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.4;
}

/* Map Container */
.map-container-wrapper {
    background: white;
    border-radius: var(--border-radius-l);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.map-container {
    width: 100%;
}

/* Zoom Controls */
.zoom-controls {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.zoom-controls button {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-s);
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--animation-default-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.zoom-controls button:hover {
    background: #00b572;
    transform: translateY(-2px);
}

.zoom-controls button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

#zoom-reset {
    background: #64748b;
}

#zoom-reset:hover {
    background: #4b5563;
}

/* USA Map */
.usa-map {
    overflow: hidden;
    height: 450px;
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-m);
    padding: 1rem;
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

#usa-map {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.usa-map svg {
    width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
    margin: 0 auto;
}

/* State Paths */
.state-path {
    fill: #e2e8f0;
    stroke: #cbd5e1;
    stroke-width: 1;
    transition: all var(--animation-default-fast);
}

.state-path.has-data {
    fill: var(--color-primary);
    stroke: #00b572;
    cursor: pointer;
}

.state-path.has-data:hover {
    fill: #00b572;
    stroke: #009960;
    stroke-width: 2;
    transform: scale(1.02);
    transform-origin: center;
}

.state-path.active {
    fill: #009960;
    stroke: #008552;
    stroke-width: 2;
}

.state-path.no-data {
    fill: #f1f5f9;
    stroke: #e2e8f0;
    cursor: not-allowed;
}

/* Hawaii Circles */
#HI circle {
    fill: #e2e8f0;
    stroke: #cbd5e1;
    stroke-width: 1;
    transition: all var(--animation-default-fast);
}

#HI.has-data circle {
    fill: var(--color-primary);
    stroke: #00b572;
    cursor: pointer;
}

#HI.has-data:hover circle {
    fill: #00b572;
    stroke: #009960;
    stroke-width: 2;
    transform: scale(1.2);
}

#HI.active circle {
    fill: #009960;
    stroke: #008552;
    stroke-width: 2;
}

#HI.no-data circle {
    fill: #f1f5f9;
    stroke: #e2e8f0;
    cursor: not-allowed;
}

/* Map Legend */
.map-legend {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: var(--border-radius-s);
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
    font-family: 'Inter', sans-serif;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid #d1d5db;
}

/* Info Box */
.info-box {
    background: #f8fafc;
    border-radius: var(--border-radius-s);
    padding: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.info-box p {
    color: #64748b;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.info-box i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

/* State Info Panel */
.state-info {
    min-height: 400px;
    background: white;
    border-radius: var(--border-radius-l);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.state-info.empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-family: 'Inter', sans-serif;
}

/* State Header */
.state-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--color-border);
}

.state-title h2 {
    margin: 0;
    color: var(--color-dark);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    font-family: 'Helvetica Now Display', 'Inter', sans-serif;
}

.state-title .capital {
    color: #64748b;
    font-size: clamp(0.875rem, 1vw, 1rem);
    margin-top: 0.25rem;
    font-family: 'Inter', sans-serif;
}

/* State Stats */
.state-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: var(--border-radius-m);
    text-align: center;
    transition: all var(--animation-default-fast);
}

.stat-item:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
}

.stat-value {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.25rem;
    font-family: 'Helvetica Now Text', 'Inter', sans-serif;
}

.stat-label {
    font-size: clamp(0.75rem, 0.875vw, 0.875rem);
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
}

/* State Content Sections */
.state-description,
.state-features,
.detailed-info {
    margin-bottom: 2rem;
}

.state-description h3,
.state-features h3,
.detailed-info h3 {
    color: var(--color-dark);
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    margin-bottom: 1rem;
    font-family: 'Helvetica Now Text', 'Inter', sans-serif;
    font-weight: 600;
}

.state-description p,
.detailed-info p {
    color: #475569;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, 1vw, 1rem);
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, 1vw, 1rem);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Contact Info */
.contact-info {
    background: #f8fafc;
    border-radius: var(--border-radius-m);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.contact-info h4 {
    color: var(--color-dark);
    margin-bottom: 0.75rem;
    font-family: 'Helvetica Now Text', 'Inter', sans-serif;
    font-weight: 600;
}

.contact-info p {
    margin: 0.5rem 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, 1vw, 1rem);
}

.contact-info i {
    color: var(--color-primary);
    width: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .states-hero {
        height: 50vh;
        margin-top: 4rem;
    }

    .states-hero__content {
        left: 1rem;
        bottom: 1rem;
        min-width: 280px;
        max-width: 320px;
        padding: 1rem;
    }

    .states-hero__title {
        font-size: 1.5rem;
    }

    .states-hero__description {
        font-size: 0.8rem;
    }

    .zoom-controls {
        gap: 0.5rem;
        padding: 0 1rem;
    }

    .zoom-text {
        display: none;
    }

    .zoom-controls button {
        padding: 0.75rem;
        min-width: 3rem;
        font-size: 0.875rem;
    }

    .usa-map {
        height: 300px;
        padding: 0.5rem;
    }

    .map-legend {
        gap: 0.5rem;
        flex-wrap: wrap;
        padding: 0.75rem;
    }

    .legend-item {
        font-size: 0.75rem;
        gap: 0.25rem;
    }

    .legend-color {
        width: 12px;
        height: 12px;
    }

    .state-info {
        padding: 1rem;
    }

    .state-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .state-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .states-hero {
        height: 40vh;
    }

    .states-hero__content {
        min-width: 250px;
        max-width: 280px;
    }

    .states-hero__title {
        font-size: 1.25rem;
    }

    .usa-map {
        height: 250px;
        padding: 0.25rem;
    }

    .state-stats {
        grid-template-columns: 1fr;
    }

    .map-legend {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        text-align: center;
    }

    .legend-item {
        justify-content: center;
        font-size: 0.625rem;
    }
}

/* Info Cards Section */
.info-section {
    padding: 4vw 0;
    background: var(--color-light);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2vw;
    max-width: 72rem;
    margin: 0 auto;
}

.info-card {
    background: white;
    padding: 2.5vw;
    border-radius: var(--border-radius-l);
    box-shadow: 0 0.5vw 2vw rgba(0, 0, 0, 0.08);
    transition: all var(--animation-default);
}

.info-card:hover {
    transform: translateY(-0.5vw);
    box-shadow: 0 1vw 3vw rgba(0, 0, 0, 0.12);
}

.info-card h3 {
    font-family: 'Helvetica Now Text', 'Inter', sans-serif;
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1vw;
    line-height: 1.3;
}

.info-card p {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 4vw 0;
    background: white;
}

.map-section h2 {
    font-family: 'Helvetica Now Display', 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 1vw;
    letter-spacing: -0.02em;
}

.map-section .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #666;
    text-align: center;
    margin-bottom: 3vw;
    line-height: 1.4;
}

/* Map Container */
.map-container-wrapper {
    background: white;
    border-radius: var(--border-radius-l);
    box-shadow: 0 1vw 3vw rgba(0, 0, 0, 0.1);
    padding: 2vw;
    margin-bottom: 2vw;
}

.map-container {
    width: 100%;
}

/* Zoom Controls */
.zoom-controls {
    display: flex;
    justify-content: center;
    gap: 0.5vw;
    margin-bottom: 2vw;
    flex-wrap: wrap;
}

.zoom-controls button {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.8vw 1.5vw;
    border-radius: var(--border-radius-s);
    cursor: pointer;
    font-size: clamp(0.75rem, 0.9vw, 0.875rem);
    font-weight: 500;
    transition: all var(--animation-default-fast);
    display: flex;
    align-items: center;
    gap: 0.5vw;
}

.zoom-controls button:hover {
    background: #00b572;
    transform: translateY(-0.1vw);
}

.zoom-controls button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

#zoom-reset {
    background: #64748b;
}

#zoom-reset:hover {
    background: #4b5563;
}

/* USA Map */
.usa-map {
    overflow: hidden;
    height: 28vw;
    min-height: 400px;
    max-height: 500px;
    border: 2px solid var(--color-border);
    border-radius: var(--border-radius-m);
    padding: 1vw;
    position: relative;
    width: 100%;
    margin: 0 auto;
    background: #f8fafc;
}

#usa-map {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.usa-map svg {
    width: 100%;
    height: auto;
    max-height: 100%;
}

/* State Paths */
.state-path {
    fill: #e2e8f0;
    stroke: #cbd5e1;
    stroke-width: 1;
    transition: all var(--animation-default-fast);
}

.state-path.has-data {
    fill: var(--color-primary);
    stroke: #00b572;
    cursor: pointer;
}

.state-path.has-data:hover {
    fill: #00b572;
    stroke: #009960;
    stroke-width: 2;
    transform: scale(1.02);
    transform-origin: center;
}

.state-path.active {
    fill: #009960;
    stroke: #008552;
    stroke-width: 2;
}

.state-path.no-data {
    fill: #f1f5f9;
    stroke: #e2e8f0;
    cursor: not-allowed;
}

/* Hawaii Circles */
#HI circle {
    fill: #e2e8f0;
    stroke: #cbd5e1;
    stroke-width: 1;
    transition: all var(--animation-default-fast);
}

#HI.has-data circle {
    fill: var(--color-primary);
    stroke: #00b572;
    cursor: pointer;
}

#HI.has-data:hover circle {
    fill: #00b572;
    stroke: #009960;
    stroke-width: 2;
    transform: scale(1.2);
}

#HI.active circle {
    fill: #009960;
    stroke: #008552;
    stroke-width: 2;
}

#HI.no-data circle {
    fill: #f1f5f9;
    stroke: #e2e8f0;
    cursor: not-allowed;
}

/* Map Legend */
.map-legend {
    display: flex;
    justify-content: center;
    gap: 1.5vw;
    margin-top: 1vw;
    padding: 1vw;
    background: #f8fafc;
    border-radius: var(--border-radius-s);
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    font-size: clamp(0.75rem, 0.9vw, 0.875rem);
    color: #6b7280;
    font-family: 'Inter', sans-serif;
}

.legend-color {
    width: 1vw;
    height: 1vw;
    min-width: 12px;
    min-height: 12px;
    border-radius: 0.25vw;
    border: 1px solid #d1d5db;
}

/* Info Box */
.info-box {
    background: #f8fafc;
    border-radius: var(--border-radius-s);
    padding: 1vw;
    margin-top: 1vw;
    text-align: center;
}

.info-box p {
    color: #64748b;
    margin: 0;
    font-size: clamp(0.75rem, 0.9vw, 0.875rem);
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.info-box i {
    color: var(--color-primary);
    margin-right: 0.5vw;
}

/* State Info Panel */
.state-info {
    min-height: 25vw;
    background: white;
    border-radius: var(--border-radius-l);
    box-shadow: 0 1vw 3vw rgba(0, 0, 0, 0.1);
    padding: 2vw;
}

.state-info.empty {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-family: 'Inter', sans-serif;
}

/* State Header */
.state-header {
    display: flex;
    align-items: center;
    gap: 1.5vw;
    margin-bottom: 2vw;
    padding-bottom: 1vw;
    border-bottom: 2px solid var(--color-border);
}

.state-title h2 {
    margin: 0;
    color: var(--color-dark);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    font-family: 'Helvetica Now Display', 'Inter', sans-serif;
}

.state-title .capital {
    color: #64748b;
    font-size: clamp(0.875rem, 1vw, 1rem);
    margin-top: 0.25vw;
    font-family: 'Inter', sans-serif;
}

/* State Stats */
.state-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1vw;
    margin-bottom: 2vw;
}

.stat-item {
    background: #f8fafc;
    padding: 1vw;
    border-radius: var(--border-radius-m);
    text-align: center;
    transition: all var(--animation-default-fast);
}

.stat-item:hover {
    background: var(--color-primary-light);
    transform: translateY(-0.2vw);
}

.stat-value {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.25vw;
    font-family: 'Helvetica Now Text', 'Inter', sans-serif;
}

.stat-label {
    font-size: clamp(0.75rem, 0.875vw, 0.875rem);
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
}

/* State Content Sections */
.state-description,
.state-features,
.detailed-info {
    margin-bottom: 2vw;
}

.state-description h3,
.state-features h3,
.detailed-info h3 {
    color: var(--color-dark);
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    margin-bottom: 1vw;
    font-family: 'Helvetica Now Text', 'Inter', sans-serif;
    font-weight: 600;
}

.state-description p,
.detailed-info p {
    color: #475569;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, 1vw, 1rem);
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 0.5vw 0;
    color: #475569;
    position: relative;
    padding-left: 1.5vw;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, 1vw, 1rem);
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* Contact Info */
.contact-info {
    background: #f8fafc;
    border-radius: var(--border-radius-m);
    padding: 1.5vw;
    margin-top: 1.5vw;
}

.contact-info h4 {
    color: var(--color-dark);
    margin-bottom: 0.75vw;
    font-family: 'Helvetica Now Text', 'Inter', sans-serif;
    font-weight: 600;
}

.contact-info p {
    margin: 0.5vw 0;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.5vw;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, 1vw, 1rem);
}

.contact-info i {
    color: var(--color-primary);
    width: 1vw;
    min-width: 16px;
}

/* State PDF Section */
.state-pdf {
    background: linear-gradient(135deg, var(--color-primary), #00b572);
    border-radius: var(--border-radius-m);
    padding: 1.5vw;
    text-align: center;
    margin-top: 2vw;
}

.state-pdf h4 {
    color: white;
    margin: 0 0 1vw 0;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    font-family: 'Helvetica Now Text', 'Inter', sans-serif;
}

.pdf-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5vw;
    background: white;
    color: var(--color-primary);
    padding: 0.75vw 1.5vw;
    border-radius: var(--border-radius-s);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--animation-default-fast);
    font-family: 'Inter', sans-serif;
}

.pdf-button:hover {
    background: #f1f5f9;
    transform: translateY(-0.2vw);
    box-shadow: 0 0.5vw 1.5vw rgba(0, 0, 0, 0.15);
}

/* State Magazines */
.state-magazines {
    margin-top: 2vw;
    padding-top: 2vw;
    border-top: 1px solid var(--color-border);
}

.state-magazines h3 {
    color: var(--color-dark);
    margin-bottom: 1.5vw;
    font-size: clamp(1.125rem, 1.25vw, 1.25rem);
    font-weight: 600;
    font-family: 'Helvetica Now Text', 'Inter', sans-serif;
}

.magazines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2vw;
    justify-items: center;
}

/* Book Container */
.book-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 1.5vw;
}

.book {
    position: relative;
    border-radius: var(--border-radius-m);
    width: 220px;
    height: 300px;
    background-color: whitesmoke;
    box-shadow: 0.1vw 0.1vw 1.2vw rgba(0, 0, 0, 0.3);
    transform: preserve-3d;
    perspective: 2000px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    overflow: hidden;
}

.cover {
    top: 0;
    position: absolute;
    background-color: lightgray;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius-m);
    cursor: pointer;
    transition: all var(--animation-default);
    transform-origin: 0;
    box-shadow: 0.1vw 0.1vw 1.2vw rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.book:hover .cover {
    transition: all var(--animation-default);
    transform: rotatey(-80deg);
}

.book p {
    font-size: 1.25vw;
    font-weight: 700;
    position: absolute;
    z-index: 10;
    color: white;
    text-shadow: 1px 1px 2px black;
    font-family: 'Helvetica Now Text', 'Inter', sans-serif;
}

.pdf-name {
    background-color: #f0f0f0;
    padding: 1vw 1.5vw;
    border-radius: 0 0 var(--border-radius-m) var(--border-radius-m);
    text-align: center;
    font-size: clamp(0.75rem, 0.875vw, 0.875rem);
    color: #333;
    width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 0.2vw 0.5vw rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
}

/* Eyaletler sayfası için özel growing tiles height düşürme */
.services-overview .growing-tiles__col {
    height: 60% !important;
}

.growing-tiles {

    height: 25em !important;
}

.services-overview .growing-tile {
    height: 137% !important;
    min-height: auto !important;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75vw;
    background: var(--color-dark);
    color: white;
    padding: 1vw 2vw;
    border-radius: 2vw;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(1rem, 1.125vw, 1.125rem);
    transition: all var(--animation-default-fast);
    font-family: 'Inter', sans-serif;
    box-shadow: 0 0.5vw 2vw rgba(0, 0, 0, 0.15);
}

.cta-button:hover {
    background: #003080;
    transform: scale(1.05);
    box-shadow: 0 1vw 3vw rgba(0, 0, 0, 0.25);
}

.cta-button i {
    font-size: 1.25vw;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-0.5vw);
    }

    60% {
        transform: translateY(-0.25vw);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .map-legend {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .legend-item {
        font-size: 0.75rem;
    }

    .hero-subtitle {
        max-width: 70vw;
    }
}

@media (max-width: 768px) {
    .hero-section {
        margin-left: 1vw;
        margin-right: 1vw;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        max-width: 90vw;
        padding: 0 1rem;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .zoom-controls {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0 1rem;
    }

    .zoom-text {
        display: none;
    }

    .zoom-controls button {
        padding: 0.75rem;
        min-width: 3rem;
        font-size: 0.875rem;
        border-radius: 0.75rem;
    }

    .usa-map {
        height: 300px;
        padding: 0.5rem;
        margin-bottom: 1rem;
    }

    .usa-map svg {
        width: 100%;
        max-height: 280px;
    }

    .map-legend {
        gap: 0.5rem;
        flex-wrap: wrap;
        padding: 0.75rem;
        margin-top: 0.5rem;
    }

    .legend-item {
        font-size: 0.75rem;
        gap: 0.25rem;
    }

    .legend-color {
        width: 12px;
        height: 12px;
        min-width: 12px;
        min-height: 12px;
    }

    .state-info {
        min-height: 300px;
        padding: 1rem;
    }

    .state-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-item {
        padding: 0.75rem;
    }

    .stat-value {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .state-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .state-title h2 {
        font-size: 1.5rem;
    }

    .contact-info {
        padding: 0.75rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
        gap: 0.5rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .usa-map {
        height: 250px;
        padding: 0.25rem;
    }

    .usa-map svg {
        max-height: 220px;
    }

    .state-stats {
        grid-template-columns: 1fr;
    }

    .map-legend {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        text-align: center;
    }

    .legend-item {
        justify-content: center;
        font-size: 0.625rem;
    }

    .zoom-controls button {
        min-width: 3.5rem;
        min-height: 3rem;
        padding: 0.875rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .usa-map {
        height: 200px;
    }

    .usa-map svg {
        max-height: 180px;
    }

    .state-info {
        min-height: 250px;
    }

    .map-container-wrapper {
        border-radius: 1rem;
        padding: 1rem;
    }
}

/* 
KOBİ-50 Sayfası için Özel Stiller */

/* Step Info Row - 3 step yan yana */
.step-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.step-info-row .step-info {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-m);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-info-row .step-number {
    background: var(--color-primary);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1rem auto;
}

.step-info-row .step-details h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    font-family: 'Helvetica Now Text', 'Inter', sans-serif;
}

.step-info-row .step-details p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

/* Award Categories - Özel Full Width Tasarım */
.award-categories-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.award-categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.award-categories-content {
    position: relative;
    z-index: 2;
}

.award-categories-header {
    text-align: center;
    margin-bottom: 3rem;
}

.award-categories-header .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.award-categories-header h2 {
    font-family: 'Helvetica Now Display', 'Inter', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.award-categories-header p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #666;
    line-height: 1.4;
    max-width: 50rem;
    margin: 0 auto;
}

.award-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.award-category-card {
    background: white;
    border-radius: var(--border-radius-l);
    padding: 2rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.08);
    transition: all var(--animation-default);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.award-category-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.award-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), #00b572);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--animation-default);
}

.award-category-card:hover::before {
    transform: scaleX(1);
}

.award-category-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, var(--color-primary), #00b572);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--animation-default);
}

.award-category-card:hover .award-category-icon {
    transform: scale(1.1);
}

.award-category-icon i {
    font-size: 1.5rem;
    color: white;
}

.award-category-title {
    font-family: 'Helvetica Now Text', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.award-category-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.award-category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all var(--animation-default-fast);
}

.award-category-link:hover {
    color: #00b572;
    transform: translateX(0.25rem);
}

.award-category-link i {
    font-size: 0.8rem;
    transition: transform var(--animation-default-fast);
}

.award-category-card:hover .award-category-link i {
    transform: translateX(0.25rem);
}

/* Responsive Design */
@media (max-width: 768px) {
    .step-info-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .award-categories-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .award-category-card {
        padding: 1.5rem;
    }
}

@media (max-width: 640px) {
    .award-categories-section {
        padding: 2rem 0;
    }

    .award-categories-header {
        margin-bottom: 2rem;
    }
}