/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #232F3E;
}

img {
    max-width: 100%;
    height: auto;
}

input, textarea, select, button {
    outline: none;
}

input:focus, textarea:focus, select:focus, button:focus {
    outline: none;
}

/* Utility Classes */
.min-h-screen {
    min-height: 100vh;
}

.bg-white {
    background-color: #ffffff;
}

.hidden {
    display: none !important;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 12px;
}

@media (min-width: 640px) {
    .container {
        padding: 0 16px;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }
}

/* Navigation */
.nav {
    background-color: #232F3E;
    color: white;
    position: sticky;
    top: 0;
    z-index: 50;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 56px;
}

@media (min-width: 640px) {
    .nav-container {
        padding: 0 16px;
        height: 64px;
    }
}

.nav-brand h1 {
    font-size: 16px;
    font-weight: bold;
}

@media (min-width: 640px) {
    .nav-brand h1 {
        font-size: 18px;
    }
}

@media (min-width: 768px) {
    .nav-brand h1 {
        font-size: 20px;
    }
}

.desktop-menu {
    display: none;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
        align-items: baseline;
        gap: 32px;
    }
}

.nav-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-link:hover {
    color: #FF9900;
}

.mobile-menu-btn {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.menu-toggle-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle-btn:hover {
    color: #FF9900;
}

.menu-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.mobile-menu {
    display: none;
}

.mobile-menu:not(.hidden) {
    display: block;
}

.mobile-menu-content {
    padding: 8px 12px 12px;
    background-color: #37475A;
}

@media (min-width: 640px) {
    .mobile-menu-content {
        padding: 8px 12px 12px;
    }
}

.mobile-nav-link {
    display: block;
    padding: 8px 12px;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.mobile-nav-link:hover {
    color: #FF9900;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, #232F3E, #37475A);
    color: white;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .hero {
        padding: 80px 0;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: url('assets/portfolio/Pouch-Packaging-Mockup-3 copy.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 12px;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .hero-container {
        padding: 0 16px;
    }
}

@media (min-width: 768px) {
    .hero-container {
        padding: 0 24px;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        padding: 0 32px;
    }
}

.hero-content {
    text-align: center;
}

.profile-image-container {
    width: 96px;
    height: 96px;
    background-color: #d1d5db;
    border-radius: 50%;
    margin: 0 auto 24px;
    overflow: hidden;
}

@media (min-width: 640px) {
    .profile-image-container {
        width: 128px;
        height: 128px;
        margin-bottom: 32px;
    }
}

@media (min-width: 768px) {
    .profile-image-container {
        width: 192px;
        height: 192px;
    }
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 12px;
    padding: 0 8px;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 30px;
        margin-bottom: 16px;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 60px;
    }
}

.hero-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
    color: #d1d5db;
    padding: 0 8px;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 32px;
    }
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 24px;
    }
}

.hero-description {
    font-size: 14px;
    margin-bottom: 24px;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
    color: #9ca3af;
    padding: 0 12px;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 16px;
        margin-bottom: 32px;
    }
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 18px;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 0 12px;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        gap: 16px;
    }
}

.btn-primary {
    background-color: #FF9900;
    color: #000000;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

@media (min-width: 640px) {
    .btn-primary {
        padding: 10px 24px;
        font-size: 16px;
        width: auto;
    }
}

@media (min-width: 768px) {
    .btn-primary {
        padding: 12px 32px;
    }
}

.btn-primary:hover {
    background-color: #E68900;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
    width: 100%;
    display: inline-block;
}

@media (min-width: 640px) {
    .btn-secondary {
        padding: 10px 24px;
        font-size: 16px;
        width: auto;
    }
}

@media (min-width: 768px) {
    .btn-secondary {
        padding: 12px 32px;
    }
}

.btn-secondary:hover {
    background-color: white;
    color: #232F3E;
}

.btn-icon {
    width: 16px;
    height: 16px;
}

@media (min-width: 640px) {
    .btn-icon {
        width: 16px;
        height: 16px;
    }
}

@media (min-width: 768px) {
    .btn-icon {
        width: 20px;
        height: 20px;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 48px;
    }
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 64px;
    }
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #232F3E;
    margin-bottom: 12px;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 30px;
        margin-bottom: 16px;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 36px;
    }
}

.section-divider {
    width: 80px;
    height: 4px;
    background-color: #FF9900;
    margin: 0 auto;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .section-divider {
        margin-bottom: 24px;
    }
}

