/* 
   Rocko's Bulldogs - English Bulldog Adoption Website
   Main Stylesheet
*/

/* Variables */
:root {
    --primary-color: #333333; /* Dark gray as primary */
    --primary-dark: #222222; /* Darker gray */
    --primary-light: #555555; /* Lighter gray */
    --secondary-color: #bd945a; /* Brownish Gold as accent */
    --secondary-light: #d3ad76; /* Lighter gold */
    --text-color: #e0e0e0; /* Light gray text */
    --light-color: #e8e8e8; /* Very light gray instead of white */
    --off-white: #2a2a2a; /* Dark gray background */
    --bg-light: #222222; /* Darker background */
    --bg-gray: #333333; /* Gray for cards */
    --border-color: #444444; /* Border color */
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    --section-padding: 100px 0;
}

/* Base Styles with Pepito fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%; /* 10px */
    scroll-behavior: smooth;
}

body {
    font-family: 'Mulish', sans-serif;
    font-size: 1.6rem;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--off-white);
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--light-color);
    font-weight: 700;
}

h1 {
    font-size: 5.2rem;
}

h2 {
    font-size: 3.8rem;
}

h3 {
    font-size: 2.6rem;
}

h4 {
    font-size: 2rem;
    color: var(--secondary-color);
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.8rem;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
    margin-bottom: 1.5rem;
}

.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: var(--section-padding);
    position: relative;
}

.bg-light {
    background-color: var(--bg-light);
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--off-white);
    padding: 1.4rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
    font-size: 1.4rem;
    cursor: pointer;
}

.btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 1.4rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
    font-size: 1.4rem;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--off-white);
}

.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-header h4 {
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 2rem;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 5rem;
    height: 0.3rem;
    background-color: var(--secondary-color);
    transform: translateX(-50%);
}

.section-header p {
    max-width: 70rem;
    margin: 0 auto;
}

.section-header.light h2,
.section-header.light h4,
.section-header.light p {
    color: var(--light-color);
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #121212; /* Darker background */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Stronger shadow */
    padding: 2.5rem 0;
    transition: var(--transition);
}

#header.sticky {
    padding: 1.5rem 0;
    background-color: #121212; /* Consistent dark background when sticky */
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 2.6rem; /* Increased font size */
    font-weight: 700;
    color: #ffffff; /* Pure white for better contrast */
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.logo a:hover {
    color: var(--secondary-color);
}

.logo a i {
    margin-right: 1.5rem;
    color: var(--secondary-color); /* Accent color for icon */
}

/* SVG Logo styling */
.logo-svg {
    display: flex;
    align-items: center;
}

.logo-svg svg {
    width: 3rem;
    height: 3rem;
    margin-right: 1.5rem;
    color: var(--secondary-color);
}

.logo-svg:hover svg {
    color: #ffffff;
}

.logo-svg span {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
}

/* PNG Logo styling */
.logo-image {
    display: flex;
    align-items: center;
}

.logo-image img {
    margin-right: 1.5rem;
    vertical-align: middle;
}

.logo-image span {
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
}

.logo-image:hover span {
    color: var(--secondary-color);
}

/* Logo options - can be toggled by changing classes */
.logo-current, .logo-alt {
    width: 100%;
}

.logo-alt {
    display: none;
}

/* To switch logos, add .show-alt-logo to the .logo div */
.logo.show-alt-logo .logo-current {
    display: none;
}

.logo.show-alt-logo .logo-alt {
    display: flex;
}

/* Logo toggle button */
.logo-switch {
    background: transparent;
    border: none;
    color: var(--secondary-color);
    font-size: 1.4rem;
    cursor: pointer;
    margin-left: 1rem;
    padding: 0.5rem;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.logo-switch:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
}

.main-nav ul {
    display: flex;
    margin: 0;
}

.main-nav ul li {
    margin-left: 2.5rem;
    position: relative;
}

.main-nav ul li a {
    color: #ffffff; /* Brighter text for better contrast */
    font-weight: 600;
    font-size: 1.6rem; /* Slightly larger font */
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.main-nav ul li a:hover,
.main-nav ul li.active a {
    color: var(--secondary-color);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0.2rem;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.main-nav ul li a:hover::after,
.main-nav ul li.active a::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 2.4rem;
    color: var(--light-color);
    cursor: pointer;
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/page-header.jpg') no-repeat center center/cover;
    padding: 18rem 0 10rem;
    text-align: center;
    color: var(--light-color);
    position: relative;
    overflow: visible;
}

.page-header h1 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
    font-size: 4.8rem;
    position: relative;
    z-index: 5;
}

