@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;600&display=swap');

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

body {
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1.7;
    color: #1c1c1c;
    background: #f2f4f4;
}

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

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

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Section - Modern Asymmetric (from Modern Design) */
.header {
    background: #1c1c1c;
    color: #f2f4f4;
    padding: 60px 0 80px;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, #1197c1, #83cbdb);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
    opacity: 0.9;
}

.header .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
}

.header .logo-container {
    animation: fadeInUp 0.8s ease;
    background: rgba(242, 244, 244, 0.98);
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(131, 203, 219, 0.3);
    position: relative;
}

.header .main-logo {
    height: 90px;
    width: auto;
    display: block;
    content: url('images/hornback_communications_bw_half_box_logo.svg');
    position: relative;
    z-index: 2;
}

.header .location {
    font-size: 1.2rem;
    font-weight: 300;
    color: #83cbdb;
    animation: slideInFromRight 0.8s ease 0.3s both;
    text-align: right;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Top Navigation Bar */
.top-nav {
    background: #1c1c1c;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(131, 203, 219, 0.2);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav-links a {
    color: #f2f4f4;
    text-decoration: none;
    font-weight: 300;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    background: rgba(131, 203, 219, 0.15);
    color: #83cbdb;
    transform: translateY(-1px);
}

/* Rest of Content - Linear Corporate Style (from Original Design) */

/* About Section - Clean Professional */
.about {
    padding: 80px 0;
    background: #f8fafc;
    border-top: 3px solid #e2e8f0;
}

.about h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.75rem;
    color: #1197c1;
    margin-bottom: 50px;
    text-align: left;
    font-weight: 600;
    position: relative;
    padding-left: 60px;
}

.about h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 3px;
    background: #83cbdb;
}

.about p {
    font-size: 1.2rem;
    text-align: left;
    max-width: 800px;
    color: #1c1c1c;
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

/* Owner Section - Professional Bio */
.owner {
    padding: 80px 0;
    background: #f2f4f4;
}

.owner-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 80px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.owner-image {
    position: relative;
}

.owner-image img {
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.owner-image img:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.owner-text h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.5rem;
    color: #1197c1;
    margin-bottom: 10px;
    font-weight: 600;
}

.owner-text h3 {
    font-size: 1.1rem;
    color: #83cbdb;
    margin-bottom: 40px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.owner-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #1c1c1c;
    margin-bottom: 25px;
}

/* Services Section - Enhanced Visual Design */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(17, 151, 193, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.services h2 {
    font-size: 2.5rem;
    color: #1197c1;
    margin-bottom: 40px;
    text-align: left;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    padding-left: 60px;
    position: relative;
    z-index: 2;
}

.services h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 3px;
    background: #83cbdb;
}

.services-intro {
    max-width: 700px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.services-intro p {
    font-size: 1.15rem;
    color: #1c1c1c;
    line-height: 1.7;
    font-weight: 300;
    text-align: center;
    margin: 0 auto;
    font-style: italic;
    padding: 0 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.service-card {
    background: #ffffff;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(17, 151, 193, 0.03), transparent);
    transition: left 0.6s ease;
    z-index: 0;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(17, 151, 193, 0.15);
    border-color: rgba(131, 203, 219, 0.3);
}

.service-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0;
    align-items: start;
}

.service-icon {
    background: linear-gradient(135deg, #1197c1, #83cbdb);
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px 0 0 20px;
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon svg {
    width: 48px;
    height: 48px;
    color: #ffffff;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.service-content {
    padding: 40px 40px 40px 30px;
    position: relative;
    z-index: 1;
}

.service-content h3 {
    font-size: 1.6rem;
    color: #1197c1;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Josefin Sans', sans-serif;
    position: relative;
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.highlight {
    background: linear-gradient(135deg, rgba(17, 151, 193, 0.1), rgba(131, 203, 219, 0.1));
    color: #1197c1;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(17, 151, 193, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover .highlight {
    background: linear-gradient(135deg, rgba(17, 151, 193, 0.15), rgba(131, 203, 219, 0.15));
    border-color: rgba(17, 151, 193, 0.3);
    transform: translateY(-2px);
}

.service-content p {
    color: #1c1c1c;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 25px;
    font-weight: 300;
}

.service-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #1c1c1c;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.service-card:hover .benefit-item {
    transform: translateX(5px);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(17, 151, 193, 0.1), rgba(131, 203, 219, 0.1));
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(17, 151, 193, 0.2);
}

.benefit-icon svg {
    width: 12px;
    height: 12px;
    color: #1197c1;
}

/* Clients Section - NEW SHOWCASE CAROUSEL LAYOUT */
.clients {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

/* Hide the original client grid for showcase design */
.client-types {
    display: none;
}

.clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #1197c1, transparent);
}

.clients h2 {
    font-size: 2.5rem;
    color: #1197c1;
    margin-bottom: 60px;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    position: relative;
}

.clients h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1197c1, #83cbdb);
    border-radius: 2px;
}

.clients-showcase {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.clients-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #1c1c1c;
    margin-bottom: 50px;
    font-weight: 300;
    line-height: 1.7;
}

.clients-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(135deg, #f2f4f4, #ffffff);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #83cbdb;
}

.clients-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.client-slide {
    min-width: 100%;
    padding: 60px 50px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(17, 151, 193, 0.02), rgba(242, 244, 244, 0.8));
}

.client-content {
    flex: 1;
    width: 100%;
}

.client-name {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1197c1;
    margin-bottom: 15px;
    font-family: 'Josefin Sans', sans-serif;
}

.client-service {
    font-size: 1.1rem;
    color: #83cbdb;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.client-description {
    font-size: 1.05rem;
    color: #1c1c1c;
    line-height: 1.7;
    font-weight: 300;
    max-width: 500px;
}


.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    background: #1197c1;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(17, 151, 193, 0.3);
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
}