.section-description {
    font-size: 14px;
    color: #4b5563;
    max-width: 672px;
    margin: 0 auto;
    padding: 0 12px;
}

@media (min-width: 640px) {
    .section-description {
        font-size: 16px;
    }
}

/* About Section */
.about {
    padding: 32px 0;
    background-color: #f9fafb;
}

@media (min-width: 640px) {
    .about {
        padding: 48px 0;
    }
}

@media (min-width: 768px) {
    .about {
        padding: 80px 0;
    }
}

.about-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
    }
}

.about-content {
    padding: 0 8px;
}

@media (min-width: 640px) {
    .about-content {
        padding: 0;
    }
}

.about-title {
    font-size: 20px;
    font-weight: bold;
    color: #232F3E;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .about-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
}

.about-text {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .about-text {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    color: #232F3E;
    transition: color 0.3s;
}

.social-link:hover {
    color: #FF9900;
}

.icon {
    width: 24px;
    height: 24px;
}

.about-facts {
    background-color: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    margin: 0 8px;
}

@media (min-width: 640px) {
    .about-facts {
        padding: 24px;
        margin: 0;
    }
}

@media (min-width: 768px) {
    .about-facts {
        padding: 32px;
    }
}

.facts-title {
    font-size: 16px;
    font-weight: bold;
    color: #232F3E;
    margin-bottom: 12px;
}

@media (min-width: 640px) {
    .facts-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
}

@media (min-width: 768px) {
    .facts-title {
        font-size: 20px;
    }
}

.facts-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 640px) {
    .facts-list {
        gap: 12px;
    }
}

.fact-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #4b5563;
}

@media (min-width: 640px) {
    .fact-item {
        font-size: 16px;
    }
}

.fact-bullet {
    width: 8px;
    height: 8px;
    background-color: #FF9900;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 32px 0;
    background-color: white;
}

@media (min-width: 640px) {
    .testimonials {
        padding: 48px 0;
    }
}

@media (min-width: 768px) {
    .testimonials {
        padding: 80px 0;
    }
}

.testimonials-scroll-container {
    overflow: hidden;
    position: relative;
}

.testimonials-scroll {
    display: flex;
    gap: 16px;
    animation: scroll-left 30s linear infinite;
    will-change: transform;
}

@media (max-width: 640px) {
    .testimonials-scroll {
        animation: scroll-left 20s linear infinite;
    }
}