.page-header p {
    font-size: 1.8rem;
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

/* About Main Section */
.about-main .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.about-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    flex: 1;
    min-width: 12rem;
}

.stat-item h3 {
    font-size: 3.6rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.stat-item p {
    font-weight: 600;
    margin-bottom: 0;
}

/* Mission Section */
.mission .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-list li {
    display: flex;
    margin-bottom: 3rem;
}

.mission-icon {
    flex-shrink: 0;
    width: 6rem;
    height: 6rem;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 2rem;
    font-size: 2.4rem;
}

.mission-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.mission-image img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
}

.value-card {
    background-color: var(--bg-gray);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.value-card:hover {
    transform: translateY(-0.5rem);
}

.value-icon {
    width: 8rem;
    height: 8rem;
    background-color: var(--primary-dark);
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
    font-size: 3rem;
}

.value-card h3 {
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('../images/cta-bg.jpg') no-repeat center center/cover;
    color: var(--light-color);
    padding: 12rem 0;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--secondary-color) 3px, transparent 3px);
    background-size: 60px 60px;
    opacity: 0.05;
    pointer-events: none;
}

.cta-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.cta-text {
    flex: 1;
    min-width: 300px;
    position: relative;
    z-index: 2;
}

.cta-text h4 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta h2 {
    color: var(--light-color);
    margin-bottom: 2.5rem;
    font-size: 4.2rem;
    position: relative;
    padding-bottom: 2rem;
}

.cta h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 8rem;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.cta p {
    font-size: 1.8rem;
    margin-bottom: 3.5rem;
    max-width: 60rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.cta-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.cta-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
}

.cta-image:hover img {
    transform: translateY(-10px);
}

.cta-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    border-radius: 10px;
    top: 20px;
    left: 20px;
    z-index: 1;
}

@media (max-width: 991px) {
    .cta-content {
        flex-direction: column;
    }
    
    .cta-image {
        margin-top: 4rem;
        width: 100%;
        max-width: 500px;
    }
}

/* Hero Section */
.hero {
    background-color: var(--bg-dark);
    height: 100vh;
    min-height: 60rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 10rem;
}

.hero::before {
    display: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: url('../images/home-hero-rocko.jpg') center/cover no-repeat;
    clip-path: polygon(15% 0, 100% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

.hero-content {
    max-width: 60rem;
    padding-right: 3rem;
    margin-left: 5%;
    z-index: 2;
    text-align: left;
    width: 45%;
}

.hero-content h4 {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--light-color);
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    color: var(--text-color);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.hero-contact {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
}

.hero-contact p {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    margin: 0;
    color: var(--text-color);
}

.hero-contact i {
    color: var(--secondary-color);
    margin-right: 1rem;
    font-size: 1.8rem;
}

/* About Intro Section */
.about-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: 50px;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: 
        linear-gradient(45deg, var(--secondary-color) 25%, transparent 25%),
        linear-gradient(-45deg, var(--secondary-color) 25%, transparent 25%);
    background-size: 20px 20px;
    opacity: 0.05;
    z-index: 0;
}

.about-intro-text ul {
    margin: 3rem 0;
}

.about-intro-text ul li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.about-intro-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.about-intro-image {
    position: relative;
}

.contact-box {
    position: absolute;
    right: -3rem;
    bottom: 3rem;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 3rem;
    border-radius: 12px;
    max-width: 30rem;
    box-shadow: var(--box-shadow);
}

.contact-box h3 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.contact-box p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.contact-box span {
    font-weight: 600;
    font-size: 1.8rem;
}

/* Services Section */
.services {
    background-color: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: var(--bg-gray);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-1rem);
}

.service-card::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    top: -25px;
    right: -25px;
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    transform: scale(0);
    z-index: 0;
}

.service-card:hover::before {
    transform: scale(6);
    opacity: 0.05;
}

