* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    color: #333;
    background: linear-gradient(to bottom, #fafafa 0%, #f0f0f0 100%);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #6200ea 0%, #9c27b0 50%, #00bcd4 100%);
    padding: 80px 40px;
    text-align: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9em;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 3.2em;
    margin-bottom: 30px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: #ffeb3b;
}

.domain-name {
    display: inline-block;
    background-color: #ffffff;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.5em;
    color: #6200ea;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.domain-name:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(98, 0, 234, 0.3);
}

.price {
    font-size: 1.3em;
    color: #ffffff;
    margin-top: 20px;
}

.price strong {
    font-size: 1.5em;
    color: #ffeb3b;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
    color: #6200ea;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 235, 59, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 235, 59, 0.6);
}

.cta-button:active {
    transform: translateY(-1px) scale(1.02);
}

.star {
    font-size: 3em;
    color: #ffeb3b;
    margin-top: 20px;
    animation: pulse 2s ease-in-out infinite;
    display: inline-block;
}

/* Info Section */
.info-section {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.info-box {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    border-top: 4px solid #6200ea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(98, 0, 234, 0.2);
}

.icon {
    font-size: 2.5em;
    color: #9c27b0;
    margin-bottom: 15px;
}

.info-box h2 {
    font-size: 1.8em;
    background: linear-gradient(135deg, #6200ea 0%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
}

.info-box p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #555;
}

/* Mockup Section */
.mockup-section {
    margin: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #6200ea 0%, #9c27b0 50%, #00bcd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.mockup-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.browser-mockup {
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.browser-mockup:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(98, 0, 234, 0.15);
}

.browser-bar {
    background: linear-gradient(to bottom, #e8e8e8, #d0d0d0);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #999;
}

.browser-dots span:nth-child(1) {
    background-color: #ff5f56;
}

.browser-dots span:nth-child(2) {
    background-color: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background-color: #27c93f;
}

.browser-url {
    flex: 1;
    background-color: #fff;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 0.9em;
    color: #666;
}

.mockup-content {
    background: #fff;
    padding: 0;
}

.mock-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.mock-logo {
    font-weight: 700;
    font-size: 1.3em;
    color: #ffffff;
}

.mock-nav {
    display: flex;
    gap: 25px;
    font-size: 0.9em;
}

.mock-nav span {
    color: #ffffff;
    cursor: default;
    opacity: 0.9;
}

/* Tire Shop Hero Banner */
.mock-hero-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    position: relative;
    text-align: center;
    color: white;
}

.banner-content h3 {
    font-size: 2.5em;
    margin: 0 0 15px 0;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.banner-content p {
    font-size: 1.2em;
    margin-bottom: 25px;
    opacity: 0.95;
}

.mock-button {
    background: #ffeb3b;
    color: #333;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.mock-button:hover {
    transform: translateY(-2px);
}

.banner-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff5722;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

/* Tire Grid */
.tire-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px;
    background-color: #f5f5f5;
}

.tire-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tire-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(98, 0, 234, 0.15);
}

.tire-image {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 3px solid #9c27b0;
}

.tire-icon {
    font-size: 5em;
    opacity: 0.3;
}

.tire-label {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #4caf50;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
}

.tire-label.bestseller {
    background: #ff9800;
}

.tire-label.sale {
    background: #f44336;
}

.tire-info {
    padding: 20px;
    text-align: center;
}

.tire-info h4 {
    margin: 0 0 8px 0;
    font-size: 1em;
    color: #333;
    font-weight: 700;
}

.tire-size {
    color: #666;
    font-size: 0.9em;
    margin: 5px 0;
}

.tire-price {
    font-size: 1.5em;
    color: #6200ea;
    font-weight: 700;
    margin: 12px 0;
}

.tire-btn {
    background: linear-gradient(135deg, #6200ea 0%, #9c27b0 100%);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: transform 0.2s ease;
}

.tire-btn:hover {
    transform: scale(1.05);
}

/* Services Section */
.mock-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 40px;
    background-color: #fff;
}

.service-card {
    text-align: center;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-top: 3px solid #9c27b0;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.service-card p {
    margin: 0;
    font-size: 0.95em;
    color: #555;
    font-weight: 600;
}

.mockup-note {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1f5fe 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #6200ea;
    text-align: center;
}

.mockup-note p {
    margin: 0 0 20px 0;
    line-height: 1.7;
    color: #555;
    font-size: 1em;
}

.secondary-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #6200ea 0%, #9c27b0 100%);
    color: #ffffff;
    padding: 12px 35px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(98, 0, 234, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.secondary-cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(98, 0, 234, 0.4);
}

/* Contact Section */
.contact-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #e1f5fe 0%, #f3e5f5 100%);
    padding: 50px;
    border-radius: 20px;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.contact-details {
    flex: 2;
    min-width: 300px;
}

.contact-details p {
    font-size: 1.05em;
    line-height: 1.8;
    margin: 0;
    color: #555;
}

.contact-cta {
    background: linear-gradient(135deg, #6200ea 0%, #9c27b0 100%);
    color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 8px 20px rgba(98, 0, 234, 0.4);
    position: relative;
}

.contact-cta h2 {
    margin-top: 0;
    font-size: 2em;
    font-weight: 700;
}

.cta-highlight {
    color: #ffeb3b;
}

.contact-name {
    font-size: 1.4em;
    margin: 15px 0 10px 0;
    font-weight: 600;
    color: #ffffff;
}

.contact-cta a {
    color: #ffeb3b;
    text-decoration: none;
    font-size: 1.2em;
    display: block;
    margin-top: 15px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.contact-cta a:hover {
    text-decoration: underline;
    transform: scale(1.05);
}

.domain-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.85em;
    margin-top: 25px;
    display: inline-block;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .tire-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mock-services {
        grid-template-columns: repeat(2, 1fr);
    }

    .mock-nav {
        display: none;
    }

    .banner-badge {
        width: 60px;
        height: 60px;
        font-size: 1.3em;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2em;
    }

    .domain-name {
        font-size: 1.2em;
        padding: 12px 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        font-size: 1em;
        padding: 14px 30px;
        width: 100%;
        max-width: 280px;
    }

    .section-title {
        font-size: 1.8em;
    }

    .info-section {
        flex-direction: column;
        gap: 20px;
    }

    .banner-content h3 {
        font-size: 1.8em;
    }

    .tire-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .mock-services {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .contact-section {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .mockup-container {
        padding: 20px;
    }

    .mock-header {
        padding: 15px 20px;
    }

    .mock-hero-banner {
        padding: 40px 20px;
    }
}