@media (max-width: 768px) {
    .testimonials-scroll {
        animation: scroll-left 15s linear infinite;
    }
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonial-card {
    flex: none;
    width: 85vw;
    max-width: 280px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 16px;
    border: 1px solid #f3f4f6;
}

@media (min-width: 640px) {
    .testimonial-card {
        width: 288px;
        padding: 20px;
    }
}

@media (min-width: 768px) {
    .testimonial-card {
        width: 320px;
        padding: 24px;
    }
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

@media (min-width: 640px) {
    .testimonial-header {
        gap: 16px;
        margin-bottom: 16px;
    }
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #FF9900;
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .testimonial-avatar {
        width: 64px;
        height: 64px;
    }
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    min-width: 0;
    flex: 1;
}

.testimonial-name {
    font-weight: bold;
    color: #232F3E;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 640px) {
    .testimonial-name {
        font-size: 18px;
    }
}

.testimonial-role {
    font-size: 12px;
    color: #4b5563;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 640px) {
    .testimonial-role {
        font-size: 14px;
    }
}

.testimonial-company {
    font-size: 12px;
    color: #FF9900;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-message {
    color: #4b5563;
    font-style: italic;
    line-height: 1.75;
    font-size: 14px;
}

@media (min-width: 640px) {
    .testimonial-message {
        font-size: 16px;
    }
}

.testimonial-stars {
    margin-top: 16px;
    display: flex;
    color: #FF9900;
    font-size: 18px;
}

/* Projects Section */
.projects {
    padding: 32px 0;
}

@media (min-width: 640px) {
    .projects {
        padding: 48px 0;
    }
}

@media (min-width: 768px) {
    .projects {
        padding: 80px 0;
    }
}

.gallery-toggle {
    margin-top: 24px;
}

@media (min-width: 640px) {
    .gallery-toggle {
        margin-top: 32px;
    }
}

.btn-gallery {
    background-color: #232F3E;
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

@media (min-width: 640px) {
    .btn-gallery {
        padding: 10px 24px;
        font-size: 16px;
    }
}

.btn-gallery:hover {
    background-color: #37475A;
}

.gallery-view {
    margin-top: 16px;
}

@media (min-width: 640px) {
    .gallery-view {
        margin-top: 24px;
    }
}

@media (min-width: 768px) {
    .gallery-view {
        margin-top: 32px;
    }
}

.gallery-main {
    position: relative;
    background-color: #000000;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .gallery-main {
        margin-bottom: 24px;
    }
}

@media (min-width: 768px) {
    .gallery-main {
        margin-bottom: 32px;
    }
}

.gallery-main-img {
    width: 100%;
    height: 192px;
    object-fit: contain;
}

@media (min-width: 640px) {
    .gallery-main-img {
        height: 256px;
    }
}

@media (min-width: 768px) {
    .gallery-main-img {
        height: 384px;
    }
}

@media (min-width: 1024px) {
    .gallery-main-img {
        height: 500px;
    }
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    padding: 6px;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .gallery-nav-btn {
        padding: 8px;
    }
}

@media (min-width: 768px) {
    .gallery-nav-btn {
        padding: 8px;
    }
}

.gallery-nav-btn:hover {
    background-color: rgba(255, 255, 255, 1);
}

.gallery-nav-btn svg {
    width: 18px;
    height: 18px;
    color: #232F3E;
}

@media (min-width: 640px) {
    .gallery-nav-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (min-width: 768px) {
    .gallery-nav-btn svg {
        width: 24px;
        height: 24px;
    }
}

.gallery-nav-prev {
    left: 8px;
}

@media (min-width: 640px) {
    .gallery-nav-prev {
        left: 16px;
    }
}

.gallery-nav-next {
    right: 8px;
}

@media (min-width: 640px) {
    .gallery-nav-next {
        right: 16px;
    }
}

.gallery-counter {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    padding: 4px 8px;
    border-radius: 9999px;
    font-size: 12px;
}

@media (min-width: 640px) {
    .gallery-counter {
        bottom: 16px;
        padding: 6px 12px;
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .gallery-counter {
        padding: 8px 16px;
        font-size: 16px;
    }
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

@media (min-width: 640px) {
    .gallery-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
}

@media (min-width: 768px) {
    .gallery-thumbnails {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-thumbnails {
        grid-template-columns: repeat(12, 1fr);
    }
}

.gallery-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 0.7;
}

.gallery-thumbnail:hover {
    opacity: 1;
}

.gallery-thumbnail.active {
    opacity: 1;
    outline: 4px solid #FF9900;
    outline-offset: -4px;
}

.gallery-thumbnail img {
    width: 100%;
    height: 40px;
    object-fit: cover;
}

@media (min-width: 640px) {
    .gallery-thumbnail img {
        height: 48px;
    }
}

@media (min-width: 768px) {
    .gallery-thumbnail img {
        height: 64px;
    }
}

/* Skills Section */
.skills {
    padding: 32px 0;
    background-color: #f9fafb;
}

@media (min-width: 640px) {
    .skills {
        padding: 48px 0;
    }
}

@media (min-width: 768px) {
    .skills {
        padding: 80px 0;
    }
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

@media (min-width: 640px) {
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (min-width: 768px) {
    .skills-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .skills-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.skill-card {
    background-color: white;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s;
    transform: scale(1);
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .skill-card {
        padding: 16px;
        min-height: 80px;
    }
}

@media (min-width: 768px) {
    .skill-card {
        padding: 24px;
        min-height: 100px;
    }
}

.skill-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(1.05) translateY(-8px);
}

.skill-text {
    font-size: 12px;
    color: #232F3E;
    font-weight: 500;
    padding: 0 4px;
    transition: color 0.3s;
}

@media (min-width: 640px) {
    .skill-text {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .skill-text {
        font-size: 16px;
    }
}

.skill-card:hover .skill-text {
    color: #FF9900;
}

/* Contact Section */
.contact {
    padding: 32px 0;
}

@media (min-width: 640px) {
    .contact {
        padding: 48px 0;
    }
}

@media (min-width: 768px) {
    .contact {
        padding: 80px 0;
    }
}

.contact-content {
    max-width: 1024px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .contact-intro {
        margin-bottom: 40px;
    }
}

@media (min-width: 768px) {
    .contact-intro {
        margin-bottom: 48px;
    }
}

.contact-intro-title {
    font-size: 20px;
    font-weight: bold;
    color: #232F3E;
    margin-bottom: 12px;
}

@media (min-width: 640px) {
    .contact-intro-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
}

@media (min-width: 768px) {
    .contact-intro-title {
        font-size: 32px;
        margin-bottom: 24px;
    }
}

.contact-intro-text {
    font-size: 14px;
    color: #4b5563;
    margin-bottom: 24px;
    padding: 0 12px;
}

@media (min-width: 640px) {
    .contact-intro-text {
        font-size: 16px;
        margin-bottom: 32px;
    }
}

@media (min-width: 768px) {
    .contact-intro-text {
        font-size: 18px;
        margin-bottom: 24px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 640px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}

.contact-card {
    background-color: white;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s;
    transform: scale(1);
}

@media (min-width: 640px) {
    .contact-card {
        padding: 16px;
    }
}

@media (min-width: 768px) {
    .contact-card {
        padding: 24px;
    }
}

.contact-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(1.05);
}

.contact-icon-link {
    display: block;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: #FF9900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 8px;
    transition: background-color 0.3s;
    cursor: pointer;
}

@media (min-width: 640px) {
    .contact-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
}

@media (min-width: 768px) {
    .contact-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    color: white;
}

.contact-icon-link:hover .contact-icon {
    background-color: #E68900;
}

.contact-card-title {
    font-size: 14px;
    font-weight: bold;
    color: #232F3E;
    margin-bottom: 4px;
}

@media (min-width: 640px) {
    .contact-card-title {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

@media (min-width: 768px) {
    .contact-card-title {
        font-size: 18px;
    }
}

.contact-card-link {
    font-size: 12px;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s;
    word-break: break-all;
    padding: 0 4px;
}

@media (min-width: 640px) {
    .contact-card-link {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .contact-card-link {
        font-size: 16px;
    }
}

.contact-card-link:hover {
    color: #FF9900;
}

.contact-card-text {
    font-size: 12px;
    color: #4b5563;
}

@media (min-width: 640px) {
    .contact-card-text {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .contact-card-text {
        font-size: 16px;
    }
}

.contact-cta {
    text-align: center;
    margin-top: 24px;
}

@media (min-width: 640px) {
    .contact-cta {
        margin-top: 32px;
    }
}

@media (min-width: 768px) {
    .contact-cta {
        margin-top: 48px;
    }
}

.cta-content {
    background: linear-gradient(to right, #232F3E, #37475A);
    padding: 16px;
    border-radius: 8px;
}

@media (min-width: 640px) {
    .cta-content {
        padding: 24px;
    }
}

@media (min-width: 768px) {
    .cta-content {
        padding: 32px;
    }
}

.cta-title {
    font-size: 18px;
    font-weight: bold;
    color: white;
    margin-bottom: 8px;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 24px;
        margin-bottom: 16px;
    }
}

.cta-text {
    font-size: 12px;
    color: #d1d5db;
    margin-bottom: 12px;
    max-width: 672px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 12px;
}

@media (min-width: 640px) {
    .cta-text {
        font-size: 14px;
        margin-bottom: 16px;
    }
}

@media (min-width: 768px) {
    .cta-text {
        font-size: 16px;
        margin-bottom: 24px;
    }
}

/* Footer */
.footer {
    background-color: #232F3E;
    color: white;
    padding: 24px 0;
}

@media (min-width: 640px) {
    .footer {
        padding: 32px 0;
    }
}

.footer-content {
    text-align: center;
}

.footer-text {
    font-size: 12px;
    color: #9ca3af;
}

@media (min-width: 640px) {
    .footer-text {
        font-size: 14px;
    }
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
}

@media (min-width: 640px) {
    .footer-social {
        gap: 24px;
        margin-top: 16px;
    }
}

.footer-social-link {
    color: #9ca3af;
    transition: color 0.3s;
}

.footer-social-link:hover {
    color: #FF9900;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 16px;
    right: 16px;
    background-color: #25D366;
    color: white;
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

@media (min-width: 640px) {
    .whatsapp-btn {
        bottom: 24px;
        right: 24px;
        padding: 16px;
    }
}

@media (min-width: 768px) {
    .whatsapp-btn {
        bottom: 32px;
        right: 32px;
    }
}

.whatsapp-btn:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

@media (min-width: 640px) {
    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 8px;
    background-color: #000000;
    color: white;
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 6px;
    opacity: 0;
    transition: opacity 0.2s;
    white-space: nowrap;
    pointer-events: none;
}

@media (min-width: 640px) {
    .whatsapp-tooltip {
        font-size: 14px;
        padding: 4px 12px;
    }
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

@media (max-width: 640px) {
    .whatsapp-tooltip {
        display: none;
    }
}