.service-icon {
    width: 7rem;
    height: 7rem;
    background-color: var(--primary-dark);
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-bottom: 2.5rem;
    font-size: 2.8rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--secondary-color);
    color: var(--off-white);
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-block;
    font-weight: 600;
    color: var(--secondary-color);
    position: relative;
    padding-right: 2.5rem;
}

.read-more::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}

.read-more:hover::after {
    right: -0.5rem;
}

/* Why Us Section */
.why-us .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-us-features {
    display: flex;
    gap: 5rem;
    margin-top: 4rem;
}

.features-column ul li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}

.features-column ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* Adoption Preview Section */
.adoption-preview {
    background-color: var(--bg-light);
}

.bulldogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 3rem;
}

.bulldog-card {
    background-color: var(--bg-gray);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.bulldog-card:hover {
    transform: translateY(-1rem);
}

.bulldog-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 5px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.bulldog-card:hover::after {
    width: 100%;
}

.bulldog-image {
    height: 30rem;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.bulldog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
}

.bulldog-card:hover .bulldog-image img {
    transform: scale(1.1);
}

.bulldog-info {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-gray);
}

.bulldog-info h3 {
    margin-bottom: 1.5rem;
}

.bulldog-info ul {
    margin-bottom: 2rem;
}

.bulldog-info ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.bulldog-info ul li i {
    color: var(--secondary-color);
    margin-right: 1rem;
    width: 2rem;
    text-align: center;
}

.bulldog-info ul li strong {
    color: var(--secondary-color);
    margin-right: 0.5rem;
    font-weight: 600;
}

.bulldog-info p {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.adoption-cta {
    text-align: center;
    margin-top: 5rem;
}

.adoption-cta p {
    margin-top: 2rem;
    font-size: 1.8rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
}

.team-member {
    background-color: var(--bg-gray);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-1rem);
}

.member-image {
    height: 35rem;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-info {
    padding: 3rem;
    text-align: center;
}

.member-info h5 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.member-info p {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-light);
}

.testimonials-slider {
    max-width: 90rem;
    margin: 0 auto;
    display: flex;
    overflow-x: hidden;
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 2rem;
    transition: var(--transition);
}