.carousel-btn:hover {
    background: #83cbdb;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(17, 151, 193, 0.4);
}

.carousel-btn:disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.carousel-indicators {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #1197c1;
    transform: scale(1.2);
}

.carousel-counter {
    color: #1197c1;
    font-weight: 600;
    font-size: 1rem;
    margin: 0 15px;
    font-family: 'Josefin Sans', sans-serif;
}

/* Values Section - Timeline Style */
.values {
    padding: 80px 0;
    background: #f2f4f4;
}

.values h2 {
    font-size: 2.5rem;
    color: #1197c1;
    margin-bottom: 60px;
    text-align: left;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    padding-left: 60px;
    position: relative;
}

.values h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 3px;
    background: #83cbdb;
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 800px;
    position: relative;
}

.values-grid::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #1197c1;
}

.value-item {
    text-align: left;
    padding: 0 0 0 80px;
    position: relative;
}

.testimonial-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    border: 2px solid #83cbdb;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.value-item::before {
    display: none;
}

.value-item h3 {
    font-size: 1.4rem;
    color: #1197c1;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-item p {
    color: #1c1c1c;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Contact Section - Professional Consultation Layout */
.contact {
    padding: 80px 0;
    background: #1c1c1c;
    color: #f2f4f4;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #83cbdb, transparent);
}

.contact h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: left;
    font-weight: 600;
    padding-left: 60px;
    position: relative;
}

.contact h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 3px;
    background: #83cbdb;
}

/* Contact Methods Grid */
.contact-methods {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-method {
    background: #1c1c1c;
    border-radius: 8px;
    padding: 40px;
    border: 1px solid #83cbdb;
}

.method-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #83cbdb;
}

.method-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    color: #f2f4f4;
}

.method-header p {
    color: #83cbdb;
    line-height: 1.6;
    font-size: 1rem;
}

/* Contact Details */
.method-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
    border-bottom: 1px solid #83cbdb;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.85rem;
    color: #1197c1;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.detail-value {
    font-size: 1.1rem;
    font-weight: 300;
    color: #f2f4f4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-value:hover {
    color: #1197c1;
}

/* Consultation Form */
.consultation-form {
    /* Inherits styles from parent .contact-method */
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1197c1;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #83cbdb;
    border-radius: 6px;
    background: #1c1c1c;
    color: #f2f4f4;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Josefin Sans', sans-serif;
}

.form-footer {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #334155;
}

.form-footer p {
    font-size: 0.9rem;
    color: #1197c1;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.form-group select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%231197c1" d="m0 1 2 2 2-2z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 12px;
    cursor: pointer;
    font-weight: 300;
}

.form-group select:hover {
    border-color: #83cbdb;
    background-color: #1c1c1c;
}