.testimonial-text {
    background-color: var(--bg-gray);
    padding: 5rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.testimonial-text::before {
    content: '"';
    font-size: 10rem;
    position: absolute;
    top: 1rem;
    left: 2rem;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-text::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    bottom: -150px;
    right: -150px;
    opacity: 0.05;
    z-index: 0;
}

.testimonial-text h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.testimonial-text p {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.testimonial-text p:last-child {
    font-style: normal;
    font-weight: 700;
    color: var(--light-color);
}

.testimonials-count {
    text-align: center;
    margin-top: 5rem;
}

.testimonials-count h4 {
    margin-bottom: 0.5rem;
}

.testimonials-count p {
    font-size: 1.8rem;
    margin-bottom: 0;
}

/* Video Promo Section */
.video-promo {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/video-bg.jpg') no-repeat center center/cover;
    color: var(--light-color);
}

.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40rem;
}

.video-play {
    width: 8rem;
    height: 8rem;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    color: var(--off-white);
    cursor: pointer;
    transition: var(--transition);
}

.video-play:hover {
    transform: scale(1.1);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 3rem;
    max-width: 90rem;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--bg-gray);
    padding: 4rem 3rem;
    border-radius: 0.4rem;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.pricing-card.featured {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.pricing-card.featured h4 {
    color: var(--primary-color);
}

.pricing-card.featured h3 {
    color: var(--light-color);
}

.pricing-card h4 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.pricing-features {
    margin-bottom: 3rem;
}

.pricing-features li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-amount {
    margin-bottom: 3rem;
}

.pricing-amount h3 {
    font-size: 3.6rem;
    margin-bottom: 0;
}

/* FAQ Section */
.faq {
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 80rem;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--off-white);
    margin-bottom: 2rem;
    border-radius: 0.4rem;
    overflow: hidden;
}

.faq-question {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.8rem;
}

.faq-toggle {
    font-size: 1.6rem;
    color: var(--secondary-color);
}

.faq-answer {
    padding: 0 2rem 2rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-more {
    text-align: center;
    margin-top: 4rem;
}

/* Blog Preview Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 3rem;
}

.blog-card {
    background-color: var(--off-white);
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.blog-card:hover {
    transform: translateY(-1rem);
}

.blog-image {
    height: 25rem;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.blog-card:hover .blog-overlay {
    opacity: 1;
}

.read-more-btn {
    width: 5rem;
    height: 5rem;
    background-color: var(--secondary-color);
    color: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transform: scale(0);
    transition: var(--transition);
}

.blog-card:hover .read-more-btn {
    transform: scale(1);
}

.blog-content {
    padding: 2.5rem;
}

.blog-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.blog-content h3 a {
    color: var(--light-color);
    transition: var(--transition);
}

.blog-content h3 a:hover {
    color: var(--secondary-color);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.blog-category {
    background-color: var(--secondary-color);
    color: var(--off-white);
    padding: 0.6rem 1.2rem;
    border-radius: 3rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.blog-date {
    color: var(--text-color);
    font-style: italic;
}

.blog-author {
    display: flex;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.blog-author img {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
}

.blog-author span {
    font-weight: 600;
    color: var(--light-color);
}

/* Awards Section */
.awards-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
}

.award-item {
    width: 15rem;
}

.award-item img {
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.award-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Footer */
footer {
    background-color: #191919; /* Slightly lighter than before */
    color: #b8b8b8; /* Lighter text color for better contrast */
    padding: 10rem 0 3rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-col h3 {
    color: #ffffff; /* Pure white for headings for better contrast */
    margin-bottom: 2.5rem;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.footer-col h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4rem;
    height: 0.2rem;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light), var(--secondary-color));
    background-size: 200% 100%;
    animation: gradientMove 3s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.footer-col p {
    color: #b8b8b8; /* Ensure paragraph text is light enough */
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    line-height: 1.8;
}

.footer-col li {
    margin-bottom: 1rem;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.footer-nav ul li {
    margin-right: 2rem;
    margin-bottom: 1rem;
}

.footer-nav ul li a,
.footer-col ul li a {
    color: #b8b8b8; /* Lighter link color */
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-nav ul li a:hover,
.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 0.5rem;
}

.footer-col i {
    color: var(--secondary-color);
    margin-right: 1rem;
}

.subscribe-form {
    display: flex;
    margin-top: 2.5rem;
}

.subscribe-form input {
    flex: 1;
    padding: 1.5rem;
    border: 1px solid #444444;
    border-radius: 8px 0 0 8px;
    outline: none;
    font-size: 1.4rem;
    background-color: #333333; /* Lighter input background */
    color: #e0e0e0; /* Lighter text color */
}

.subscribe-form input::placeholder {
    color: #999999; /* Make placeholder more visible */
}

.subscribe-form button {
    background-color: var(--secondary-color);
    color: #ffffff;
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 0 2rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.subscribe-form button i {
    font-size: 1.6rem;
    color: #ffffff;
}

.subscribe-form button:hover {
    background-color: var(--secondary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright p {
    color: #999999; /* Medium gray for copyright text */
    font-size: 1.4rem;
    margin-bottom: 0;
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icons a {
    width: 4rem;
    height: 4rem;
    background-color: #333333;
    color: var(--secondary-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.8rem;
    transition: var(--transition);
    text-align: center;
}

.social-icons a i {
    display: inline-block; 
    line-height: 1;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

/* Media Queries */
@media (max-width: 991px) {
    html {
        font-size: 55%;
    }

    .about-intro .container,
    .why-us .container,
    .about-main .container,
    .mission .container,
    .contact-form .container,
    .adoption-intro .container {
        grid-template-columns: 1fr;
    }

    .contact-box {
        position: static;
        margin-top: 2rem;
    }

    .hero-contact {
        position: static;
        margin-top: 3rem;
    }
    
    .contact-image {
        margin-top: 0;
        order: -1;
    }
}

@media (max-width: 768px) {
    .floating-shape {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 7.8rem;
        left: 0;
        width: 100%;
        background-color: var(--off-white);
        padding: 2rem;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition);
    }

    .main-nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav ul {
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .hero {
        display: block;
        height: auto;
    }

    .hero-content {
        display: block;
        margin: 0;
        padding: 0;
        width: auto;
        max-width: none;
    }

    .hero:after {
        display: none;
        /*display: block;
        position: static;
        height: 100%;
        clip-path: none;*/
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .process-cta {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .dropdown {
        position: static;
        background-color: rgba(0, 0, 0, 0.03);
        box-shadow: none;
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        height: 0;
        overflow: hidden;
        padding: 0;
        transition: height 0.3s ease;
    }
    
    .dropdown.active {
        height: auto;
    }
    
    .dropdown ul {
        padding: 0;
    }
    
    .dropdown ul li a {
        padding: 1rem 0;
    }
    
    .main-nav ul li.has-dropdown > a {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .main-nav ul li.has-dropdown > a:after {
        margin-left: 0.5rem;
    }

    .contact-form .container {
        grid-template: none !important;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 50%;
    }

    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 3rem;
    }

    section {
        padding: 6rem 0;
    }

    .why-us-features {
        flex-direction: column;
        gap: 1.5rem;
    }

    .about-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Contact Info Section */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.contact-card {
    background-color: var(--bg-gray);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    height: 100%;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-1rem);
}

.contact-icon {
    width: 8rem;
    height: 8rem;
    background-color: var(--primary-dark);
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
    font-size: 3rem;
}

.contact-card h3 {
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-icons a {
    width: 4rem;
    height: 4rem;
    background-color: #333333;
    color: var(--secondary-color);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.8rem;
    transition: var(--transition);
    text-align: center;
}

.social-icons a i {
    display: inline-block; 
    line-height: 1;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

/* Contact Form Section */
.contact-form .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: top;
}

.form-header {
    margin-bottom: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 1.6rem;
    transition: var(--transition);
    background-color: #333333; /* Lighter input background */
    color: #e0e0e0; /* Lighter text color */
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary-color);
    background-color: var(--bg-gray);
    box-shadow: 0 0 0 0.2rem rgba(189, 148, 90, 0.25);
}

.form-group input::placeholder {
    color: #999999; /* Make placeholder more visible */
}

.contact-image img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

/* Map Section */
.map {
    padding: 0;
}

.map-container {
    height: 45rem;
    width: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Adoption Intro Section */
.adoption-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.adoption-intro-text p {
    margin-bottom: 1.5rem;
}

.adoption-intro-image img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

/* Adoption Process Section */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 5rem 0;
}

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 5rem;
    height: 5rem;
    background-color: var(--secondary-color);
    color: var(--off-white);
    font-size: 2.4rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-content h3 {
    margin-bottom: 1rem;
}

.process-cta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

/* Available Bulldogs Section */
.bulldogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 3rem;
}

.bulldog-card {
    background-color: var(--bg-gray);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bulldog-card:hover {
    transform: translateY(-1rem);
}

.bulldog-image {
    height: 30rem;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.bulldog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
}

.bulldog-card:hover .bulldog-image img {
    transform: scale(1.1);
}

.bulldog-info {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-gray);
}

.bulldog-info h3 {
    margin-bottom: 1.5rem;
}

.bulldog-info ul {
    margin-bottom: 2rem;
}

.bulldog-info ul li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.bulldog-info ul li i {
    color: var(--secondary-color);
    margin-right: 1rem;
    width: 2rem;
    text-align: center;
}

.bulldog-info ul li strong {
    color: var(--secondary-color);
    margin-right: 0.5rem;
    font-weight: 600;
}

.bulldog-info p {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.btn.disabled {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--bg-gray);
    cursor: not-allowed;
    opacity: 0.7;
}

.btn.disabled:hover {
    background-color: var(--primary-light);
    color: var(--bg-gray);
}

/* Adoption Requirements Section */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    gap: 3rem;
}

.requirement-card {
    background-color: var(--off-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-align: center;
    height: 100%;
}

.requirement-card:hover {
    transform: translateY(-1rem);
}

.requirement-icon {
    width: 8rem;
    height: 8rem;
    background-color: var(--bg-light);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 2.5rem;
    font-size: 3rem;
    transition: var(--transition);
}

.requirement-card:hover .requirement-icon {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.requirement-card h3 {
    margin-bottom: 1.5rem;
}

/* Dropdown Menu */
.main-nav ul li.has-dropdown {
    position: relative;
}

.main-nav ul li.has-dropdown > a {
    position: relative;
}

.main-nav ul li.has-dropdown > a:after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5rem;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--primary-dark);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
    min-width: 20rem;
    border-radius: 0.4rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: all 0.3s ease;
}

.dropdown ul {
    display: block;
    padding: 1.5rem 0;
}

.dropdown ul li {
    margin: 0;
    padding: 0;
}

.dropdown ul li a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-color);
    font-weight: 400;
    transition: all 0.3s ease;
}

.dropdown ul li a:hover {
    color: var(--secondary-color);
    background-color: var(--bg-gray);
}

.dropdown ul li a::after {
    display: none;
}

/* Show dropdown on click - controlled by JS */
.main-nav ul li.has-dropdown.active .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Update hero button hover */
.hero .btn:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

/* Make social icons use warmer colors */
.service-card, 
.bulldog-card, 
.blog-card, 
.team-member, 
.requirement-card, 
.contact-card,
.testimonial-text,
.value-card {
    border: 1px solid var(--border-color);
}

/* Add slight texture to background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/png;base64,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');
    opacity: 0.05;
    z-index: -1;
    pointer-events: none;
}

/* Restore adoption status styles */
.adoption-status {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--secondary-color);
    color: var(--off-white);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    z-index: 1;
}

.adoption-status.pending {
    background-color: #ff9800;
    color: var(--off-white);
}

.adoption-status.reserved {
    background-color: #f44336;
    color: var(--off-white);
}

/* Restore bulldog info strong elements */
.bulldog-info ul li strong {
    color: var(--secondary-color);
}

/* Add design shapes and decorative elements */

/* Common style for diagonal shapes */
.diagonal-shape {
    display: none;
}

.diagonal-shape svg {
    display: none;
}

.diagonal-shape.light svg {
    display: none;
}

.diagonal-shape.dark svg {
    display: none;
}

/* Animated background pattern */
.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        radial-gradient(var(--secondary-color) 2px, transparent 2px),
        radial-gradient(var(--secondary-color) 2px, transparent 2px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    animation: patternMove 50s linear infinite;
    pointer-events: none;
}

@keyframes patternMove {
    0% {
        background-position: 0 0, 25px 25px;
    }
    100% {
        background-position: 1000px 1000px, 1025px 1025px;
    }
}

/* Floating shapes */
.floating-shape {
    position: absolute;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}

.floating-shape.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 30px solid var(--secondary-color);
}

.floating-shape.rectangle {
    width: 200px;
    height: 400px;
    border: 20px solid var(--secondary-color);
}

.floating-shape.small-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--secondary-color);
}

/* Decorative dots */
.decorative-dots {
    position: absolute;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--secondary-color) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.1;
    pointer-events: none;
}

/* Section dividers */
.section-divider {
    height: 150px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 150px;
}

/* Mailing List Section */
.mailing-list {
    position: relative;
    background-color: var(--bg-dark);
    color: var(--light-color);
    padding: 8rem 0;
    overflow: hidden;
}

.mailing-list-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.mailing-list-text {
    flex: 1;
    min-width: 300px;
}

.mailing-list-text h4 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.mailing-list-text h2 {
    font-size: 3.6rem;
    margin-bottom: 2rem;
    color: var(--light-color);
}

.mailing-list-text p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

.mailing-list-form {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: flex-end;
}

.mailing-list .subscribe-form {
    max-width: 500px;
    width: 100%;
    position: relative;
}

.mailing-list .subscribe-form input {
    width: 100%;
    padding: 1.5rem 2rem;
    border-radius: 8px 0 0 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light-color);
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.mailing-list .subscribe-form input:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

.mailing-list .subscribe-form button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 2rem;
    background: var(--secondary-color);
    color: var(--light-color);
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mailing-list .subscribe-form button i {
    font-size: 1.6rem;
    color: #ffffff;
}

.mailing-list .subscribe-form button:hover {
    background: var(--secondary-light);
}

.bulldog-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.6rem;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
    transition: var(--transition);
    position: relative;
}

.bulldog-link i {
    margin-left: 0.8rem;
    transition: transform 0.3s ease;
}

.bulldog-link:hover {
    color: var(--secondary-light);
}

.bulldog-link:hover i {
    transform: translateX(5px);
}

.footer-menu-2col ul {
    columns: 2;
    column-gap: 3rem;
}

.footer-menu-2col ul li {
    margin-bottom: 1rem;
    break-inside: avoid;
}

.footer-col h3 {
    margin-bottom: 2rem;
} 