.form-group select option {
    background: #334155;
    color: #e2e8f0;
    padding: 12px 16px;
    font-size: 1rem;
    border: none;
    line-height: 1.4;
}

.form-group select option:hover {
    background: #475569;
}

.form-group select option:checked,
.form-group select option:selected {
    background: #64748b;
    font-weight: 600;
}

.form-group select option[value=""] {
    color: #94a3b8;
    font-style: italic;
    background: #1e293b;
}

/* Custom select styling for better cross-browser support */
.form-group select::-ms-expand {
    display: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #83cbdb;
    background: #1c1c1c;
    box-shadow: 0 0 0 3px rgba(131, 203, 219, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #1197c1;
}

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

.submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: #1197c1;
    color: #f2f4f4;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Josefin Sans', sans-serif;
}

.submit-btn:hover {
    background: #1c1c1c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Responsive Design */

@media (max-width: 968px) {
    .container {
        padding: 0 30px;
    }
    
    .header .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .nav-links {
        gap: 25px;
        flex-wrap: wrap;
    }
    
    .nav-links a {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
    
    .header::before {
        width: 100%;
        clip-path: none;
    }
    
    .owner-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: left;
    }
    
    .owner-image {
        text-align: center;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .values-grid::before {
        display: none;
    }
    
    .value-item {
        padding-left: 0;
        padding-top: 80px;
    }
    
    .value-item::before {
        display: none;
    }
    
    .testimonial-image {
        left: 50%;
        top: 10px;
        transform: translateX(-50%);
    }
    
    .client-slide {
        text-align: center;
        padding: 40px 30px;
    }
    
    .client-content {
        width: 100%;
    }
    
    .service-card {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .service-icon {
        border-radius: 20px 20px 0 0;
        padding: 30px;
        justify-content: center;
    }
    
    .service-content {
        padding: 30px;
    }
    
    .service-highlights {
        justify-content: center;
    }

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header h1 {
        font-size: 2.8rem;
        text-align: center;
    }
    
    .header .tagline,
    .header .location {
        text-align: center;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .about h2, .services h2, .clients h2, .values h2, .contact h2 {
        font-size: 2.2rem;
        text-align: center;
        padding-left: 0;
    }
    
    .about h2::before, .services h2::before, .clients h2::after, .values h2::before, .contact h2::before {
        display: none;
    }
    
    .about p {
        text-align: center;
    }
    
    .owner-text h2 {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .owner-image img {
        width: 250px;
        height: 300px;
    }
    
    .service-card {
        grid-template-columns: 1fr;
        margin: 0 10px;
    }
    
    .service-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
    
    .service-icon {
        border-radius: 20px 20px 0 0;
        padding: 25px;
    }
    
    .service-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .service-content {
        padding: 25px 20px;
    }
    
    .service-content h3 {
        font-size: 1.4rem;
        text-align: center;
    }
    
    .service-highlights {
        justify-content: center;
    }
    
    .services-intro p {
        font-size: 1.05rem;
    }
    
    .contact-method {
        padding: 30px 25px;
    }
    
    .contact-methods {
        gap: 40px;
    }
    
    .client-slide {
        padding: 30px 20px;
    }
    
    .client-name {
        font-size: 1.8rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 60px 0 80px;
    }
    
    .header h1 {
        font-size: 2.2rem;
    }
    
    .header .tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .nav-links {
        gap: 15px;
    }
    
    .nav-links a {
        font-size: 0.75rem;
        padding: 4px 8px;
        letter-spacing: 0.5px;
    }
    
    .about, .services, .owner, .contact, .clients, .values {
        padding: 60px 0;
    }
    
    .owner-image img {
        width: 200px;
        height: 250px;
    }
    
    .service-card {
        margin: 0 5px;
        border-radius: 15px;
    }
    
    .service-card:hover {
        transform: translateY(-3px) scale(1.005);
    }
    
    .service-icon {
        border-radius: 15px 15px 0 0;
        padding: 20px;
    }
    
    .service-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .service-content {
        padding: 20px 15px;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .service-benefits {
        gap: 8px;
    }
    
    .benefit-item {
        font-size: 0.9rem;
    }
    
    .services-intro p {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .contact-method {
        padding: 25px 20px;
    }
    
    .contact-methods {
        gap: 30px;
    }
    
    .client-slide {
        padding: 25px 15px;
    }
    
    .clients-carousel {
        border-radius: 10px;
    }
}